Re: WSDL not recognized by vs net

2007-11-07 Thread flat-out
Hi. This way might be another way to get doc/literal bare WSDL. We just need to add annotation @SOAPBinding. import javax.jws.soap.SOAPBinding; import javax.jws.WebService; import javax.jws.WebParam; @SOAPBinding(style=SOAPBinding.Style.DOCUMENT,

Re: WSDL not recognized by vs net

2007-10-11 Thread Daniel Kulp
Spent a bunch of time playing with the JWS and JAXWS TCK's last night and digging though specs to figure out what can be done here. 1) For the simple frontend, I can definitely make the default parameters for all cases. 2) For jaxws, I can make the default parameters for MOST cases.

Re: WSDL not recognized by vs net

2007-10-10 Thread William Leung
Sorry for the newbie question. Is vs only support not wrapped? Willem2 wrote: The WSDL that you got from from CXF is Document/Literal Wrapped. If you want to set it to the Document/Literal model , you need to set the JaxWsServiceFactory's wrapped attribute to be false. Willem.

Re: WSDL not recognized by vs net

2007-10-10 Thread Willem Jiang
The WSDL that you got from from CXF is Document/Literal Wrapped. If you want to set it to the Document/Literal model , you need to set the JaxWsServiceFactory's wrapped attribute to be false. Willem. William Leung wrote: I am testing CXF and sadlly found that our method parameters and

Re: WSDL not recognized by vs net

2007-10-10 Thread William Leung
Very annoyance :((( After quite a few trys, I finally make HelloWorld worked with vs net (2005). just change these line in WDSL: ( wrapped DOC/LIT ) wsdl:message name=sayHiResponse wsdl:part element=tns:sayHiResponse name=result /wsdl:part /wsdl:message after change the name

RE: WSDL not recognized by vs net

2007-10-10 Thread Benson Margulies
, October 10, 2007 6:48 AM To: cxf-user@incubator.apache.org Subject: Re: WSDL not recognized by vs net Sorry for the newbie question. Is vs only support not wrapped? Willem2 wrote: The WSDL that you got from from CXF is Document/Literal Wrapped. If you want to set

RE: WSDL not recognized by vs net

2007-10-10 Thread Benson Margulies
, October 10, 2007 10:18 AM To: cxf-user@incubator.apache.org Subject: RE: WSDL not recognized by vs net Yes, I am testing on VS 2005. Unwrapped DOC/LIT - worked but required me to annonate all method with SOAP Actions. Wrapped DOC/LIT - worked but The default WSDL (CXF 2.0.2) has