we have both webservices (synchronous request/responses and asynchronous events from legacy system). Synchronous requests are towards the legacy system and asynchronous events reported from the legacy system are reported to client invoked using asynchronous webservice request implemented in the clientside webserver.
There is a need to maintain user session per client throughout the session.
Can somebody suggest the solution.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4131180#4131180
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4131180
Hi all,
The WSDL file generated using java classes does not include the sub classes for an abstract class.
This is the actual case.
1) The service class is abstract, which is extended many other classes.
2) The serviceProfile class has a Collection of service class.
The WSDL includes only the service class and not the subclasses, Is there anyway to include them into the WSDL?
With the earlier implmentation using JBoss-net we used web-service.xml for explicit 'typeMappings'.
Is there a way for this explicit typeMappings with JBossWS?
Thanks,
Arvind
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4131168#4131168
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4131168
"heiko.braun(a)jboss.com" wrote : I think nobody understands what you are asking for ;)
hmm - ok, maybe this let others to understand what i want:
For example we have:
@WebMethod public void get_parameter(String outParam) {
| outParam="Test";
| }
|
When we invoke this webmethod from client:
String param="empty";
| myservice.get_parameter(param);
| System.out.println(param); //output Test instead empty
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4131021#4131021
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4131021