RE: REST XPath

2007-06-20 Thread Shaw, Richard A
My service is as follows - @WebService public interface ChannelStoreRestService { @Get @HttpResource(location = /rest/{xPathQuery}) GetData getData(@WebParam(name = GetDataQuery) GetDataQuery query) throws GetDataFault; } My bean is - @XmlRootElement(name = GetDataQuery) public class

Re: cannot implement service using ProviderDataSource

2007-06-20 Thread Sergey Beryozkin
Hi I remember adding a system test as part of the patch where a provider is parameterized with DataSource, I'm wondering is it still there ? Cheers, Sergey - Original Message - From: Conrad O'Dea [EMAIL PROTECTED] To: cxf-user@incubator.apache.org Sent: Wednesday, June 20, 2007

Re: cannot implement service using ProviderDataSource

2007-06-20 Thread Conrad O'Dea
Hi Sergey, On 6/20/07, Sergey Beryozkin [EMAIL PROTECTED] wrote: Hi I remember adding a system test as part of the patch where a provider is parameterized with DataSource, I'm wondering is it still there ? The only references to DataSource appear to be in relation to SwA support and a

Re: cannot implement service using ProviderDataSource

2007-06-20 Thread Sergey Beryozkin
Hi It's in trunk/systests/src/test/java/org/apache/cxf/systest/provider/ AttachmentProviderXMLClientServerTest.java AttachmentStreamSourceXMLProvider.java Unfortunately this test does'not use DataSource as I thought Cheers, Sergey - Original Message - From: Conrad O'Dea [EMAIL

Re: REST XPath

2007-06-20 Thread Dan Diephouse
Willem: the test case that you raised fails for me. It really stems from a problem with expectations about how wrapped mode should work. You're operating in unwrapped mode. Which means that the expression in the brackets {} is mapped to the field on the first parameter. That is, instead of this:

Re: Maven Java2WSDL Plugin

2007-06-20 Thread James Mao
One thing that i would like to mention, is that why the java2wsdl looking for the jaxws frontend, It's that the MyService is annotated with the jaxws annotation, so the tool detected it should use the jaxws frontend to generate the wsdl. If you feed a plain java class without any annotations,

Re: cannot implement service using ProviderDataSource

2007-06-20 Thread Freeman Fang
Hi Conrad, I will take care of this issue. Cheers Freeman Conrad O'Dea wrote: Howdy, I'm trying to create a service with ProviderDataSource which is published using XML/HTTP. I can publish the endpoint without problem but invoking on the service does not work. My Provider is declared as