Jothi
Jothi

Reputation: 15090

how web applications communicate each other in struts?

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?.

Upvotes: 0

Views: 372

Answers (1)

Padmarag
Padmarag

Reputation: 7214

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.

Upvotes: 1

Related Questions