Hello,
I am fairly new to Struts. I have two applications. AppA is a Struts
application and AppB is another application. I have an Action class in AppA.
Within execute() method, I am creating some objects. I would like to call the
servlet in AppB and somehow I want to pass these objects to the servlet in
AppB. SO far I have this
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws Exception
{
...
response.sendRedirect("/testsqlservlet/testsqlservlet?Object=" +
object);
...
But this is a problem because even if I use SSL (i.e. https://) this redirect
will be in cleartext and anybody can modify the "object". What are my options?
I am hope I explained myself clearly.
Thanks,
Mustafa
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]