Commit b7987bb7 authored by nsawalakhe's avatar nsawalakhe

Added changes in servlet.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103072 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1ce5a3d2
...@@ -36,15 +36,15 @@ public class ParticipentEventDetailServlet extends HttpServlet ...@@ -36,15 +36,15 @@ public class ParticipentEventDetailServlet extends HttpServlet
{ {
response.setContentType("application/xml"); response.setContentType("application/xml");
dataSourceName = request.getParameter("dataSourceName"); dataSourceName = request.getParameter("dataSourceName");
eventCode = request.getParameter("survey_templ"); participentCode = request.getParameter("participants_code");
rowsValue = request.getParameter("P1").trim(); rowsValue = request.getParameter("P1").trim();
String []outputDateArray = rowsValue.split(" "); String []outputDateArray = rowsValue.split(" ");
if(outputDateArray.length>1) if(outputDateArray.length>1)
{ {
participentCode = outputDateArray[0]; eventCode = outputDateArray[0];
} }
System.out.println("Final data set participentCode in ParticipentEventDetailServlet ==== "+participentCode); System.out.println("Final data set eventCode in ParticipentEventDetailServlet ==== "+participentCode);
System.out.println(" ParticipentEventDetailServlet Employee code or cell value level2 eventCode :"+eventCode+"----participentCode : "+participentCode) ; System.out.println(" ParticipentEventDetailServlet Employee code or cell value level2 eventCode :"+eventCode+"----participentCode : "+participentCode) ;
context = new InitialContext(appConnectParm.getProperty()); context = new InitialContext(appConnectParm.getProperty());
liveEventDetailsRemote = (LiveEventDetailsRemote) context.lookup("ibase/LiveEventDetails/remote"); liveEventDetailsRemote = (LiveEventDetailsRemote) context.lookup("ibase/LiveEventDetails/remote");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment