calling JSP from java using URL class and pass object in query string
Hi all,
i have scenario,where i need to send a http request to web application from core java application and send a object with request.
URL url = new URL("http://localhost:6060/EVIPPOC1/first.jsp?invokehandler=this&ccxmlsessionid="+ccxmlid.toString());
URLConnection conn = url.openConnection();
Since we know that we can get only String from request.getParameter(""),i am able to get only the hashcode of object and i cant create object from it.
is there any way to get object from request and then use it in JSP.
also i want to clarify....whether we can send an object in httprequest or not?

