users@glassfish.java.net

RE: Re: SOAPBindings

From: Baker, Brad \(Contr\) <"Baker,>
Date: Tue, 21 Nov 2006 13:48:15 -0500

Thanks Art,

 

Ok I have gone to:

@WebService(

    name="HomeDomainService",

    serviceName="HDWS_home_domain",

    targetNamespace="ngms.chims.hdws"

)@SOAPBinding(

    style=SOAPBinding.Style.DOCUMENT,

    use=SOAPBinding.Use.LITERAL

)

 

Now when I deploy I get:

C:\Sun\AppServer\domains\domain1\generated\xml\j2ee-modules\DomainSyncHo
me\META-INF\wsdl\HDWSHomeDomain.wsdl (The system cannot find the file
specified)

            at java.io.FileInputStream.open(Ljava.lang.String;)V(Native
Method)

 

First why HDWSHomeDomain.wsdl and not HomeDomainService.wsdl?

Were would I look in NetBeans 5.5 to find the WSDL?

 

Thanks,

Brad

________________________________

From: Art.Frechette_at_sun.com [mailto:Art.Frechette_at_sun.com] On Behalf Of
Arthur Frechette
Sent: Thursday, November 16, 2006 3:51 PM
To: users_at_glassfish.dev.java.net
Subject: Re: SOAPBindings

 

JAX-WS 2.0 supports and is conformant to the WS-I Basic Profile 1.1
which mandates literal use only,
and supports either rpc/literal or document/literal style bindings. The
rpc/encoded style WSDL's goes against
WS-I basic profile and is not supported.

-Art

Baker, Brad (Contr) wrote:



Hi all,

 

I am trying the following:

@SOAPBinding(

    style=SOAPBinding.Style.RPC,

    use=SOAPBinding.Use.ENCODED

)

 

But I get:

Rpc/encoded SOAPBindings are not supported in JAXWS 2.0.

When will rpc/encoded be available?

 

I am converting some web services from JSWDP 2.0 -> JAX_WS 2.0 and many
of those old Web Services used rpc/encoded.

 

Thanks for any help,

Brad