Re: Aegis DataBinding Problem - "Error initializing parameters for operation"

2008-02-21 Thread Benson Margulies
can you attach your class to a JIRA? Do you have a .aegis.xml file for your SEI? On Wed, Feb 20, 2008 at 11:01 AM, chengas123 <[EMAIL PROTECTED]> wrote: > > Hi, > I am getting "Error initializing parameters for operation" from Aegis. I > set it up through Spring. The method it is referring to >

Re: Aegis DataBinding does not work

2008-02-21 Thread Benson Margulies
I think I see. You've got a JAX-WS+JAXB service, and you're trying to talk to it with an Aegis client, using the same SEI. That's not going to match up. It's not very possible to use Aegis as the client to talk to something else, as we don't have wsdl2java for Aegis, nor could we easily make one.

Re: Services documentation

2008-02-21 Thread Eric Miles
Well, I was mistaken that CXF was stripping the documentation elements. Sorry for the false alarm. :) However, is there a way to add documentation elements to the generated WSDL? I thought XFire provided this (there is a link on the old XFire site to documenting the WSDL), has this feature made i

DynamicClientFactory - REST equivalent

2008-02-21 Thread Arul Dhesiaseelan
Hello, How do I dynamically invoke REST end points using CXF APIs? I have seen this working for web services using DynamicClientFactory. Any pointer would be appreciated. Thank you Arul

RE: client SSL question

2008-02-21 Thread yulinxp
Now using NET, I can connect to it! But CXF client still doesn't work! The message could be sent! typo, I mean couldn't Please help! -- View this message in context: http:/

RE: client SSL question

2008-02-21 Thread yulinxp
https://wjcp7meduat1.medpoint.com/mdfwebservices/hprequest.asmx"/> The remote name could not be resolved: 'wjcp7meduat1.medpoint.com' I tried both NET and CXF. So I update it to https://mdf.ingenixmedpoint.com/mdfwebservices/hprequest.asmx?WSDL"/> Now using NET, I can connect to it! But CXF cli

Loading data into pre-existing objects

2008-02-21 Thread Daniel Lipofsky
I am trying to convert our webservices from WebMethods Glue to CXF and I am looking for some advice and good examples. The main thing we do is upload and download a list of objects, persisted to the database via Hibernate or EJBs. Our SOAP XML files look something like this

Services documentation

2008-02-21 Thread Eric Miles
All, I know the WSDL is to service as a documentation tool to identify what services are available and how to connect them, but I'm looking for something a little more that I could hand over to clients. I was looking at a couple of tools that take the WSDL and generate some javadoc like documenta

Re: Aegis DataBinding does not work

2008-02-21 Thread Benson Margulies
What version of CXF? On Thu, Feb 21, 2008 at 11:36 AM, <[EMAIL PROTECTED]> wrote: > Hi > I have configured the CXF demo.spring.HelloWorld using Aegis DataBinding > as per instructions found at > http://cwiki.apache.org/CXF20DOC/aegis-databinding.html > When I run my client I am receiving the foll

Aegis DataBinding does not work

2008-02-21 Thread Tezcan.Dilshener.extern
Hi I have configured the CXF demo.spring.HelloWorld using Aegis DataBinding as per instructions found at http://cwiki.apache.org/CXF20DOC/aegis-databinding.html When I run my client I am receiving the following error [21.02.08 17:26:16:939 CET] 0031 PhaseIntercep I org.apache.cxf.phase.PhaseI

RE: how to let cxf client accept all/any certificates

2008-02-21 Thread Arundel, Donal
Maybe try looking at the CXF demos - there is a WSDL first HTTPs demo there. Normally the CXF SSL trust information is specified through the spring config. >Also what if server ca is self-assigned, how to handle in this case? Generally a CA being self-signed doesn't make any difference to you, it

Re: mutithread issues in interceptors and endpoints

2008-02-21 Thread Daniel Kulp
On Thursday 21 February 2008, Davide Gesino wrote: > a question about multithread issues in CXF (maybe a silly one). > Multiple requests are managed relying upon the servlet engine I CXF > uses. Every request (so every SOAPMessageContext) lives in his own > thread? If there is a pool of them, every

RE: client SSL question

2008-02-21 Thread Arundel, Donal
Yup, if you can't ping wjcp7meduat1.medpoint.com (the hostname part of the URL) then nothing will work. This has nothing to do with CXF or SSL per-se, just your systems TCP and DNS setup, or even an incorrect URL. The hostname has to be resolvable to an IP address, e.g. an nslookup on NT should

RE: client SSL question

2008-02-21 Thread yulinxp
https://wjcp7meduat1.medpoint.com/mdfwebservices/hprequest.asmx"/> is the entry point, right? But I can't even ping wjcp7meduat1.medpoint.com. Should I be able to ping it cmd? Arundel, Donal wrote: > > > You are getting an unknown host exception in the second case.. > > e.g A name lookup

RE: how to let cxf client accept all/any certificates

2008-02-21 Thread yulinxp
how to "configure your client to trust the *Issuing Certificate Authority*"? Any code example? Also what if server ca is self-assigned, how to handle in this case? Arundel, Donal wrote: > > At the SSL protocol level

mutithread issues in interceptors and endpoints

2008-02-21 Thread Davide Gesino
Hi, a question about multithread issues in CXF (maybe a silly one). Multiple requests are managed relying upon the servlet engine I CXF uses. Every request (so every SOAPMessageContext) lives in his own thread? If there is a pool of them, every thread in the pool manages one request each time? In

[2.0.4] Service unit tests fail after upgrade from 2.0.2

2008-02-21 Thread Holger Stolzenberg
We are using CXF for a shop backend. After we upgraded from 2.0.2 -> 2.0.4 the unit tests (TestNG) for the CXF services all fail with the same exception like the one below: FAILED: testSaveCustomer javax.xml.ws.soap.SOAPFaultException: Could not send Message. at org.apache.cxf.jaxws.Jax

RE: how to let cxf client accept all/any certificates

2008-02-21 Thread Arundel, Donal
At the SSL protocol level the servers that a client will trust is governed by the list of Certificate Authorities (CAs) that the client is configured to trust. i.e. You need to configure your client to trust the *Issuing Certificate Authority* that created the specific server certificate concerned