Ignore:
Timestamp:
Oct 4, 2019 6:59:57 AM (5 years ago)
Author:
ming
Message:

Re #2210 (misc): Update JavaFX sample app

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/swig/java/sample2.java

    r5738 r6086  
    4646         
    4747        @Override 
    48         public void notifyRegState(pjsip_status_code code, String reason, int expiration) {} 
     48        public void notifyRegState(int code, String reason, long expiration) {} 
    4949         
    5050        @Override 
     
    8787                                vidWH.getHandle().setWindow(sample2.hwnd);                   
    8888                                try { 
    89                                         currentCall.vidWin.setWindow(vidWH);                     
     89                                        currentCall.vidWin.setWindow(vidWH); 
    9090                                } catch (Exception e) { 
    9191                                        System.out.println(e); 
    92                                 }                                
     92                                } 
    9393                        } 
    94                 }                
     94                } 
    9595        } 
    9696 
    9797        @Override 
    9898        public void notifyBuddyState(MyBuddy buddy) {}   
     99 
     100        @Override 
     101        public void notifyChangeNetwork() {} 
    99102} 
    100103 
     
    117120                        accCfg = new AccountConfig(); 
    118121                        accCfg.setIdUri("sip:localhost"); 
     122                        account = app.addAcc(accCfg); 
     123 
     124                        accCfg.setIdUri("sip:test1@pjsip.org"); 
     125                        AccountSipConfig sipCfg = accCfg.getSipConfig();                 
     126                        AuthCredInfoVector ciVec = sipCfg.getAuthCreds(); 
     127                        ciVec.add(new AuthCredInfo("Digest",  
     128                                        "*", 
     129                                        "test1", 
     130                                        0, 
     131                                        "test1")); 
     132 
     133                        StringVector proxy = sipCfg.getProxies(); 
     134                        proxy.add("sip:sip.pjsip.org;transport=tcp");                                                    
     135 
     136                        AccountRegConfig regCfg = accCfg.getRegConfig(); 
     137                        regCfg.setRegistrarUri("sip:pjsip.org"); 
     138 
    119139                        accCfg.getVideoConfig().setAutoTransmitOutgoing(true); 
    120140                        accCfg.getVideoConfig().setAutoShowIncoming(true);                         
     
    136156                        observer.check_call_deletion(); 
    137157                        try { 
    138                                 Thread.currentThread().sleep(50); 
     158                                Thread.sleep(50); 
    139159                        } catch (InterruptedException ie) { 
    140160                                break; 
Note: See TracChangeset for help on using the changeset viewer.