Hey,
I'm trying to configure an URL monitor that has multiple parameters (3, to be exact) but from what I've seen the querystring only takes into account the first one, ignoring the rest.
Example URL:
Example Parameters:
username=UserAR
password=PassAR
cmd=CREDS
If I test it like this, the webservice returns a "need password", so I thought maybe it's authentication. It's not, if I invert the order of parameters:
password=PassAR
username=UserAR
cmd=CREDS
I get a "need username" - furthermore, I've tried the URL and it works (returns a creds value). So, what I did was check with chrome dev tools to see what was going on between the server and the webservice, and voila
-
-
-
-
-
-
-
-
the queryString parameter always shows only the first parameter. So, I thought, maybe I'm doing something wrong in the parameters field.
- I've tried pasting from notepad
- leaving two newlines
- pasting from notepad++ with linux EOL characters.
To no avail. Do you guys have any idea of what's amiss? I think there is something funky the way OpManager is reading the querystring...
-