Re: XFire-CXF discovery/question

2008-01-03 Thread Benson Margulies
On Wed, 2008-01-02 at 21:07 -0800, Dain Sundstrom wrote: Why don't we support the xfire annotations also? It would be pretty easy for the code to check for both. -dain We'd need to rehydrate the old classes under their old packages. I don't know if that might ruffle and Apache feathers.

webservice client does not work on weblogic 9.2

2008-01-03 Thread mjmjmj
I have a basic web service client which works as a standalone client. It is configured with the following spring beans : bean id=callNotificationClient factory-bean=callNotificationClientFactory factory-method=create / bean id=callNotificationClientFactory

Re: Enumeration problem

2008-01-03 Thread Mon
Hi! I'm seeing the same issue. Any ideas how to get round it? Thanks, Monica melix wrote: Hi, Using CXF 2.0.2, I have a problem using CXF with a service which throws an exception which contains an enumeration field. The WSDL is generated correctly, and I use wsdl2java for generating

Re: Enumeration problem

2008-01-03 Thread melix
Two solutions, either : - move to CXF 2.0.3 which fixes the problem (easy) - edit the stubs to change the namespace Cedric Mon wrote: Hi! I'm seeing the same issue. Any ideas how to get round it? Thanks, Monica melix wrote: Hi, Using CXF 2.0.2, I have a problem using CXF

CXF interceptor equivalent for LogicalHandler?

2008-01-03 Thread Glen Mazza
Hello, I am trying to understand any architectural correspondances between JAX-WS Handlers[1] and CXF interceptors. I can see from the interceptor page[2] that a JAX-WS SOAP protocol handler more or less maps to a CXF AbstractSoapInterceptor. I was wondering if there is an counterpart to the

Re: XFire-CXF discovery/question

2008-01-03 Thread Benson Margulies
Dain, are you willing to take this one? And, while at it, why not make Aegis respect JAXB @'s when they have the same 'simple' name and semantics? On Thu, 2008-01-03 at 10:04 -0800, Dain Sundstrom wrote: On Jan 3, 2008, at 5:52 AM, Benson Margulies wrote: On Wed, 2008-01-02 at 21:07

XFire-CXF, Local client

2008-01-03 Thread SBixby
Our XFire project used a spring-provided configuration to retrieve a local service for JUnit-based testing (using Spring's transactional injection test class as a base). The code that accesses the service looks like this: String name = someServiceName; XFire xfire = (XFire)

How to throw RemoteException

2008-01-03 Thread yulinxp
sample wsdl_first demos how to throw a customized exception: PingMeFault. But how to handle a defined exception like RemoteException? Currently, when I generate code, RemoteException would be removed from my interface. public interface HelloWorld { public void sayHi(

Re: How to throw RemoteException

2008-01-03 Thread Glen Mazza
I don't think you usually throw (or can even throw) RemoteExceptions with JAX-WS. IIRC RemoteExceptions are for JAX-RPC only[1]. Glen [1] http://www.ibm.com/developerworks/webservices/library/ws-tip-jaxwsrpc3/ Am Donnerstag, den 03.01.2008, 12:53 -0800 schrieb yulinxp: sample wsdl_first demos

Re: webservice client does not work on weblogic 9.2

2008-01-03 Thread Glen Mazza
Just a gamble here, but docs for the Mule-CXF transport seem to suggest that CXF is picky on the SAAJ version it wants ([1], see With Mule Standalone section.) You may need to override the SAAJ version that WebLogic is using. How you do that is unfortunately quite JEE server-dependent. You may

Re: cxf without spring

2008-01-03 Thread Glen Mazza
cxf.xml is for bus (generic service/client endpoing) configuration--I don't know what you're trying to do to be able to answer your question directly. The Service configuration files section of [1] gives you two separate ways of configuring a CXF-based web service. Also, Willem recently created

Re: webservice client does not work on weblogic 9.2

2008-01-03 Thread Jeff Yu
Hi Please check the saaj version in classpath, CXF shipped saaj-impl-1.3.jar and saaj-api-1.3.jar. It might be conflict with the weblogic one. Or you can check out the http://cwiki.apache.org/CXF20DOC/appserverguide.html to see how to integrate with Weblogic. HTH Jeff mjmjmj wrote: I

MTOM problems : http://schemas.xmlsoap.org/wsdl/ is not a valid SOAP version.

2008-01-03 Thread Olvera Segura Jaime Ivan
Hi, I just deploy a webservice using anotations and spring to generate it, it works fine for the wsdl generation, but when i try to consume the service fault with this exception: INFO: Interceptor has thrown exception, unwinding now org.apache.cxf.binding.soap.SoapFault:

Share object in request scope on ws server

2008-01-03 Thread gweb79
Hi, I am developing a secure web service using cxf 2.0, spring 2.5 on tomcat 6. For each request coming I want to authenticate using ws-security (implemented), grab the user out of the database, and pass it around (as object) the following interceptors and also the web service impl. What is

Re: webservice client does not work on weblogic 9.2

2008-01-03 Thread mjmjmj
Hi Jeff thanks for your response. I have already checked that saaj-impl-1.3.jar and saaj-api-1.3.jar are present in the war part of the ear i deployed. I have also added the following lines in the weblogic-application.xml DD file of the ear : prefer-application-packages