Soap API Initailize failed with 401 unauthorized code
Hi there,
I'm new on this switch. Currently I'm reviewing and writing some experimental code for our CC product on this platform using Soap API. I wrote some code using C# to connect to the switch, here is what I did:
Create a User object on switch: name "API" and password "123456".
Construct a pbx object which inherits the base Pbx object/class defined in wsdl(v10): pbx = new InnovaSwitch();
pbx.Credentials = new System.Net.NetworkCredential("API", "123456, "");
int pbxKey;
PbxSession = innovaSwitch.Initialize("API", "C# SOAP Tester", true, true, true, true, true, out pbxKey);
PbxSession = innovaSwitch.Initialize("API", "C# SOAP Tester", true, true, true, true, true, out pbxKey);
It throws 401 exception on invoking "Initialize".
I wire sharked the soap request flow and appears it follows the flow of digest authentication:
Accept the challenge but then failed on the second request(sent with Authorization header) with 401 unauthorized. I'm pretty sure the password is correct.
Any idea?
Also we are looking into using websocket to connect to the switch for obvious reasons. Do you know if the websocket interface is documented? If it is, where we can download the libraries and some sample code(would be great!)? Is that possible to build it base on a raw websocket connection, what is the port to connect to?
Any help is much appreciated!
Josie