Changes between Version 6 and Version 7 of Python_SIP_Tutorial


Ignore:
Timestamp:
Jul 15, 2008 11:37:23 AM (16 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Python_SIP_Tutorial

    v6 v7  
    214214#!python 
    215215 
    216    call = acc.make_call("sip:buddy@pjsip.org") 
     216    try: 
     217        call = acc.make_call("sip:buddy@pjsip.org") 
     218 
     219    except pj.Error, e: 
     220        print "Error in making call:", e 
    217221 }}} 
    218222 
     
    264268 
    265269=== Presence and Instant Messaging === 
     270---- 
    266271 
    267272For a complete presence and instant messaging sample application, please see source:pjproject/trunk/pjsip-apps/src/python/samples/presence.py