CXF-706 Patch

2007-06-06 Thread Polar Humenn
Greetings, I have a patch that I attached to JIRA CXF-706. I'd appreciate if somebody could apply it. It doesn't have any binary files so, its application should be okay. This patch gets rid of the Deprecated SSL stuff, allows to you to use multiple Http Destinations on the same HTTPS port. Th

RE: DynamicClientFactory & skipping some layers

2007-06-06 Thread Liu, Jervis
So you've got it. :-) Regarding whether or not dispatch provider goes through the binding layer, please see more comment in-line below. Cheers, Jervis > -Original Message- > From: Shaw, Richard A [mailto:[EMAIL PROTECTED] > Sent: 2007?6?6? 17:08 > To: cxf-user@incubator.apache.org > Subj

Re: Skipping some layers in the interceptor chain

2007-06-06 Thread Dan Connelly
Dan: Axis 1.x is simpler, though less efficient, in the case of the service definition I gave (EFileService-1.0.1.wsdl) where the implementation logic is essentially xsl (document handling, as the TechTip puts it). Note that the Send operation of this service is actually not completely ugh-i

RE: Talking to secure service

2007-06-06 Thread Shaw, Richard A
I've added the following to my system properties and it looks better but I still doesn't work (see below) -Djavax.net.ssl.trustStore=etc/mosaic.truststore -Djavax.net.ssl.keyStoreType=pkcs12 -Djavax.net.ssl.keyStore=etc/ChannelStore.p12 -Djavax.net.ssl.keyStorePassword=password -Djavax.net.de

Talking to secure service

2007-06-06 Thread Shaw, Richard A
I've secured my service as per the hello_world_https sample but when I try to talk to my service it fails to get the WSDL. I'm creating my service as follows - QName serviceName = new QName("http://www.atkinsglobal.com/inform/dataaccess";, "DataAccessService"); DataAccessService da

RE: DynamicClientFactory & skipping some layers

2007-06-06 Thread Shaw, Richard A
A new day and a clear mind and this turned out to be easy. For those who are intersted this is what I've ended up with - QName serviceName = new QName("http://www.atkinsglobal.com/inform/configmanager/";, "ConfigManagerService"); QName portName = new QName("http://www.atkinsglo

RE: .net remoting

2007-06-06 Thread Shaw, Richard A
My motivation is to obtain access to my .net remote object without changing anything on that server and without having to write my new client in c#. My other option was to create a c# component which I could access locally from my java code, but my deployment server for my new client is Linux an

RE: DynamicClientFactory

2007-06-06 Thread Shaw, Richard A
My use case is shown in my other email sibject "Skipping some layers in the interceptor chain" I want to create a generic component to fetch data from a data provision service (using lots of transport formats, etc). The suggest has been to use jax-ws dispatch provider interface. I want to do th