public void testInvokeSOAP() throws Exception {
ClassLoader cl = Thread.currentThread().getContextClassLoader();
JavaServiceDesc serviceDesc = new JavaServiceDesc();
serviceDesc.setEndpointURL("http://127.0.0.1:8080/axis/services/echo");
//serviceDesc.setWSDLFile(portInfo.getWsdlURL().toExternalForm());
serviceDesc.setStyle(Style.RPC);
serviceDesc.setUse(Use.ENCODED);
TypeMappingRegistryImpl tmr = new TypeMappingRegistryImpl();
tmr.doRegisterFromVersion("1.3");
TypeMapping typeMapping = tmr.getOrMakeTypeMapping(serviceDesc.getUse().getEncoding());
serviceDesc.setTypeMappingRegistry(tmr);
serviceDesc.setTypeMapping(typeMapping);
OperationDesc op = new OperationDesc();
op.setName("echoString");
op.setStyle(Style.RPC);
op.setUse(Use.ENCODED);
Class beanClass = EchoBean.class;
op.setMethod(beanClass.getMethod("echoString", new Class[] { String.class }));
ParameterDesc parameter =
new ParameterDesc(
new QName("http://ws.apache.org/echosample", "in0"),
ParameterDesc.IN,
typeMapping.getTypeQName(String.class),
String.class,
false,
false);
op.addParameter(parameter);
serviceDesc.addOperationDesc(op);
serviceDesc.getOperations();
ReadOnlyServiceDesc sd = new ReadOnlyServiceDesc(serviceDesc, Collections.EMPTY_LIST);
Class pojoClass = cl.loadClass("org.apache.geronimo.axis.testData.echosample.EchoBean");
RPCProvider provider = new POJOProvider();
SOAPService service = new SOAPService(null, provider, null);
service.setServiceDescription(sd);
service.setOption("className","org.apache.geronimo.axis.testData.echosample.EchoBean");
URI wsdlURL = new URI("echo.wsdl");
URI location = new URI(serviceDesc.getEndpointURL());
Map wsdlMap = new HashMap();
AxisWebServiceContainer continaer =
new AxisWebServiceContainer(location, wsdlURL, service, wsdlMap, cl);
InputStream in = cl.getResourceAsStream("echoString-req.txt");
AxisRequest req =
new AxisRequest(
504,
"text/xml; charset=utf-8",
in,
0,
new HashMap(),
location,
new HashMap());
AxisResponse res =
new AxisResponse("text/xml; charset=utf-8", "127.0.0.1", null, null, 8080, System.out);
req.setAttribute(WebServiceContainer.POJO_INSTANCE, pojoClass.newInstance());
continaer.invoke(req, res);
System.out.flush();
}
|