Re: writing a beanMapping

2003-03-12 Thread Sonja Pieper
Sonja Pieper wrote: Sonja Pieper wrote: Virga wrote: if you use WSDL2Java you don't need to do registerTypeMapping, it will do it for you:-) no actually it really does not and I have asked around some more where I work, the people told me: oh geez no we write the clients ourselves. and yes it

Re: writing a beanMapping

2003-03-12 Thread Sonja Pieper
Sonja Pieper wrote: Virga wrote: if you use WSDL2Java you don't need to do registerTypeMapping, it will do it for you:-) no actually it really does not and I have asked around some more where I work, the people told me: oh geez no we write the clients ourselves. and yes it seems to be the re

Re: writing a beanMapping

2003-03-11 Thread Sonja Pieper
Virga wrote: if you use WSDL2Java you don't need to do registerTypeMapping, it will do it for you:-) well at least I cannot find the part where the de/serializers are registered. The generated class implements Serializable though ? The interesting thing is: if I kick the completely I get a java

Re: writing a beanMapping

2003-03-11 Thread Virga
if you use WSDL2Java you don't need to do registerTypeMapping, it will do it for you:-) you should set your inside the if you want to use this bean mapping only for a specified service, but if you have other services that use the same bean mapping then you should set it globally, put it outside a

Re: writing a beanMapping

2003-03-11 Thread Sonja Pieper
Virga wrote: maybe you could post your complete .wsdd file because i don't see any "urn:Addresschecker" in your file. for example if you decide to use xmlns:ns1="urn:Addresschecker" as namespace instead of doing something like xmlns:ns1="http://mypackage.something"; then you should do : I think tha

Re: writing a beanMapping

2003-03-11 Thread Virga
maybe you could post your complete .wsdd file because i don't see any "urn:Addresschecker" in your file. for example if you decide to use xmlns:ns1="urn:Addresschecker" as namespace instead of doing something like xmlns:ns1="http://mypackage.something"; then you should do : thus in your client cl

Re: writing a beanMapping

2003-03-11 Thread Sonja Pieper
thx for the hint but I am still getting the following exception: org.xml.sax.SAXException: No deserializer for {urn:Addresschecker}ReturnValue I have no idea what the {...} part really means ... -- [EMAIL PROTECTED], Tel: 91374-370 Always do sober what you said you'd do drunk. That will teach yo

Re: writing a beanMapping

2003-03-11 Thread Virga
maybe the namespace you specified is already reserved for "http://xml.apache.org/axis/wsdd/"; try to change : http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";> to this : http://xml.apache.org/axis/wsdd/";

writing a beanMapping

2003-03-11 Thread Sonja Pieper
Hi, I finally got to a point where I am hoping to get responses from my service soon. All I seem to be missing is a de/serializer for my "ReturnValue" class. Seems like I need to add this to my deploy.wsdd. But it also seems I am doing it wrong. I just don't get this whole namespace thing. Can