¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io

Re: Postman to SIMPL


 

JPCH,
You have the content a bit wrong, with the example he posted it should be:

POST /axis-cgi/apidiscovery.cgi HTTP/1.1\nContent-Type: application/json\nUser-Agent: PostmanRuntime/7.34.0\nAccept: */*\nPostman-Token: c2d76ff9-854d-4daf-81d9-5ed4a8035c99\nHost: 10.95.16.11\nAccept-Encoding: gzip, deflate, br\nConnection: keep-alive\nContent-Length: 36\n\n{\n"method": "getSupportedVersions"\n}

Jim,
You might want to look at your headers and see if they are all required. The only one that I know is a must is Host. I would probably try the string below:

POST /axis-cgi/apidiscovery.cgi HTTP/1.1\nHost: 10.95.16.11\nContent-Length: 36\n\n{\n"method": "getSupportedVersions"\n}

That is unless you want to make sure the connection stays connected, then I would use:

POST /axis-cgi/apidiscovery.cgi HTTP/1.1\nHost: 10.95.16.11\nConnection: keep-alive\nContent-Length: 36\n\n{\n"method": "getSupportedVersions"\n}

Join [email protected] to automatically receive all group messages.