bean serializer

2003-02-12 Thread luca marano
hi i wrote the client to access to a web service returning a bean this is my relevant code: String endpoint = "http://localhost:8080/axis/services/MessageService";     Service  service = new Service();    Call call    = (Call) service.createCall();     call.setTargetEndpointAddress( new

returning an array of java bean

2003-02-12 Thread luca marano
how can i write  a client accessing to a service returning an array of bean?   this is my relevant code:     String endpoint = "http://localhost:8080/axis/services/MessageService";       Service  service = new Service();    Call call    = (Call) service.createCall();       call.setTargetE

element serializer?!?!?

2003-02-11 Thread luca marano
i wrote a RPC based service with this interface:org.w3c.dom.Element Service(org.w3c.dom.Element  e)the problem is that i can't access to this service from an other platfom =but java-axis (i.e .NET)probably because Element is a java specific classdo i have to write a custom serializer for the