ProteanDev
ProteanDev

Reputation: 84

iOS PortSIP Initialize failure ErrorCode = -60098

I'm currently trying out PortSIP SDK for iOS to make a VoIP App. I'm not familiar with this error, anyone have an idea what this means?

Upvotes: 0

Views: 913

Answers (2)

Barry
Barry

Reputation: 21

I'm not sure if/how this relates to iOS, but on Android I learned that you also need to declare certain permissions:

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />

Upvotes: 0

Aleksandar
Aleksandar

Reputation: 76

That error means "failed to create the network transport". Ensure the localSipPort which you passed into SDK which is not already used by other apps.

Try to test with portSIP parameters:

Account1: UserName:507 Password:507 SIPServer:portsip.net ServerPort:5060

Account2: UserName:508 Password:508 SIPServer:portsip.net ServerPort:5060

Upvotes: 4

Related Questions