Re: Client side plain SOAP invocation

2008-02-14 Thread silithus
Thanks for the tips. This seems to be what I am looking for. Regards -- View this message in context: http://www.nabble.com/Client-side-plain-SOAP-invocation-tp15457618p15476264.html Sent from the cxf-user mailing list archive at Nabble.com.

RE: CXF client SSL configure question

2008-02-14 Thread Arundel, Donal
Thats correct, the client side CXF SSL setup is independent of the specific servlet containers own SSL setup (which varies across containers). Cheers, Donal -Original Message- From: yulinxp [mailto:[EMAIL PROTECTED] Sent: 13 February 2008 21:06 To: cxf-user@incubator.apache.org

Arrays as result and casting issue

2008-02-14 Thread Frederic Soulier
Hi I got an issue with casting arrays returned when calling my SOAP service. Interface: public Address[] lookupAddress(...); Implementation: public Address[] lookupAddress(...) { ... some stuff happening ... UKAddress address = new UKAddress[10]; ... 10 UKAddress objects added to

Re: soap fault question

2008-02-14 Thread David Castañeda
Ready to go!... https://issues.apache.org/jira/browse/CXF-1434 hope this help, any further help I can provide don't hesitate in asking. -- David Castañeda R.

Re: how to configure HTTPConduit for client using java code

2008-02-14 Thread Daniel Kulp
On Wednesday 13 February 2008, yulinxp wrote: User's guide shows how to configure HTTPConduit for client using java code http://cwiki.apache.org/CXF20DOC/client-http-transport-including-ssl-s upport.html import org.apache.cxf.endpoint.Client; import org.apache.cxf.frontend.ClientProxy;

Re: put a variable in an handler and access it from the MessageContext

2008-02-14 Thread Daniel Kulp
You need to set a scope for the property. In a handler, properties default to Handler scope and thus are only available to handlers. You need to call: lmc.setScope(Constants.MY_CONSTANT, MessageContext.Scope.APPLICATION); to make it Application scoped. Dan On Thursday 14

Re: Issue with WSDL or CXF

2008-02-14 Thread Kyle Bober
The answer to your question: 'Do you litterally mean I ran wsdl2java, compiled it, than ran the client? If so, that's probably the issue.' Is Yes A... I did just simply run the client without populating any data. If this is what the issue is I will feel like a fool. Let me try

Re: Unable to locate Spring NamespaceHandler.

2008-02-14 Thread Daniel Kulp
That completely looks correct. I assume the appropriate cxf-rt-frontend-jaxws jar is on the classpath, right? Dan On Tuesday 12 February 2008, ramanand bulusu wrote: Hi , I am getting the following exception while deploying the apllication. i dint understand the root cause for this

Re: Creating a custom bindings

2008-02-14 Thread Daniel Kulp
On Wednesday 13 February 2008, Shaw, Richard A wrote: Does anybody have any tips (where to start) on how to create a custom binding ? Wow. That's a big undertaking, but very cool to see. :-) Basically, for bindings, you need to create XmlStreamReader/XmlStreamWriter objects that will

Re: Returning ListFoo via SOAP

2008-02-14 Thread Daniel Kulp
Any chance you can try with 2.0.4? It sounds like for some reason, the ReviewData is not getting passed into the JAXB context. Not sure why that is.. Actually, what compiler flags are you using? With -o, I'm not sure if the generics is compiled in. I would assume so, but maybe not. Dan

Problem with xsi:type=xsd:dateTime in request to a JAXWS using Date parameter.

2008-02-14 Thread David Castañeda
Hi, can anybody point me out how to solve this issue... https://issues.apache.org/jira/browse/CXF-369 as maomaode writes the solution is to use annotation appinfo jxb:property jxb:baseType

Re: how to configure HTTPConduit for client using java code

2008-02-14 Thread Willem Jiang
Hi , I think the default Data Binding in the ServiceFactory is JaxbDatabinding. That's why you need to do when you want to use AegisDatabinding. Willem. yulinxp wrote: Why/when is it needed to set AegisDatabinding for client at all ? ClientProxyFactoryBean factory = new