Changes between Version 3 and Version 4 of Python_SIP/Hello_World


Ignore:
Timestamp:
Jul 24, 2008 2:16:17 PM (16 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Python_SIP/Hello_World

    v3 v4  
    77 
    88 
    9 == Simple Caller Application == #makecall 
     9== Simple Caller Application == #simplecall 
    1010 
    1111This 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. 
     
    8181 }}} 
    8282 
    83 Save the snippet above as '''simplecall.py'''. 
     83Save the snippet above as [source:pjproject/trunk/pjsip-apps/src/python/samples/simplecall.py simplecall.py]. 
    8484 
    8585Now 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: 
     
    107107}}} 
    108108 
     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