I am trying to write a web service that listens for SPML requests. I am using the spml version 2 toolkit.
I am using Jdeveloper to create this web serivce.
I create a method like this: public Response execute(Request req)
When I try and create a web service with jdeveloper...I get the following error:
ExecutionMode does not have a no-arg constructor.
Does anybody know how to fix this..?? An example of this would be greatly appreciated.
Thanks, Brian
If you define a parameterized contructor then you should also define a default constructor if you use one because java wont provide default constructor if you define parameterized constructor.So you should define