Need assistance re: ServiceConstructionException

2008-03-09 Thread Wolf, Chris (IT)
Before posting this, I looked at the JAX-WS spec (although I could only find 2.1) and searched the message archives. Before resorting to downloading the CXF source and building CXF from scratch so I can debug this problem, I am hoping someone can help. I created a service with a number of

Exposing java Map fields using CXF to C++ code

2008-03-09 Thread Maxim Veksler
Hi, I would like to get the general idea of what can be done with CXF or with SOAP in general. Can I use this library to expose java.util.Map based interface for Java, C++, php, python and co. code. I would like my user to pass me a list of parameters of Map String, ListString, which would be

Re: Exposing java Map fields using CXF to C++ code

2008-03-09 Thread Benson Margulies
CXF can expose a Map in one of three ways: 1) Using the Aegis databinding, CXF will automatically generate a schema from a Map. Other fully-compliant kits should be able to build clients from the WSDL that results. It won't, however, necessarily translate into a 'Map' on the client side. 2)

Re: Need assistance re: ServiceConstructionException

2008-03-09 Thread Glen Mazza
Check your serviceName value for the @javax.jws.WebService annotation preceding your web service's implementation class, like here: http://www.jroller.com/gmazza/date/20080308#MTstep6 HTH, Glen Am Sonntag, den 09.03.2008, 11:04 -0400 schrieb Wolf, Chris (IT): Before posting this, I looked at

RE: Need assistance re: ServiceConstructionException

2008-03-09 Thread Wolf, Chris (IT)
Glen, Thanks so much for helping me - that was the issue. I actually did not even have a WebService annotation in my implementation class, because I did wsdl-first and thought the WebService annotation in the generated SEI was sufficient. If the implementation class implements the SEI, I don't

Need help for XMLStreamException: ParseError at [row,col]:[1,1]

2008-03-09 Thread Wolf, Chris (IT)
I know this issue has been discussed before, because I found a description and apparent fix here: http://www.mail-archive.com/cxf-user@incubator.apache.org/msg04687.html However, putting the updated Xerces and Xalan in the TOMCAT/common/endorsed directory did not solve the issue for me. If I

Re: Need help for XMLStreamException: ParseError at [row,col]:[1,1]

2008-03-09 Thread Glen Mazza
What are you putting in the WAR file--the web service or the SOAP client? Also, I'm unsure if you should be relying on the autogenerated client--that is primarily a helper file not really part of JAX-WS (GlassFish Metro I don't think provides it.) I've never bothered using it. The first thing