[jboss-user] [JBossWS] - Two services with same portname

2007-04-28 Thread jaap.taal
When I deploy two services with the same method name inside one war file something strange happens: | @WebService | @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) | public class EchoListString { | |

[jboss-user] [JBossWS] - Re: Using (Hash)Map in wrapper class

2007-04-28 Thread jaap.taal
I've found a related jax-ws topic: http://forums.java.net/jive/message.jspa?messageID=185244 Putting the Hashmap inside a wrapper does work: | @WebService() | @SOAPBinding(style = SOAPBinding.Style.RPC) | public class EchoMapSSTest { | | public static class MapWrapper { |

[jboss-user] [JBossWS] - Using (Hash)Map in wrapper class

2007-04-28 Thread jaap.taal
I'm using jboss-4.2.0.CR2 with jbossws-1.2.1.GA I'm trying to deploy the following simple echo webservice. | @WebService() | @SOAPBinding(style = SOAPBinding.Style.RPC) | public class EchoMapSSTest { | | @WebMethod | public Map echoMapSS(Map myMap) { | return myMap;

[jboss-user] [JBossWS] - Re: InvalidClassException running a webservice client

2007-04-27 Thread jaap.taal
Thanx for you reaction, I've downloaded jboss-4.2.0 CR2. jbossws-1.2.1.GA is included there. I'm halfway now and have found out that with 1.2.1 no xml is needed (besides web.xml) which is very nice and a lot better than jaxrpc. View the original post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [JBossWS] - InvalidClassException running a webservice client

2007-04-25 Thread jaap.taal
I'm trying to run a webservice client as described by the jbossws-userguide.pdf that goes with jbossws-1.0.4GA. I'm using jboss-4.0.5GA The client should connect to a JSR181 webservice. I use a J2EE application jar that should allow me to use JNDI to access the webapplication from my simple cli