Re: XML elements does not belong to the namespace

2007-12-21 Thread tcs
I'm still trying to understand if this is an error on my side or if CXF is not doing the right thing with the Java object fields. Any help will be greatly appreciated. thanks, -- View this message in context:

Re: XML elements does not belong to the namespace

2007-12-21 Thread tcs
sometime. Benson Margulies-4 wrote: If you are really stuck with 1.4, there's not much we can do for you. You need to really generate a client with wsdl2js or javs2js, and we can't generate one of those that is 1.4-compatible. On Fri, 2007-12-21 at 11:00 -0800, tcs wrote: I'm still trying

Re: XML elements does not belong to the namespace

2007-12-19 Thread tcs
Any thoughts on why the Java object fields are not set? tcs wrote: The fix works! The server now returns a SOAP response for the request. But I do have another issue. On the client side, based on the SOAP response body, the return type Java object is constructed for the invoked

Re: AegisDataBinding and Spring - Web Service fails to deploy

2007-12-19 Thread tcs
After following the instructions posted in the thread at: http://forum.springframework.org/showthread.php?t=27967 I was able to debug the application startup in tomcat. I found out the issue was the 'schemaLocation' attribute value in my spring 'beans.xml' file was incorrect. The correct xml

Re: XML elements does not belong to the namespace

2007-12-18 Thread tcs
;, ActServiceEndPoint); However, the port name in the wsdl you sent is: ActServicePortBinding Dan On Friday 14 December 2007, tcs wrote: I tried the 2.0.4 SNAPSHOT version with the SampleWebService server and client code that I sent to you. I replaced the older 'cxf-2.0.3-incubator.jar' in my web

Re: AegisDataBinding and Spring - Web Service fails to deploy

2007-12-18 Thread tcs
Attached are the localhost and the catalina log file. I didn't spot anything useful in either. thanks http://www.nabble.com/file/p14402086/catalina.2007-12-18.log catalina.2007-12-18.log http://www.nabble.com/file/p14402086/localhost.2007-12-18.log localhost.2007-12-18.log -- View this

Re: XML elements does not belong to the namespace

2007-12-14 Thread tcs
On Thursday 13 December 2007, tcs wrote: Thanks very much for looking into this. I'm working on fixing this now, but it's definitely a fairly large change Any ideas as to when this will be working? Knowing when this feature would be available will be me plan my projects. thanks! -- J

AegisDataBinding and Spring - Web Service fails to deploy

2007-12-14 Thread tcs
When I deploy my web service app that uses Spring on Tomcat, the web app does not deploy and I see the following messsage : SEVERE: Error listenerStart 14-Dec-2007 12:05:35 PM org.apache.catalina.core.StandardContext start SEVERE: Context [/SampleWebService] startup failed due to previous errors

Re: XML elements does not belong to the namespace

2007-12-13 Thread tcs
Thanks very much for looking into this. I'm working on fixing this now, but it's definitely a fairly large change Any ideas as to when this will be working? Knowing when this feature would be available will be me plan my projects. thanks! -- View this message in context:

Aegis Binding - Hello World example fails with SchemaFactoryFinder$ConfigurationError

2007-12-13 Thread tcs
I'm trying to write a simple web service using Aegis but am running into some issues. When I try to start the server, I get the following exception: INFO: Creating Service {http://demo/}HelloWorld from class demo.HelloWorld JAXP: find

array - difference between JAXB and Aegis Binding

2007-12-13 Thread tcs
Hi, I wrote a simple web service with two methods, one that would take an array and one that would return an array. public String[] getAbc() { String[] strs = new String[3]; strs[0] = a; strs[1] = b; strs[2] = c; return strs; } public

Re: XML elements does not belong to the namespace

2007-12-11 Thread tcs
those methods on the factory before calling create() and it should work for you. Dan On Monday 10 December 2007, tcs wrote: I found the JIRA issue related to my problem: https://issues.apache.org/jira/browse/CXF-897 I'm trying to follow the workarounds listed in the bug report

Re: XML elements does not belong to the namespace

2007-12-10 Thread tcs
Any thoughts? -- View this message in context: http://www.nabble.com/XML-elements-does-not-belong-to-the-namespace-tp14247019p14254461.html Sent from the cxf-user mailing list archive at Nabble.com.

Re: XML elements does not belong to the namespace

2007-12-10 Thread tcs
DemoServiceIFace demoService = (DemoServiceIFace) factory.create(); demoService.getObjectById(new BigDecimal(5530916)); Where do I set those properties? thanks, tcs wrote: I created a spring CXF web service and deployed it on tomcat. I wrote a web service client (using jdk 1.4) using

Re: java.lang.NoClassDefFoundError: com.sun.org.apache.xerces.internal.dom.ElementNSImpl

2007-12-07 Thread tcs
wstx-asl-3.2.1.jar xml-resolver-1.2.jar XmlSchema-1.3.2.jar .. tcs wrote: I've deployed my HelloWorld Webservice on tomcat. I wrote a spring client and am trying to access the web service through it. public static void main(String[] theArgs

java.lang.NoClassDefFoundError: com.sun.org.apache.xerces.internal.dom.ElementNSImpl

2007-12-07 Thread tcs
I've deployed my HelloWorld Webservice on tomcat. I wrote a spring client and am trying to access the web service through it. public static void main(String[] theArgs) { ClassPathXmlApplicationContext appContext = new ClassPathXmlApplicationContext( ./beans.xml);