Web Service Constructo

I have a web service. In its constructor I do some validation process . But I notice that this process is not done until I call a method from my webservice. Is like the constructor is not called when I create the object with "new", only is called when I access a method.

How does this works

thanks!


Answer this question

Web Service Constructo

  • Dave Holmes

    Web Services are stateless objects that are recreated on every method call.

  • Web Service Constructo