RE: Class as WS return parameter

 
Thank you Glen and sorry for posting on the wrong list.
Daniela

-----Message d'origine-----
De : Glen Daniels [mailto:gdaniels@sonicsoftware.com] 
Envoyé : mardi 16 novembre 2004 19:27
À : daniela.claro@eseo.fr; www-ws@w3.org
Objet : RE: Class as WS return parameter


Hi Daniela!

You should try sending these msgs to axis-user@ws.apache.org - www-ws is a
general web services discussion list at W3C, not meant for discussion of
particular implementation technology questions.

Thanks,
--Glen

> Increasing my explanation, when I run without server-config.wsdd I 
> receive this error:
> 
> java.io.IOException: No serializer found for class ReturnFlight in 
> registry
> org.apache.axis.encoding.DefaultSOAPEncodingTypeMappingImpl@15780d9
>         org.apache.axis.AxisFault.makeFault(AxisFault.java:137)
>         org.apache.axis.SOAPPart.writeTo(SOAPPart.java:306)
>         org.apache.axis.SOAPPart.getAsString(SOAPPart.java:524)
>         org.apache.axis.SOAPPart.getAsBytes(SOAPPart.java:422)
>         org.apache.axis.Message.getContentType(Message.java:483)
> 
> org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.
>         java:682)
> javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
> 
> org.apache.axis.transport.http.AxisServletBase.service(AxisSer
> vletBase.java: 339)
> 
> Thank you again!!
> 
> -----Message d'origine-----
> De : www-ws-request@w3.org [mailto:www-ws-request@w3.org] De la part 
> de Daniela CLARO Envoyé : mardi 16 novembre 2004 19:09 À : 
> www-ws@w3.org Objet : Class as WS return parameter
> 
> 
> Hi all,
>  I am having a problem with my web service. I've created a web service 
> that it has a signature as below:
> 
> public ReturnFlight findFlight(String fromCity, String toCity, String 
> dtDeparture, String dtArrival){
> 
> Where ReturnFlight is a class that I defined earlier with two 
> attibutes.
> 
> I am using AXIS 1.2 and I put this class (ReturnedFlight) into 
> WEB-INF/classes. My web service is published on 
> http://localhost:8080/Flight.jws. And the problem is that when I run 
> my simple Axis example to execute my web service, at first time it 
> gave me a message that I did not have serialized my class 
> bean(ReturnedFlight).
> 
>  I've tried to solve this problem putting the server-config.wsdd in my 
> WEB-INF directory, but when I do that I receive an error execution on 
> my http://localhost:8080/Flight.jws. The problem is actually occuring 
> when I try this code in AXIS:
> 
>  call.setReturnType( XMLType.XSD_ANYTYPE );  ReturnFlight ret = new
>        ReturnFlight(); ret = (ReturnFlight) call.invoke( new Object [] 
> { fromCity, toCity,dtDeparture,dtArrival });
> 
> I did not get any answer because I think it did not know how to work 
> with my ReturnFlight class.
> 
> One more thing, if I am monitoring on the server side(Tomcat), I can 
> saw that my service has got actually the result that I want, but it 
> did not arrive to the client side.
> 
> What do I must do to manage a class on returning parameters?
> 
> Here below, I put my server-config.wsdd, I do not know if it is 
> correctly or not...
> 
> Help me, please!!!
> 
> <?xml version="1.0" encoding="UTF-8"?> <deployment 
> xmlns="http://xml.apache.org/axis/wsdd/"
> xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
> 
> <service name= "Flight" provider= "java:RPC" style="rpc" use= 
> "encoded">
> 
> <parameter name= "wsdlTargetNamespace" value= 
> "http://localhost:8080/travelws/Flight.jws"/>
> <parameter name= "wsdlServiceElement" value= "Flight"/> <parameter 
> name= "wsdlServicePort" value= "Flight"/> <parameter name= "className" 
> value= "ReturnFlight"/> <parameter name= "wsdlPortType "
> value= "Flight"/>
> 
> <operation name= "findFlight" qname= "operNS:findFlight"
>     xmlns:operNS= "http://localhost:8080/travelws/Flight.jws"
> 	returnQName= "findFlightReturn" returnType= "rtns:ReturnFlight"
> 	xmlns:rtns= "http://DefaultNamespace"> </operation > <parameter
name= 
> "allowedMethods " value= "findFlight"/>
> 
> <typeMapping
> xmlns:ns= "http://DefaultNamespace"
> qname= "ns:ReturnFlight"
> type= "ReturnFlight"
> serializer= "org.apache.axis.encoding.ser.BeanSerializerFactory "
> deserializer= "org.apache.axis.encoding.ser.BeanDeserializerFactory "
> encodingStyle= " http://schemas.xmlsoap.org/soap/encoding/" /> 
> </service > </deployment>
> 
> 
> Thank you so much,
> Daniela

Received on Wednesday, 17 November 2004 08:16:34 UTC