Re: Using cxf with external web-services

2008-04-16 Thread Valerio Schiavoni
Hello Glen, On Sat, Apr 12, 2008 at 4:50 AM, Glen Mazza [EMAIL PROTECTED] wrote: Perhaps my client example may help you: http://www.jroller.com/gmazza/date/20070929 this helps, explaining the process step-by-step gives an insight that I was somehow missing. --

Using cxf with external web-services

2008-04-11 Thread Valerio Schiavoni
Hello everyone, suppose I want to write a client application to use the meteo webservice at this address: http://www.webservicex.net/globalweather.asmx?WSDL What are the steps to do so using CXF ? I've been using wsdl2java to geneate java classes and interfaces, but it's not quite clear how to

Re: Possible to use CXF without Spring ?

2008-04-04 Thread Valerio Schiavoni
aims at building a SCA runtime the same way Tuscany does. Cheers, Valerio On Fri, Apr 4, 2008 at 3:57 AM, Daniel Kulp [EMAIL PROTECTED] wrote: On Thursday 03 April 2008, Valerio Schiavoni wrote: Interesting. My needs are indeed quite simple: i export java interfaces (without annotations

Possible to use CXF without Spring ?

2008-04-03 Thread Valerio Schiavoni
Hello everyone, this might sound weird but: how could I use cxf without its Spring support ? Within our framework we already use another component-model (Fractal, see http://fractal.objectweb.org), and having both at the same time is a bit too much. Everything works fine, let me be clear, but

Re: Possible to use CXF without Spring ?

2008-04-03 Thread Valerio Schiavoni
support lately. :-( Dan On Thursday 03 April 2008, Valerio Schiavoni wrote: this might sound weird but: how could I use cxf without its Spring support ? Within our framework we already use another component-model (Fractal, see http://fractal.objectweb.org), and having both

Re: Problem deserializing pojos (fields not initialized)

2008-04-02 Thread Valerio Schiavoni
- From: Valerio Schiavoni [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2008 2:43 PM To: cxf-user@incubator.apache.org Subject: Re: Problem deserializing pojos (fields not initialized) ehm..i forgot to had copy/paste this line to the example code showcasing the problem

Re: Problem deserializing pojos (fields not initialized)

2008-04-02 Thread Valerio Schiavoni
It works fine On Wed, Apr 2, 2008 at 3:06 PM, Benson Margulies [EMAIL PROTECTED] wrote: Create an AegisContext, set the flag in there, push it into the AegisDatabinding. For the curious ones, here's the code for the client (server is the same): clientProxyfactoryBean = new

Re: Problem deserializing pojos (fields not initialized)

2008-04-01 Thread Valerio Schiavoni
ehm..i forgot to had copy/paste this line to the example code showcasing the problem: wsServerFactoryBean.getServiceFactory().setDataBinding(new AegisDatabinding()); so: same error as before.. -- http://www.linkedin.com/in/vschiavoni http://jroller.com/vschiavoni

Problem deserializing pojos (fields not initialized)

2008-04-01 Thread Valerio Schiavoni
Hello, short version: before sending a pojo object over the network as a service invocation result: Pojo[id:2,name:pojo-2,date:2008-04-01T13:24:34.655+02:00] after receiving the object and having it deserialized: Pojo[id:0,name:null,date:null] longer version: i'm using the

org.apache.cxf.binding.soap.SoapFault: http://schemas.xmlsoap.org/wsdl/, the namespace on the definitions element, is not a valid SOAP version.

2008-02-01 Thread Valerio Schiavoni
Hello everyone,'m using cxf 2.0.4-incubator (is this the latest one?) I expose a java class as a web-service, doing something like: wsServerFactoryBean = new ServerFactoryBean(); wsServerFactoryBean.setAddress(address); wsServerFactoryBean.setServiceClass(serviceClass);

Re: org.apache.cxf.binding.soap.SoapFault: http://schemas.xmlsoap.org/wsdl/, the namespace on the definitions element, is not a valid SOAP version.

2008-02-01 Thread Valerio Schiavoni
So far, this jira issue: https://issues.apache.org/jira/browse/CXF-1117 is the only one that might be somehow related with my problem..but still i've no idea on how to solve this issue. On Feb 1, 2008 4:30 PM, Valerio Schiavoni [EMAIL PROTECTED] wrote: Hello everyone,'m using cxf 2.0.4

Re: cannot reach webservice (SimplefrontEnd related ?)

2007-09-22 Thread Valerio Schiavoni
Hello Ning, thanks for your reply On 9/22/07, Jiang, Ning (Willem) [EMAIL PROTECTED] wrote: You need to set the factory with the address that you got from the wsdl (http://localhost:8080/Service?wsdl). It must be something like this http://localhost:8080/Service/***; the solution you

cannot reach webservice (SimplefrontEnd related ?)

2007-09-21 Thread Valerio Schiavoni
Hello everyone, i'm a newbie of CXF and webservices in general, so sorry if my question is somehow dumb. I create a webservice using the SimpleFrontEnd. Once wsServerFactoryBean.create() method is invoked, the corresponding wsdl is made available at the expected address. Also, i see this output