XFire

Home
Bug/Issue Reporting
Download
FAQ
Get Involved
License
News
Stack Comparison
Support
User's Guide
XFire Team

M5

Javadocs
Reports

M6-SNAPSHOT

Javadocs
Reports

Developers

Developer Space
CVS
Building
Architecture
Interesting Projects
Release Process

XFire includes an in-JVM transport called the LocalTransport. If you are using the XFire client or the Channel API, you can address a local service like so:

xfire.local://FooService

For example, when creating a service:

Service service = getServiceRegistry().getService("FooService");

XFireProxyFactory factory = new XFireProxyFactory(getXFire());
FooService foo = (FooService) factory.create(service, "xfire.local://FooService");