tags:

views:

34

answers:

1

I have two web applications in web application server. i want to get data from one application to another. how do i do in Struts. i know that it is possible by webservices. But, is there anyway that i could get it using struts?.

+1  A: 

Use query string to pass data using request parameters.

/action.do?varA=1&var2=3

This'll work for simple cases. For complex requirements/exchange please use Web Services or other integration technologies.

Padmarag
then i should get response data back to this application.how do i get it?
Jothi
@Jothi - See updated answer.
Padmarag