Account Registration 404 Not Found

JS
Jason Stäuble
Wed, Jun 8, 2016 3:52 PM

Hello. I have the following information regarding a SIP account:

SIP Registrar: sip.xyz.com
SIP User: 0123456789 (it's a phone number)
SIP Password: abcdefghi1234
SIP Authorization name: 0123456789.1011

When I create the account I first get "401 Unauthorized" and after that I get "404 Not Found" response from server.

account = new MyAccount;
AccountConfig accountConfig;

accountConfig.idUri = "sip:0123456789@sip.xyz.com";
accountConfig.regConfig.registrarUri = "sip:sip.xyz.com";
accountConfig.sipConfig.authCreds.push_back(AuthCredInfo("Digest", "*", "0123456789", 0, "abcdefghi1234"));

What am I doing wrong? Where do I have to put SIP Authorization name? Thanks.

Hello. I have the following information regarding a SIP account: SIP Registrar: sip.xyz.com SIP User: 0123456789 (it's a phone number) SIP Password: abcdefghi1234 SIP Authorization name: 0123456789.1011 When I create the account I first get "401 Unauthorized" and after that I get "404 Not Found" response from server. account = new MyAccount; AccountConfig accountConfig; accountConfig.idUri = "sip:0123456789@sip.xyz.com"; accountConfig.regConfig.registrarUri = "sip:sip.xyz.com"; accountConfig.sipConfig.authCreds.push_back(AuthCredInfo("Digest", "*", "0123456789", 0, "abcdefghi1234")); What am I doing wrong? Where do I have to put SIP Authorization name? Thanks.