TimPrior Posted August 9, 2017 Posted August 9, 2017 Hi Ive got a webapp that is started Includes URL Parameters in it Example https://SSLSERVERIIS7/Applications/webapp.dll/?PARAM01=TEST?PARAM02=1 This comes up with a message SSLSERVERIIS7 Says: %1 could not be found This server has a ssl cert installed. I have another webserver set up with IIS7 but not with a SSL Certificate installed and the app works fine with those parameters. What am I missing on my SSL Server? Thanks for any help
delagoutte Posted August 9, 2017 Posted August 9, 2017 https://sslserveriis7/Applications/webapp.dll/?PARAM01=TEST?PARAM02=1 try this (without / after dll and & between 2 parameter): https://sslserveriis7/Applications/webapp.dll?PARAM01=TEST&PARAM02=1 i'm using parameter with and without ssl without any problem
TimPrior Posted August 10, 2017 Author Posted August 10, 2017 Hi Thanks for that. still can't get it to work. Im going to try it on a 3rd server and see how far I get. Again thanks for you help.
Administrators Farshad Mohajeri Posted August 10, 2017 Administrators Posted August 10, 2017 Hi, "?" should be used only once. Next parameters must be separated using "&" character.
Recommended Posts