Hello I'm trying to access retrieveTenants method from TenantMgtAdminService
For this I've created a custom proxy in EI 6.6.0 with the following code : <?xml version="1.0" encoding="UTF-8"?><proxy xmlns=" http://ws.apache.org/ns/synapse" name="Proxy_RetrieveTenants" startOnLoad="true" statistics="disable" trace="disable" transports="http,https"> <target> <inSequence> <property name="POST_TO_URI" scope="axis2" value="true"/> <property xmlns:ns="http://org.apache.synapse/xsd" expression="fn:concat('Basic ', base64Encode('ws.palmsoft:YWRtaW46YWRtaW4'))" name="Authorization" scope="transport"/> <call> <endpoint> <wsdl uri=" https://localhost:9443/services/TenantMgtAdminService.TenantMgtAdminServiceHttpsSoap12Endpoint HTTP/1.1"/> <property name="action" scope="axis2" value="urn:retrieveTenants"/> <property name="Host" scope="axis2" value="localhost:9443"/> <property name="Content-Type" scope="axis2" value="application/soap+xml"/> </endpoint> </call> </inSequence> <outSequence> <call/> </outSequence> <faultSequence/> </target> <description/> </proxy> When I try the proxy I get the following error : ERROR {org.apache.axis2.description.ClientUtils} - The system cannot infer the transport information from the /services/Proxy_RetrieveTenants.Proxy_RetrieveTenantsHttpSoap12Endpoint I'm able to access the same method through SoapUI Please whats would be wrong whit my proxy? Thks Érico
_______________________________________________ Dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/dev
