my WSDD
------------
<deployment name="test" 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">
<service name="ElementService" provider="java:RPC">
<parameter name="alias" value="ElementService"/>
<parameter name="className" value="samples.encoding.ElementService" />
<parameter name="allowedMethods" value="echoElement" />
<typeMapping xmlns:typeNS="urn:myNameSpace"
qname="typeNS:Data"
languageSpecificType="java:samples.encoding.Data"
serializer="samples.encoding.DataSerFactory"
deserializer="samples.encoding.DataDeserFactory"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</service>
</deployment>
-------------
my sample code
...
public static void main(String args[]) {
MessageContext msgContext = new MessageContext(new AxisServer());
SOAPEnvelope msg = new SOAPEnvelope();
RPCParam arg1 = new RPCParam("urn:myNamespace", "testParam",
"this is a string");
QName dataQName = new QName("typeNS", "Data");
....
was my WSDD correct in my typeMapping tag?
thanks... im so sorry but im just really lost in trying to make this run...
- Trouble connecting web service in Axis to Oracle ... Chen, Li (Research, YOH)
- Re: Trouble connecting web service in Axis t... Srinath Perera
- Re: Trouble connecting web service in Ax... Arvin Jay Cando
- Re: Trouble connecting web service in Axis t... ian_d_stewart
- RE: Trouble connecting web service in Axis t... Balaji Thirugnanam
- Bad envelope tag: deserialize attachment George Jagodzinski
- RE: Trouble connecting web service in Axis t... Chen, Li (Research, YOH)