Hi All,
Carrying on from my learning of web services. I’ve moved on from the simple example to one of my own.
In this example I’ve created a simple class with 1 method and 3 atributes.
I’ve then taken the simple example and imported the class, and placed that into the web service parameter instead of the string, see below.
public String receivePromoEntry(BusinessInteraction BusinessMessage) {
return “Worked”;
}
It deploys ok to Tomcat and shows up in the list of available web services, but there is no place to enter a parameter anymore because of the class parameter.
Is there a way to test this through the Web Service explorer and pass a class in or is the only way now to test this by wrting the code to consume the web service.
Thanks for any help.
Mark