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 that I have done this now (I am working on it :-) ... - the file is posted below.


<beanMapping xmlns:ns1="urn:Addresschecker" qname="ns1:ReturnValue"
languageSpecificType="java:mypackage.ReturnValue"/>
thus in your client class you should do:

I am generating my client via the WSDL2Java tool ..? Do I have to do this as well?

Where do I put the beanMapping? Within the service tag or without?
In the samples there was a file where it was not inside the service tag.

Thx for the help

----------
my deploy.wsdd:

<deployment xmlns="http://xml.apache.org/axis/wsdd/";
    xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";
    xmlns:ns1="http://localhost:8180/axis/services/Addresschecker";>

<service name="Addresschecker" provider="java:RPC">

    <namespace>
        http://localhost:8180/axis/services/Addresschecker
    </namespace>
    <parameter name="className"
        value="my.package.AddressCheckerInterface"/>
    <parameter name="allowedMethods" value="checkAddress checkEmail"/>

</service>

 <beanMapping qname="ns1:ReturnValue"
        languageSpecificType="java:my.package.ReturnValue"/>

</deployment>



--
[EMAIL PROTECTED], Tel: 91374-370

Always do sober what you said you'd do drunk. That will teach you to keep your mouth shut. --Ernest Hemingway



Reply via email to