Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Swordfish Documentation: Architecture: Internal Service Proxy"

Line 27: Line 27:
 
         try {
 
         try {
 
             res = proxy.invokeRequestResponseOperation(
 
             res = proxy.invokeRequestResponseOperation(
              QName.valueOf("{http://services.sopware.org/registry/ServiceRegistryProvider/1.0}ServiceRegistryProvider"),
+
                QName.valueOf("{http://services.sopware.org/registry/ServiceRegistryProvider/1.0}ServiceRegistryProvider"),
 
                 QName.valueOf("{http://services.sopware.org/registry/ServiceRegistryProvider/1.0}xlookUp_serviceProvider"),
 
                 QName.valueOf("{http://services.sopware.org/registry/ServiceRegistryProvider/1.0}xlookUp_serviceProvider"),
 
                 inMessage);
 
                 inMessage);

Revision as of 05:21, 26 October 2009

Component diagrams

Sketch of сomponent сlasses for Internal Service Proxy Plugin

Internal Proxy Classes.png

Plugin description


    <osgi:reference id="internalProxy"
    	interface="org.eclipse.swordfish.core.proxy.InternalProxy" />

    <bean id="ASFRegistryProvider"
        class="org.eclipse.swordfish.internal.resolver.backend.remote.ASFRegistryProvider"
        p:proxy-ref="internalProxy"/>


public class ASFRegistryProvider extends AbstractDocumentProvider {

    private InternalProxy proxy;
	
    @Override
    public Collection<ServiceDescription<?>> getServiceProviderDescriptions(QName interfaceName) {
        String res = null;
        try {
            res = proxy.invokeRequestResponseOperation(
                QName.valueOf("{http://services.sopware.org/registry/ServiceRegistryProvider/1.0}ServiceRegistryProvider"),
                QName.valueOf("{http://services.sopware.org/registry/ServiceRegistryProvider/1.0}xlookUp_serviceProvider"),
                inMessage);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return res;
    }

    public void setProxy(InternalProxy proxy) {
        this.proxy = proxy;
    }

}

Back to the top