imbault Well-Known Member Licensed User Longtime User Dec 29, 2011 #1 Hi I made up a Web service, with 1 parameter, it works very fine, How to send two parameters ??? HttpUtils.PostString("POST Job1", PostUrl, "dDate=01/01/2010,cHr=001") here I want to send dDate and cHr comma , seems not to be the right delimiter Any help???
Hi I made up a Web service, with 1 parameter, it works very fine, How to send two parameters ??? HttpUtils.PostString("POST Job1", PostUrl, "dDate=01/01/2010,cHr=001") here I want to send dDate and cHr comma , seems not to be the right delimiter Any help???
E evilpaw Member Licensed User Longtime User Dec 30, 2011 #2 Have you tried the & in stead of the comma e.g. HttpUtils.PostString("POST Job1", PostUrl, "dDate=01/01/2010&cHr=001") Upvote 0
Have you tried the & in stead of the comma e.g. HttpUtils.PostString("POST Job1", PostUrl, "dDate=01/01/2010&cHr=001")