Changes between Version 3 and Version 4 of Python_SIP/Hello_World
- Timestamp:
- Jul 24, 2008 2:16:17 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python_SIP/Hello_World
v3 v4 7 7 8 8 9 == Simple Caller Application == # makecall9 == Simple Caller Application == #simplecall 10 10 11 11 This application will make call to a destination URI specified in the command line argument, and establish audio communication with remote party once the call is connected. … … 81 81 }}} 82 82 83 Save the snippet above as '''simplecall.py'''.83 Save the snippet above as [source:pjproject/trunk/pjsip-apps/src/python/samples/simplecall.py simplecall.py]. 84 84 85 85 Now you can call another softphone (such as [http://www.pjsip.org/pjsua.htm pjsua]) by specifying the SIP URI as command line argument. For example, if the other softphone is on "sip:192.168.0.15:5080", run the program as follows: … … 107 107 }}} 108 108 109 110 == More Call Samples == #call 111 112 * [source:pjproject/trunk/pjsip-apps/src/python/samples/call.py call.py]: sample application to make and receive incoming calls. 113 114 == Issues == #issues 115 116 * '''Authentication''': the call samples above are not equipped with any SIP authentication credentials, thus you cannot call URI which requires SIP authentication. Please follow the rest of this tutorial (especially the [wiki:Python_SIP/Accounts Account] page) to see how to put authentication credentials. 117