Re: Repeated JAXWS annotations on SEI and impl class

2011-12-26 Thread Daniel Kulp
On Monday, December 26, 2011 11:09:40 PM Daniel Kulp wrote: > On Monday, December 26, 2011 9:55:06 PM Guy Pardon wrote: > > Hi all, > > > > Last time I tried to do both an SEI class and an impl class, I was > > turned > > off by the combination of @WebService attributes on both/either of them. > >

Re: Repeated JAXWS annotations on SEI and impl class

2011-12-26 Thread Daniel Kulp
On Monday, December 26, 2011 9:55:06 PM Guy Pardon wrote: > Hi all, > > Last time I tried to do both an SEI class and an impl class, I was turned > off by the combination of @WebService attributes on both/either of them. > > Is there a clear summary of what should/can be present on both? What if

Re: CXF and Spring remoting issue

2011-12-26 Thread Daniel Kulp
On Saturday, December 24, 2011 6:36:34 PM Pydipati, Karuna wrote: > Hi > > It seems to be somewhat strange. I have a CXF services exposed in server-A > and I am calling those services using Spring remoting (not CXF client) from > server-B. I see the following Exception in server-B. Though, I have

Re: What business are using SOAP/WSDL web services?

2011-12-26 Thread Daniel Kulp
On Monday, December 26, 2011 2:54:08 AM Rice Yeh wrote: > Hi, > Maybe my question is not really related to CXF, but I think people here > can answer my question. I have been using CXF JAXRS for 3 years and have > learned SOAP and WSDL stuff for more than 5 years. However, I have never > have a c

Re: validation error

2011-12-26 Thread Daniel Kulp
Can you provide the full stack trace? That method is called from a few different places and it would be good to know more about what you are doing and how the method was called. Also, is there more types in the schema that might be referencing the "xx" complex type maybe by extension or so

Re: Customizing with @RequestWrapper

2011-12-26 Thread Daniel Kulp
On Monday, December 26, 2011 9:49:42 PM Guy Pardon wrote: > Hi, > > The JAXWS annotations include the @RequestWrapper annotation. I think I > understand what it does, but I am not clear on how to use it. > > For instance: can I specify the className of some custom class I > implemented? Or is thi

How to make CXF interceptorchain unwind without throw a fault

2011-12-26 Thread June Kobol
Hi all, In such a case, I need to authenticate the user's login information. Luckily, CXF provides interceptors to deal with SOAP message. I can implement the function using an interceptor. Generally, if the user is invalid, then the interceptor may throw a Fault, or a derivative of a Fault

Repeated JAXWS annotations on SEI and impl class

2011-12-26 Thread Guy Pardon
Hi all, Last time I tried to do both an SEI class and an impl class, I was turned off by the combination of @WebService attributes on both/either of them. Is there a clear summary of what should/can be present on both? What if a same value is present on both (like: wsdlLocation)? Thanks Guy

Customizing with @RequestWrapper

2011-12-26 Thread Guy Pardon
Hi, The JAXWS annotations include the @RequestWrapper annotation. I think I understand what it does, but I am not clear on how to use it. For instance: can I specify the className of some custom class I implemented? Or is this purely generated stuff by CXF/JAXWS? Thanks Guy

validation error

2011-12-26 Thread TON
i am getting validation error on element: org.apache.cxf.common.xmlschema.UnsupportedConstruct: Limitation: Type {http://xx.xx.com/}xx is not defined as a sequence. it is coming from line 492 in XmlSchemaUtils i am using cxf 2.5.1. -- View this message in context: http://cxf.547215.n5.nabb

Re: CXF, Jetty, OSGI and multiple web contexts

2011-12-26 Thread Sergey Beryozkin
Hi On 26/12/11 13:58, Tcharl wrote: Hi, I'm trying to make a full webapp stack on osgi. So, I have two wars archive deployed on a single jetty server (published via spring dm and a custom deployer). When I start the interface war alone (the war wich does not contain cxf) and go to http://localhos

Re: Newbie Question: WARNING: No root resource matching request path / has been found.

2011-12-26 Thread Sergey Beryozkin
On 25/12/11 22:36, Jeff Wang wrote: instead of: try the CXF servlet is matching /*, and your url base is /cxftest (which is the name of your deployed war, I assume.) CXF can't find /myService/customer/1 because you have declared /customer/1 instead. Thanks Jeff for this tip, Sergey

Re: CXF and Spring remoting issue

2011-12-26 Thread Sergey Beryozkin
Hi May be you register that interceptor high enough (say as a bus level interceptor) for it to be visible for all the endpoints, Sergey On 25/12/11 01:36, Pydipati, Karuna wrote: Hi It seems to be somewhat strange. I have a CXF services exposed in server-A and I am calling those services usi

Re: Newbie Question: WARNING: No root resource matching request path / has been found.

2011-12-26 Thread Tcharl
Hi, I'm a newbie too, but my cxf conf works and I noticed the server URL is hard coded: http://${ws.server.url}:8080/${ws.context.url}/ws/";>

CXF, Jetty, OSGI and multiple web contexts

2011-12-26 Thread Tcharl
Hi, I'm trying to make a full webapp stack on osgi. So, I have two wars archive deployed on a single jetty server (published via spring dm and a custom deployer). When I start the interface war alone (the war wich does not contain cxf) and go to http://localhost:8080/, I have the list of the availa