[JBoss-user] [JBossWS] - Re: WSDOCServiceStepByStep help

2005-12-22 Thread ibsscott
I decided to wait until the next generation of web services is released. The only reliable way I could use was to pass it as a String and then Marshal it into xml. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914003#3914003 Reply to the post : http://www

[JBoss-user] [JBossWS] - Re: WSDOCServiceStepByStep help

2005-07-29 Thread ibsscott
I'm not sure why. The request is received on the server succesfully. I just can't unwrap it on the client side. My client looks like this: URL url = new URL("http://localhost:8080/fifalmonk/fifalmonk/WebServiceSession?wsdl";); QName qname = new QName("http://com/fifalm

[JBoss-user] [JBossWS] - Re: WSDOCServiceStepByStep help

2005-07-28 Thread ibsscott
I'm thinking the problem is that my client does not have access to the jaxrpc-mapping.xml file and that I will need a J2EE client to help out. Any thoughts? Is there any other way to do this? Does a J2ee client limit me to only talking to java clients? How would a non-java app send me an xml d

[JBoss-user] [JBossWS] - WSDOCServiceStepByStep help

2005-07-28 Thread ibsscott
I have followed the example very carefully. I am able to receive the object on the server but when I send it back to the client, the client objects to it: This is my SEI: public WebServiceSessionEndpoint_process_ResponseStruct process(WebServiceSessionEndpoint_process_RequestStruct request) th

[JBoss-user] [JBossWS] - Re: Web Services with XML document or attachment

2005-07-28 Thread ibsscott
And one more thing... don't stop to check for the "not synchronized" problem that is stated in the example. I didn't get it which made me think I had done something wrong. I got a different error that I can't recall right now. View the original post : http://www.jboss.org/index.html?module=b

[JBoss-user] [JBossWS] - Re: Web Services with XML document or attachment

2005-07-28 Thread ibsscott
I just followed WSDOCServiceStepByStep. Finally the server side is working. I am getting java.lang.ClassCastException: org.apache.axis.Message back on the client side, but it could be that I have not populated all of the fields of the bean. The trick is to override the SEI response and reque

[JBoss-user] [JBossWS] - Re: Web Services with XML document or attachment

2005-07-28 Thread ibsscott
I don't have a valid reason other than I was concerned about how much text the String could hold. How large a document can I receive? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3887100#3887100 Reply to the post : http://www.jboss.org/index.html?module=bb

[JBoss-user] [JBossWS] - Web Services with XML document or attachment

2005-07-28 Thread ibsscott
I have read through every Wiki there is about Web Services but cannot find a solution that works. I am trying to pass an XML document to my web service. I can do it if the service is expecting a simple String. I am trying to marshal an Object into an object the web service supports. I would l