Hi All,
I tried the Restful http-binding example with the spring configuration.
I took the latest source code from Subversion which has the fix for the
jaxws endpoint for http-binding (#CXF-664). The sample works fine, but
when I try to introduce a new method which takes a long as an input
parameter I get the following error.
org.springframework.beans.factory.BeanCreationException: Error creating
bean with name 'restfulCustomerServer': Invocation of init method
failed; nested exception is java.lang.IndexOutOfBoundsException: No
group 1
This seems to be a name space issue, not sure though. Any thoughts?
Here is my method
@Get
@HttpResource(location = "/topics/{id}")
public String getTopics(@WebParam(name = "id") long id);
Thanks,
Thaiyal