Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
Error when trying to test using Postman
This is an expansion of the error I am getting when testing using Postman:
Comments
A few questions:
I just did a little bit of research against the "cannot add duplicate collection entry" error. Everything I read points to a problem with IIS configuration, which is well beyond my scope of knowledge. Others might be more helpful. Here are a few relevant links I came across:
FYI answers.
1.Are you testing this on your local machine or on the actual public facing web server?
local machine
2. What method are you using? (GET, POST, etc.)
GET
3.Is the EngineServer running?
YES
4.Perhaps post a screen shot of your Postman entry.
We had to do this - put ParsonWeb to get to work, maybe ParsonsWeb 'pointer' got lost.
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="CGI-BIN Api Rewrite" patternSyntax="Wildcard"> <match url="api/*" /> <action type="Rewrite" url="ParsonsWeb/cgi-bin/oecgi3.exe/{R:1}" /> </rule> </rules> </rewrite> <directoryBrowse enabled="true" /> </system.webServer> </configuration>
Removed ParsonsWeb and it now works:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="CGI-BIN Api Rewrite" patternSyntax="Wildcard"> <match url="api/*" /> <action type="Rewrite" url="cgi-bin/oecgi3.exe/{R:1}" /> </rule> </rules> </rewrite> <directoryBrowse enabled="true" /> </system.webServer> </configuration>