Re: Rest GET params coming in null...

2007-08-01 Thread Mansour Raad
Just a shot in the dark herecould setting wrapped to false help ? Mansour :-) On Aug 1, 2007, at 11:49 AM, Brad Harper wrote: I've debugged this down far enough to see that the GetModel object is being interpreted correctly, but the id param is never bound to this object. Any

Re: Rest GET params coming in null...

2007-08-01 Thread Mansour Raad
BTW.there might be an issue with itI did try it using the restful_http_binding sample and no go. Raised a JIRA On Aug 1, 2007, at 2:01 PM, Brad Harper wrote: Is that done with an annotation? On 8/1/07, Mansour Raad [EMAIL PROTECTED] wrote: Just a shot in the dark herecould

Re: Rest GET params coming in null...

2007-08-01 Thread Mansour Raad
On 8/1/07, Mansour Raad [EMAIL PROTECTED] wrote: BTW.there might be an issue with itI did try it using the restful_http_binding sample and no go. Raised a JIRA On Aug 1, 2007, at 2:01 PM, Brad Harper wrote: Is that done with an annotation? On 8/1/07, Mansour Raad [EMAIL PROTECTED

restful parameters setting

2007-07-31 Thread Mansour Raad
given the following annotated method in an interface @Get @HttpResource(location = /{first},{last}) @WebResult(name = nameInfo) NameInfo getName( @WebParam(name = nameOptions) NameOptions nameOptions ); the nameOptions.first and nameOptions.last are populated

Re: http rest sample does not compile

2007-07-30 Thread Mansour Raad
-Original Message- From: Mansour Raad [mailto:[EMAIL PROTECTED] Sent: 2007?7?30? 18:24 To: cxf-user@incubator.apache.org Subject: http rest sample does not compile svn up the latest. cd [install]/samples/restful_http_binding ant server I get the following: Buildfile: build.xml maybe.generate.code

building cxf

2007-07-27 Thread Mansour Raad
svn up the latest and building using mvn -Dmaven.test.skip=true install -Peverything to build it. I'm getting the following (this just started with today's update ) Any clues what to do ? [INFO] [dependency:unpack-dependencies {execution: unpack-sources}] [INFO]

Re: Dependency Injection in JAXWS endpoint

2007-07-26 Thread Mansour Raad
Sorryreplace the implementor, not the id. Mansour :-) On Jul 26, 2007, at 6:49 PM, Mansour Raad wrote: Create a bean as follows: bean id=reportingServiceImpl class=com.visualio.reportserver.webservices.ReportingServiceImpl !-- set properties here -- /bean Replace the jaxws:endpoint

Re: Dependency Injection in JAXWS endpoint

2007-07-26 Thread Mansour Raad
Create a bean as follows: bean id=reportingServiceImpl class=com.visualio.reportserver.webservices.ReportingServiceImpl !-- set properties here -- /bean Replace the jaxws:endpoint id with id=#reportingServiceImpl Mansour :-) On Jul 26, 2007, at 6:44 PM, Jeremy Isikoff wrote: I

Re: POSTing customer using REST

2007-07-24 Thread Mansour Raad
and your Customer object. There were similar problem reported in the mailing list when targetNamespace is missing. If this does not help, you may want to post out your service interface/impl code. Thanks, Jervis -Original Message- From: Mansour Raad [mailto:[EMAIL PROTECTED] Sent

POSTing customer using REST

2007-07-23 Thread Mansour Raad
Given the customer http rest sample, I defined a spring config with the following endpoint: jaxws:endpoint id=customerServiceXML implementor=com.esri.aws.CustomerService address=/xml bindingUri=http://apache.org/cxf/binding/http; jaxws:serviceFactory