Android Question sip settings

raphipps2002

Active Member
Licensed User
Longtime User
I am having difficulty registering on my sip server with my app...

B4X:
If Sip.IsInitialized = False Then
      'Check if SIP and VOIP are supported.
      If Sip.IsSipSupported = False OR Sip.IsVoipSupported = False Then
        Log("Not supported.")
        ToastMessageShow("SIP not supported.", True)
      Else
        'Register with the VOIP service
        'Sip.Initialize2("SIP", SipText , SipPort)
        'Pwd generated by soho66
       
        'variations used are sip.soho66.co.uk, sip:sip.soho66.co.uk and sip.soho66.co.uk:8060

        Sip.Initialize2("SIP","soho66.co.uk","xxxxxxx")
       
        Sip.Register
   
     
      End If
  End If

I attached a setup guide from SOHO66 the host and have tried in my app the following variations of the Uri...but all i get is failed registration..

any ideas why this is so??

I get error code 9 and message = 0
 

Attachments

  • sipettings.jpg
    sipettings.jpg
    27 KB · Views: 170

Similar Threads

Top