Re: QUESTION: where is the class file -- org.apache.cxf.jms_greeter.JMSGreeterPortType -- to be found???

2008-02-20 Thread Glen Mazza
That class is most probably an autogenerated JAX-WS artifact. If there is a WSDL file in the sample, run wsdl2java[1] on it. Glen [1] http://cwiki.apache.org/CXF20DOC/wsdl-to-java.html Am Dienstag, den 19.02.2008, 21:08 -0500 schrieb jw: Hi I'm new to CXF and attempting to build

Re: QUESTION: where is the class file -- org.apache.cxf.jms_greeter.JMSGreeterPortType -- to be found???

2008-02-20 Thread Ulhas Bhole
Hi jw, There should be ant build.xml in the sample so if you do ant build it should generated the class that you are seeing missing. Regards, Ulhas Bhole jw wrote: Hi I'm new to CXF and attempting to build the jms-queue example (found in the samples folder with the CXF distribution -

RE: client SSL question

2008-02-20 Thread Arundel, Donal
You are getting an unknown host exception in the second case.. e.g A name lookup (DNS) issue. This error would occur at the vanila socket layer, and wouldn't really be anything to do with SSL specifically. Maybe try the direct ip address temporarily until you resolve the lookup issue? The

Aegis DataBinding Problem - Error initializing parameters for operation

2008-02-20 Thread chengas123
Hi, I am getting Error initializing parameters for operation from Aegis. I set it up through Spring. The method it is referring to (getEmployeePrivilegesByUid) takes two Strings as arguments, so I'm not sure why it's having a problem. I've included the stack trace below. Thanks, Ben

Re: JSR311 Maven Jars Issue

2008-02-20 Thread dustmachine
A perhaps better solution is hinted at in the Exception -- Use the endorsed directory mechanism to place jaxb-api.jar in the bootstrap classloader. (See http://java.sun.com/j2se/1.5.0/docs/guide/standards/) I copied the jaxb-api-2.1.jar file over to my $JBOSS_HOME/lib/endorsed/ directory and

RE: client code to access java_first_jaxws on tomcat

2008-02-20 Thread Daniel Lipofsky
Thanks for the speedy replies. Willem's simple change got my client working, and Glen's well documented and more complex examples will probably save my sanity as I progress in this project. - Dan -Original Message- From: Daniel Lipofsky [mailto:[EMAIL PROTECTED] Sent: Tuesday,

Re: soap fault question

2008-02-20 Thread David CastaƱeda
Hi, I'm still fighting with fault generation... can anybody give me a pointer where to get some examples or some information about this? in a service that I'm exposing, I'm trying to do SoapFault fault = new SoapFault(message, SoapFault.FAULT_CODE_CLIENT); throw fault; but it

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

2008-02-20 Thread yulinxp
anybody knows? according to XFire document, XFire can do it. So how to do it in CXF client? -- View this message in context: http://www.nabble.com/how-to-let-cxf-client-accept-all-any-certificates-tp15562373p15597788.html Sent from the cxf-user mailing list archive at Nabble.com.

soap address question

2008-02-20 Thread yulinxp
Using browser, when type in the url defined in soap:address, browser should be able to locate the page, right? 1) For example, for ebay wsdl http://developer.ebay.com/webservices/latest/ShoppingService.wsdl wsdlsoap:address location=http://open.api.ebay.com/shopping/ using browser to access

Re: soap address question

2008-02-20 Thread Willem Jiang
yulinxp wrote: Using browser, when type in the url defined in soap:address, browser should be able to locate the page, right? It depends on the service implementation. CXF support to use http get method to access the service , you can find more information here[1] 1) For example, for