Search found 4651 matches

by Aaron
Mon May 04, 2020 8:45 am
Forum: Technical Support
Topic: Users second sip account not working
Replies: 1
Views: 9451

Re: Users second sip account not working

The console only works for your primary account. The console filter uses a string match against your primary username so you won't see any events corresponding to subaccounts. As to what's going wrong with the registration try and get the response code from the REGISTER request. 401 means the passwo...
by Aaron
Wed Apr 29, 2020 11:06 am
Forum: Technical Support
Topic: Webcallback via browser
Replies: 4
Views: 10777

Re: Webcallback via browser

Yes you're right. Changed the header to
Access-Control-Allow-Origin
.
by Aaron
Wed Apr 29, 2020 8:32 am
Forum: Technical Support
Topic: Webcallback via browser
Replies: 4
Views: 10777

Re: Webcallback via browser

That should be done now.

Code: Select all

HTTP/1.1 200 OK
Allow: OPTIONS, TRACE, GET, HEAD, POST
Server: Microsoft-IIS/7.5
Public: OPTIONS, TRACE, GET, HEAD, POST
X-Powered-By: ASP.NET
Access-Control-Origin: *
Date: Wed, 29 Apr 2020 08:31:21 GMT
Content-Length: 0
by Aaron
Fri Apr 17, 2020 6:52 am
Forum: Technical Support
Topic: New DID gives me 480 error
Replies: 2
Views: 13745

Re: New DID gives me 480 error

The `sys.IsAvailable` method only works with exact SIP accounts so you can't use the dot notation account name e.g. `LocalPhone.synchron`. Is there any reason you can't use SIP account username `synchron@sipsorcery.com` with LocalPhone?
by Aaron
Thu Mar 26, 2020 8:35 am
Forum: Technical Support
Topic: no credentials were available
Replies: 1
Views: 8815

Re: no credentials were available

It's much better to post on the GitHub repo issues page for problems with the latest codes. It's more actively monitored. Your could try the UserAgentClient example. It shows how to set additional properties needed for authentication such as the realm see https://github.com/sipsorcery/sipsorcery/blo...
by Aaron
Sun Feb 16, 2020 8:29 am
Forum: Technical Support
Topic: switching Out Dial Plan on the fly
Replies: 2
Views: 10521

Re: switching Out Dial Plan on the fly

You can switch dialplans using a web service/REST call but it's unlikely that's the approach you want to take. The typical way to manage it is to use a prefix to indicate when you want to dial using a specific provider. For example in my own dialplan I have this block (note I haven't updated it for ...
by Aaron
Wed Feb 05, 2020 8:52 am
Forum: General VoIP Discussions
Topic: Voicemail providers
Replies: 2
Views: 13746

Re: Voicemail providers

Callcentric is the only free one I've ever come across.
by Aaron
Fri Jan 17, 2020 7:50 am
Forum: Technical Support
Topic: Changing from header
Replies: 1
Views: 3926

Re: Changing from header

When you say it's not showing up correctly on the softphone is the call being forwarded directly from the sipsorcery server to the softphone or is it sipsorcery->SIP Provider->softphone? If it's direct the sys.SetFromHeader should be working and the softphone should get whatever From header you set....
by Aaron
Thu Jan 16, 2020 7:38 am
Forum: Technical Support
Topic: Multiple dialplans
Replies: 8
Views: 9961

Re: Multiple dialplans

Any idea why its launching both dialplans?
If the SIP account you are calling has an Incoming Dialplan set then it will get invoked when you forward a call to it. If the SIP account is for a SIP device then most likely you don't need the Incoming Dialplan set and can remove it.
by Aaron
Tue Jan 14, 2020 8:26 am
Forum: Technical Support
Topic: Multiple dialplans
Replies: 8
Views: 9961

Re: Multiple dialplans

but it looks like my incoming SIP lines can have their own dedicated 'switch' dialplan. But I'm guessing that I need to ensure non of my defined keys share teh same names of the other dial plan right? SIP accounts have their incoming and outgoing dialplans set individually. That's a different mecha...