calling a url and passing multiple parameters to it
523585Jun 12 2007 — edited Jun 12 2007Hello,
I am trying to access a URL which points to a java web application and send it multiple parameters. However when i try to do this i can access the page but only the first parameter shows.
for example i have this command:
command_string := comspec_string||' /c start http://cbsdv07.fda.gov/ptstest/ptsEntrancePage.do?ptsId='||p_pts_id||'&commDate='||p_comm_date||'&commType='||p_comm_type||'&commIO='||p_comm_io;
but when the URL loads up, it looks like this:
command_string := comspec_string||' /c start http://cbsdv07.fda.gov/ptstest/ptsEntrancePage.do?ptsId=someValue
is there something that i am doing wrong here?
any help is appreciated thanks!