Re: How to make classes created from wsdl2java implements serializable?

2007-12-09 Thread Jim Ma
element is in wrong namespace , you need to change it to . daniel.mfreitas wrote: Well, the file that worked for me is this: http://java.sun.com/xml/ns/jaxws"; xmlns:xs="http://www.w3.org/2001/XMLSchema"; xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"; xmlns:xjc="http://java.sun.com/xm

XML elements does not belong to the namespace

2007-12-09 Thread tcs
I created a spring CXF web service and deployed it on tomcat. I wrote a web service client (using jdk 1.4) using the ClientFactoryProxyBean. When I execute a web service method from the client, I see that the parameter to the method argument is null on the server even though the client sent it

Re: How to make classes created from wsdl2java implements serializable?

2007-12-09 Thread daniel.mfreitas
Well, the file that worked for me is this: http://java.sun.com/xml/ns/jaxws"; xmlns:xs="http://www.w3.org/2001/XMLSchema"; xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"; xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc";>

Re: Dynamic client & basic auth

2007-12-09 Thread Willem Jiang
Hi Guillaume, Please see my comments in the mail. tog wrote: Hi Willem, Can you explain in details your sentence: "The AuthorizationPolicy only works for HTTP Conduit of HTTP Destination." as I am not familiar with CXF internals. CXF http transport is implemented by two component HTTP Condu

Re: How to make classes created from wsdl2java implements serializable?

2007-12-09 Thread Jim Ma
daniel.mfreitas wrote: Well, the file you provided as an example throws WSDLToJava Error : The binding file: file:/jaxb-bindings.xml references a not well-formed xml document. You need to make it well formed. Use CXF WSDLValidtor , WTP or other xml vlidator to validate your wsdl and bindi

Re: How to make classes created from wsdl2java implements serializable?

2007-12-09 Thread James Mao
You have to make sure all your xmls are well-formed, probably caused by a missing closing tag, or such You can check it with your browser James Well, the file you provided as an example throws WSDLToJava Error : The binding file: file:/jaxb-bindings.xml references a not well-formed xml docume

RE: jaxws_dispatch_provider demo

2007-12-09 Thread Liu, Jervis
Hi Eric, it looks like your client did not sent out an valid request to the server. A quick way to verify this is using sth like tcpmon to sniff the message you send on wire. In your client code, did you change the service and port QName to reflect your own namespaces? I.e., following lines:

Re: SOAPAction

2007-12-09 Thread James Mao
I don't think that we have such an option, you can file a jira, patches are always welcome ;) Regards, James Hi, Is there a way to force CXF to generate WSDL having the SOAPAction set with the name of the Operation i.e. change to be Thanks Guillaume

Re: jaxws_dispatch_provider demo

2007-12-09 Thread James Mao
Haven't looked it deeper, but firstly you should check if the modified xml still well-formed, you can check that with a browser. Cheers, James I have playing with the jaxws_dispatch_provider demo sample after a recent svn checkout Then I tried to update the source files to try and understand

Re: How to make classes created from wsdl2java implements serializable?

2007-12-09 Thread daniel.mfreitas
Well, the file you provided as an example throws WSDLToJava Error : The binding file: file:/jaxb-bindings.xml references a not well-formed xml document. The file that I provided as an example and that works with JAXWS RI looks quite different from the file I've seen around. For example the root

Re: How to make classes created from wsdl2java implements serializable?

2007-12-09 Thread Jim Ma
Hi , Add the wsdlLocation and Xpath express to provide which schema you want to customize , try the following binding file to see if it works for your wsdl: http://java.sun.com/xml/ns/jaxws"; xmlns:xs="http://www.w3.org/2001/XMLSchema"; xmlns:wsdl="http://schemas.xmlsoap.org/

How to make classes created from wsdl2java implements serializable?

2007-12-09 Thread daniel.mfreitas
Hello. I want to use wsdl2java to generate the client stubs to be used by my client web application. I am using Spring Web Flow and it requires that objects used in the flow are Serializable. I successfully generated Serializable classes using the following bindings file and Metro JAXWS RI implem

Re: dynamic client fails to create service

2007-12-09 Thread tog
Hi Benjamin, Would help if you can send the wsdl ;-) Cheers Guillaume On Dec 9, 2007 1:42 PM, Benjamin Coiffe <[EMAIL PROTECTED]> wrote: > > > > Hi, > > The Dymamic client factory fails to create a client for the WSDL I have > attached to this email. > It is because of the complex type and th

Re: Dynamic client & basic auth

2007-12-09 Thread tog
Hi Willem, Can you explain in details your sentence: "The AuthorizationPolicy only works for HTTP Conduit of HTTP Destination." as I am not familiar with CXF internals. In my case I am not using a proxy so the flag you are mentioning won't help much. My server is waiting for the following http he

Re: Dynamic client & basic auth

2007-12-09 Thread Willem2
Hi Guillaume The AuthorizationPolicy only works for HTTP Conduit of HTTP Destination. In your case , I don't think this policy will take effect, since CXF just uses URL to get wsdl when create the service from wsdl. Maybe you need to use JVM's proxy setting such as -DproxySet=true -DproxyHost

Re: Dynamic client & basic auth

2007-12-09 Thread tog
Ok looking in the mailing list, it looks that this is not yet implemented (I mean for retrieving the wsdl) Dan,what would be the effort for adding this ? If you guide me,I might consider working on this as I did for the proxy auth in XFire. In order to avoit the problem,I retrieved the wsdl using w

Re: [Deploy in JBOSS] Address already in use Exception

2007-12-09 Thread Eman Ali al-Maktari [IT Department]
Hi All, I solved the problem by adding this code into destroy() method of the servlet that publishes my services public void destroy() { ... JettyHTTPServerEngineFactory factory = new JettyHTTPServerEngineFactory(); JettyHTTPServerEngine jetty = factory.retrieveJettyHTTPServerEngine(9090);

Re: Dynamic client & basic auth

2007-12-09 Thread tog
Hum I can believe this ... What I am looking for is a way to set up the Authorization header in the HTTP request (prior to get the wsdl). I know how to set-up the Proxy-Authorization header and I found AuthorizationPolicy AuthorizationPolicy auth = conduit.getAuthorization();