Bhanu,
here's my example for a message-style ws, which works for me.
<deployment name="GetXSLIM" xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"
xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance"> <handler name="handlerXSLIM" type="java:ws.xslim.BasicHandler_XSLIM"/>
<service name="GetXSLIM" style="message">
<requestFlow>
<handler type="handlerXSLIM"/>
</requestFlow>
<responseFlow>
<handler type="handlerXSLIM"/>
</responseFlow> <parameter name="className" value="ws.xslim.GetXSLIM" />
<parameter name="allowedMethods" value="method1" />
<parameter name="wsdlInputSchema" value="http://biryani.med.yale.edu:8081/axis/files/xslim/GetXSLIM_method1Request.xsd"/>
</service>
</deployment>
Look at the result at http://biryani.med.yale.edu:8081/axis/services/GetXSLIM?wsdl
remko
Date: Mon, 23 Jun 2003 18:39:30 -0400 From: Bhanu Pabreja <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Reply-to: [EMAIL PROTECTED] Subject: Message Style and WSDL One step beyond .jws files
I have made a message style service with one method
public Document fetchData(Document doc){
// logic
}ylThen I deployed the service using the deploy.wsdd. I could not use the Java2WSDL utitily to generate "Message" style service so I hand edited one of the provided examples.
But once I deploy it to the /servlet/AxisServlet and try to browse the generated .wsdl file it is totally a different version of what I have made .. I mean the wsdl says that it is a RPC style service and the operation is encoded.
Now the questions I can figure out is :
(a) How to make a message style service and create a wsdl file which says that it is a Message style service.
thanx in advance
dumdum420
