How do I fix this error "XYZ does not have a no-arg constructor"

7.4k Views Asked by At

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

3

There are 3 best solutions below

0
On

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

public ExecutionMode()
{

   //defination

}
0
On

Presumably you have a class called ExecutionMode? The compiler is looking for a no argument constructor, ie. a constructor that takes no arguments:

class ExecutionMode{
    ....
    public ExecutionMode(){...}
    ....
}
3
On

You need to add a default (no-arg) constructor to the ExecutionMode class.

public class ExecutionMode {
     public ExecutionMode() {
          // initialization code here
     }

     // other class code    

}