Hello,

I have two things that I would like to point out.
The first thing is that I updated the Synapse project a few hours ago and build 
the project.
There I got an error on AsyncHTTPListener class.
The TransportListener class does enforce an extra method:
public EndpointReference[] getEPRsForService(String serviceName, String ip) 
throws AxisFault {

I have just implemented it as follows:

public EndpointReference[] getEPRsForService(String serviceName, String ip) 
throws AxisFault {
    EndpointReference[] endpointReferences = new EndpointReference[1]; 
    endpointReferences[0] = new EndpointReference("http://"; + hostAddress + ":" 
+ port + serviceContextPath + "/" + serviceName);
    return endpointReferences;
}

Now it does work for me.

The other point is why does the ClassMediatorFactory class not implement the 
MediatorFactory interface?
I think it should implement the MediatorFactory interface.

Regards,

Tijs


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to