JDBC (SQL) not working in thread

I was surprised by a strange (bug?)
I had two programs that were implementing the Java Serial Port API, each interfaced to a specific instrument. I was asked to combine the two programs into one, run it on one workstation, and run it as a service. This is on an W2K machine and they want it to work even if no one is logged in.
Well, I started each class as a serial port listener and a runnable, thinking it might be best for each listener to have its own thread. That runs just fine. But, one of the instruments sends a lot of data, so once I had a buffer full of stuff to parse and upload (to Oracle), is started another processing thread to handle the data, and let the parent thread get back to listening to the serial port.
Well, I parsed the data just fine, but after I created the connection, created a statement, and then tried to execute a line of SQL, it just stopped, no exceptions, but no results. I keep a log of what is going on, and it looks like the thread just dies.
So, for experimenation, I changed the parent threads back to plain classes and created the instances of them, still leaving the processing piece as a thread. (The only draw back to this is that I cannot transmit from both instruments at the same time.) Well, the SQL worked fine, so I am wondering if there is a problem with the JDBC and threads, or inner threads?
Anyone have any suggestions?
Thanks,

As I understand it, your code does not work only when you run it as a service. Although I may well not understand it (for example I don't know what you think an "inner" thread is, and I don't understand your distinction between "class" and "thread", since everything runs in some thread or other in Java).
Is this correct? Have you managed to get the original (single instrument) code running as a service? My guess is that there's nothing wrong with Java, but there is some issue with running it as a service.

Similar Messages

  • JDBC control not work after upgrade application from workshop 8.1 to 9.2.3

    Hi,
    We upgraded application from workshop 8.1 to 9.2.3. After that, the JDBC control not work any more. We got the following exception:
    java.sql.SQLException: The transaction is no longer active - status: 'Committed'. No further JDBC access is allowed within this transaction.
    at weblogic.jdbc.wrapper.JTSConnection.checkIfRolledBack(JTSConnection.java:192)
    at weblogic.jdbc.wrapper.JTSConnection.checkConnection(JTSConnection.java:202)
    at weblogic.jdbc.wrapper.Connection.preInvocationHandler(Connection.java:87)
    at weblogic.jdbc.wrapper.Connection.getMetaData(Connection.java:435)
    at org.apache.beehive.controls.system.jdbc.parser.SqlStatement.createPreparedStatement(SqlStatement.java:128)
    at org.apache.beehive.controls.system.jdbc.JdbcControlImpl.execPreparedStatement(JdbcControlImpl.java:272)
    at com.bea.wlw.runtime.core.control.internal.JdbcControlImpl.invoke(JdbcControlImpl.java:136)
    at controls.SecurityBean.getUpdateDocPermission(SecurityBean.java:598)
    at security.SecurityManagerImpl.getUpdateDocPermission(SecurityManagerImpl.java:110)
    at security.SecurityManagerBean.getUpdateDocPermission(SecurityManagerBean.java:509)
    The control that throw the exception has "transactionattribute" annotation added automatically by upgrade wizard during upgrading. Related classed are as follows:
    @ControlInterface()
    public interface SecurityManager
    @TransactionAttribute(TransactionAttributeType.REQUIRED)
    boolean getUpdateDocPermission(java.lang.String userId);
    @ControlImplementation()
    public class SecurityManagerImpl implements SecurityManager, Serializable
    * @common:control
    @org.apache.beehive.controls.api.bean.Control()
    private controls.Security security;
    static final long serialVersionUID = 1L;
    * @common:operation
    public boolean getUpdateDocPermission(String userId)
    if ( security.getUpdateDocPermission(userId) > 0) {
    return true;
    else
    return false;
    @ControlExtension()
    @JdbcControl.ConnectionDataSource(jndiName = "EventDesk")
    public interface Security extends JdbcControl
    static final long serialVersionUID = 1L;
    * @jc:sql statement="select r.updateDoc from document_user u ,document_role r where u.login={userId} and u.roleId=r.roleId;"
    @JdbcControl.SQL(statement = "select r.updateDoc from document_user u ,document_role r where u.login={userId} and u.roleId=r.roleId;")
    int getUpdateDocPermission(String userId);
    Thanks for your help

    Hi. The issue is a level or two above JDBC. I suggest
    opening an official support case. It's probably a
    WLW issue.
    Joe

  • TP3 - Generic JDBC Seems Not Working - Connection Worked in TP2 but Not TP3

    I had a connection working in TP2 to a PosgreSQL database. I have done in TP3 exactly what I did in TP2 to set up the connection but the connection test fails listing the name of the driver.
    I put the JAR in jdev\lib, I added a class/library to the default project properties with the classpath listing the location of the JAR including the filename, then I created a new connection with the same driver name, user/password, and JDBC URL I used in TP2. None of this worked though. I even tried restarting JDeveloper.
    Any ideas on what I could be doing wrong or if something new needs to be done in TP3?
    On a side note, although I got the connection working to the PostgreSQL db working in TP2, JDeveloper was never able to find its tables like when creating an entity from a table for example. I know this is not an issue with the driver JAR because this works flawlessly in Netbeans 6.
    Thanks in advance for any help.
    KurzHome

    Hi CM and Chris,
    I have the exact same problem when I tried to create a connection to SQL Server 2005 using Generic JDBC. It worked well for TP2 but does not work for TP3. Further more if you create it anyway, you will get following message in testing:
    An error was encountered performing the requested operation:
    com.microsoft.sqlserver.jdbc.SQLServerDriver
    Vendor code 0.
    I tried to export the working connection from JDeveloper 10.1.2. and import it to TP3. I could not solved the problem.
    Then I export the SQL server connection from TP3. The connection is expressed as
    <Reference credentialStoreKey="yuwyuw" className="oracle.jdeveloper.db.adapter.DatabaseProvider" name="yuwyuw">
    <Factory className="oracle.jdeveloper.db.adapter.DatabaseProviderFactory"/>
    <RefAddresses>
    <StringRefAddr addrType="subtype">
    <Contents>thirdParty</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="user">
    <Contents>yuw</Contents>
    </StringRefAddr>
    <SecureRefAddr addrType="password"/>
    <StringRefAddr addrType="driver">
    <Contents>com.microsoft.sqlserver.jdbc.SQLServerDriver</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="DeployPassword">
    <Contents>false</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="customUrl">
    <Contents>jdbc:sqlserver://host:1433</Contents>
    </StringRefAddr>
    </RefAddresses>
    </Reference>
    It seems DatabaseProviderFactory could not create connection other than Oracle. BBut JDev10.1.2 does not use Factory class. I tested Driver and URL by a small program that created a connection using connection string. No problem at all.
    Now I have 2 questions:
    1)How can we access the source code to see what happens when we submit connection creation request?
    2)You mentioned that we can swap JVM version. But this can only be done on project level. Can we do it on IDE level, because IDE connection is not associated with any project.
    Thanks,
    wyuwyu

  • JDBC drivers not working in QA for multibye characters

    Hi,
    we have a problem with JDBC and deployed in DEV system and its works fine, but the same when we deply in QA its not working.
    the problem we are trying to use the simple select query from ORACLE DB.
    In ORACLE DB they converted the chenise char to English after that our JDBC drivers are not able to pick the multibite char.
    XI JDBC Adapter shows below error with a SELECT Query
    SELECT Query:SELECT * FROM APPS.ITEM_XI_V The Chinese character are converted to English and becomes multibye characters.
    Error:Error during conversion of query result to XML: java.sql.SQLException: Fail to convert between UTF8 and UCS2: failUTF8Conv
    Assumption is that the issue with older version of  ojdbc14.zip (JDBC Driver file)
    Reference:http://www.coderanch.com/t/299231/JDBC/java/UTF-conversion
    implement SAP Note 941317 in order to resolve the current issue.
    Note 941317 - XI / PI JDBC Adapter: Known Problems / Incompatibilities JDBC Driver Deployment. Refer to  SAP Note 831162
    after apply as per note for DEV system its works fine, but the same when we did for our QA system still the same error.
    Thanks,
    Venkat.

    Hi Gurus,
    Any idea where i am doing wrong.. in QA i am able to extract data with simple select statment with normal tables...
    Thanks,
    Venkat

  • Working in Sql, not working in Stored procedure

    Dear friends,
    I am puzzled about this strange working of Oracle , although I know that there is some problem with my code. I paste my code here. The delete statement is working properly in SQL Plus 8.0, but it is not working when I call this stored procedure from the Form.
    FUNCTION delete_record_treaty (
    p_treaty_id T_RIN_TREATY_MST.TRTY_ID_GV%TYPE, p_value VARCHAR2,p_block VARCHAR2 )
    RETURN BOOLEAN IS
    v_treaty_type varchar2(5);
    BEGIN
    v_treaty_type := substr(p_treaty_id,1,3);
    if p_block !='T_RIN_GRP_DTL' and p_block != 'T_RIN_XOLSLAB_DTL' and p_block!='T_RIN_PMTSCHD_DTL' then
    delete from T_RIN_TREATY_MST where TRTY_ID_GV=p_treaty_id ;
    commit;
    end if;
    if v_treaty_type = 'QTA' then
    delete from T_RIN_GRP_DTL where TRTY_ID_MV=p_treaty_id and T_RIN_GRP_DTL.ROWID = p_value;
    commit;
    elsif v_treaty_type = 'XOL' then
    delete from T_RIN_XOLSLAB_DTL where TRTY_ID_MV=p_treaty_id ;
    delete from T_RIN_PMTSCHD_DTL where TRTY_ID_MV=p_treaty_id ;
    elsif v_treaty_type = 'FAC' then
    delete from T_RIN_PMTSCHD_DTL where TRTY_ID_MV=p_treaty_id ;
    end if;
    RETURN(TRUE);
    END delete_record_treaty;
    Thanks in advance.
    All the paramaters that I pass, are correctly being passed to this stored procedure.
    null

    I solved it.One parameter I was passing it wrongly.
    Gee :D
    Subramanian V.

  • IChat video not working - new thread

    I have an iMac with 4.0.8 and a macbook pro with 5.0 on it. Both have the same issue. I am trying to chat with a friend who has an iMac also. We both get the same issue. If I dial her - it rings on her end, she says accept but then I get a message saying no response from her. Same thing happens the other way around. We never had a problem before. We have not changed our firewall settings on the computers or routers. The only change would be any iChat updates that have been downloaded. I checked the preferences (haven't changed them) and they look ok. We don't use iChat often so I can't remember if we have used it after the last update.

    I guess I have several questions.
    1. If I have not changed any firewall settings and it used to work - why do I have to 'fix' anything now?
    2. If the dialer rings on the receiving computer - doesn't that mean iChat isn't blocked?
    We are im'ing fine using iChat - it is the video not working.
    I don't know if there is port forwarding. I don't see anything anywhere that states DoS or SPI.
    I have Qwest dsl with a 2wire router 2701HG-D. The Qwest Firewall setting are the default secure ones and my OS X firewall was set up using info I got from Macworld Magazine. It all works for me and I did not have problems with iChat until today.
    This is all that appears before the Binary Images line:
    Date/Time: 2009-08-31 13:22:34.321 -0700
    OS Version: 10.5.8 (Build 9L30)
    Report Version: 4
    iChat Connection Log:
    2009-08-31 13:20:23 -0700: AVChat started with ID 2771893227.
    2009-08-31 13:20:23 -0700: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2009-08-31 13:20:23 -0700: 0x1cc1ad80: State change from AVChatNoState to AVChatStateInvited.
    2009-08-31 13:20:33 -0700: 0x1cc1ad80: State change from AVChatStateInvited to AVChatStateConnecting.
    2009-08-31 13:20:33 -0700: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2009-08-31 13:20:53 -0700: 0x1cc1ad80: State change from AVChatStateConnecting to AVChatStateEnded.
    2009-08-31 13:20:53 -0700: 0x1cc1ad80: Error -8 (Did not receive a response from 0x1cc1ad80.)
    2009-08-31 13:20:53 -0700: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2009-08-31 13:20:53 -0700: [email protected]: Error -8 (Did not receive a response from 0x1cc1ad80.)
    Video Conference Error Report:
    11.886916 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    13.887780 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    729.836792 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    731.838059 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    4920.034600 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    4922.035824 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    5571.802493 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    5573.803816 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    0.000000 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    0.300294 @SIP/Transport.c:347 type=2 (00000000/0)
    [INVITE sip:user@sip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    Max-Forwards: 70
    To: 0 <sip:user@sip:16402>
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 733
    [v=0
    o=beawhisenand 0 0 IN IP4 rip
    s=u1
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:4172078153
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2022387783
    0.300530 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    0.801295 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    1.309607 @SIP/Transport.c:347 type=2 (00000000/0)
    [INVITE sip:user@sip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    Max-Forwards: 70
    To: 0 <sip:user@sip:16402>
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 733
    [v=0
    o=beawhisenand 0 0 IN IP4 rip
    s=u1
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:4172078153
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2022387783
    1.309904 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    2.310237 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    4.310627 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    8.310891 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    9.878141 @Video Conference/VCInitiateConference.m:1703 type=2 (00000000/0)
    [Initiate Conference To User: u1 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    9.886122 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7c101e29710002ec
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=2057174596
    Call-ID: cdd9ce28-965e-11de-b3ee-d67323c54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    10.386447 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7c101e29710002ec
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=2057174596
    Call-ID: cdd9ce28-965e-11de-b3ee-d67323c54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    11.386723 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7c101e29710002ec
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=2057174596
    Call-ID: cdd9ce28-965e-11de-b3ee-d67323c54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    11.887344 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK240b2b5a78ab1094
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=1918250311
    Call-ID: cf0b2dbe-965e-11de-b3ee-b77d61ac4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    11.951360 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK42e4e649299d7dc2
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1425209130
    From: 0 <sip:user@sip:16402>;tag=1508259682
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    12.311300 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    12.387798 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK240b2b5a78ab1094
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=1918250311
    Call-ID: cf0b2dbe-965e-11de-b3ee-b77d61ac4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    12.451516 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK42e4e649299d7dc2
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1425209130
    From: 0 <sip:user@sip:16402>;tag=1508259682
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    13.388568 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK240b2b5a78ab1094
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=1918250311
    Call-ID: cf0b2dbe-965e-11de-b3ee-b77d61ac4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    13.451729 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK42e4e649299d7dc2
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1425209130
    From: 0 <sip:user@sip:16402>;tag=1508259682
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    14.261229 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 500 Internal Server Error
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    709.913291 @Video Conference/VCInitiateConference.m:1584 type=2 (00000000/0)
    [Connection Data for call id: 9 returns 1
    721.824530 @Video Conference/VCInitiateConference.m:1599 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    721.829743 @Video Conference/VCInitiateConference.m:1703 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    727.836757 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5362fe006ca0a1fb
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1442564897
    Call-ID: 79c9f806-9660-11de-b3ee-d51929964012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    728.337178 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5362fe006ca0a1fb
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1442564897
    Call-ID: 79c9f806-9660-11de-b3ee-d51929964012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    729.337610 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5362fe006ca0a1fb
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1442564897
    Call-ID: 79c9f806-9660-11de-b3ee-d51929964012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    729.837143 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK7510535a10bb0b36
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=792276808
    Call-ID: 7afb3564-9660-11de-b3ee-837950794012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    730.337502 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK7510535a10bb0b36
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=792276808
    Call-ID: 7afb3564-9660-11de-b3ee-837950794012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    731.337865 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK7510535a10bb0b36
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=792276808
    Call-ID: 7afb3564-9660-11de-b3ee-837950794012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    4902.071509 @Video Conference/VCInitiateConference.m:1584 type=2 (00000000/0)
    [Connection Data for call id: 11 returns 1
    4912.024096 @Video Conference/VCInitiateConference.m:1599 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    4912.026527 @Video Conference/VCInitiateConference.m:1703 type=2 (00000000/0)
    [Initiate Conference To User: u10 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    4918.034633 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK44bb78844fc721af
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=393564959
    Call-ID: 3b60597a-966a-11de-b3ee-a0430b004012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    4918.534977 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK44bb78844fc721af
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=393564959
    Call-ID: 3b60597a-966a-11de-b3ee-a0430b004012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    4919.535423 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK44bb78844fc721af
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=393564959
    Call-ID: 3b60597a-966a-11de-b3ee-a0430b004012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    4920.034917 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK1ba35786014c77fb
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=687241536
    Call-ID: 3c9193ae-966a-11de-b3ee-a0d80d784012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    4920.535275 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK1ba35786014c77fb
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=687241536
    Call-ID: 3c9193ae-966a-11de-b3ee-a0d80d784012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    4921.535639 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK1ba35786014c77fb
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=687241536
    Call-ID: 3c9193ae-966a-11de-b3ee-a0d80d784012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    5553.734316 @Video Conference/VCInitiateConference.m:1584 type=2 (00000000/0)
    [Connection Data for call id: 13 returns 1
    5563.737875 @Video Conference/VCInitiateConference.m:1599 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    5563.740451 @Video Conference/VCInitiateConference.m:1703 type=2 (00000000/0)
    [Initiate Conference To User: u12 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    5569.802451 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK51446e194f80ac92
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=400777038
    Call-ID: bfddc34e-966b-11de-b3ee-e6b36f264012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    5570.302882 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK51446e194f80ac92
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=400777038
    Call-ID: bfddc34e-966b-11de-b3ee-e6b36f264012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    5571.303269 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK51446e194f80ac92
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=400777038
    Call-ID: bfddc34e-966b-11de-b3ee-e6b36f264012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    5571.802916 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK251f7b0321d608dd
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=2137793200
    Call-ID: c10f0656-966b-11de-b3ee-f915ed3f4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    5572.303349 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK251f7b0321d608dd
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=2137793200
    Call-ID: c10f0656-966b-11de-b3ee-f915ed3f4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    5573.303626 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK251f7b0321d608dd
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=2137793200
    Call-ID: c10f0656-966b-11de-b3ee-f915ed3f4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    Video Conference User Report:
    731.904826 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    4922.104606 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    5573.923260 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    []

  • WHY DOES THIS SQL NOT WORK

    I have 4 statements.
    echo off
    plus80 / @z:\nesp1483_batch
    plus80 / @z:\nesp1484a_batch
    exit
    The first statement plus80 / @z:\nesp1484_batch inserts records into a table and creates a report and deletes the table.
    However the second statement plus80 / @z:\nesp1484a_batch is not working properly. I want it to insert records into a table, create a report and then delete the table but it is not working properly. It is hanging up on this statement.
    I need to say plus80 to get the program to execute properly.
    I have also tried sqlplus /@z:\nesp1484a_batch but this does not work either.
    What do I need to do to make the third statement to execute properly?

    I know that it is not working
    because the response time is slow and I have over 15 minutes
    and nothing is happening. How do you know it is not working as opposed to just working slow?
    Do you have any logging routines in your code? If you have, switch on them on and see what's happening. If not, now is a good time to think about including them...
    Cheers, APC

  • SQL+ not working: TNS-12560

    I just installed XE on WXP and although the web interface works fine I can't use SQL+
    Below is some information. This is very frustrating. I am an application developer; I switched from the full 10g to XE in the hope that I would no longer be wasting my time on those exasperating network problems and would be able to concentrater on developing instead but no such luck... Why is it asking too much that XE should work properly after installation? I have not changed anything beyond creating a couple of user accounts with the web interface. This is as virgin an installation as it gets.
    Any help would be greatly appreciated.
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 28-MAR-2006 03:58
    :14
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
    ction
    Start Date 23-MAR-2006 03:22:46
    Uptime 4 days 23 hr. 35 min. 29 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\product\10.2.0\server\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=wk1)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=
    HTTP)(Session=RAW))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XEXDB" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Service "XE_XPT" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Service "xe" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    The command completed successfully
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>lsnrctl services
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 28-MAR-2006 03:59
    :22
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    Service "XEXDB" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:18 refused:0 current:18 max:1002 state:ready
    DISPATCHER <machine: WK1, pid: 9740>
    (ADDRESS=(PROTOCOL=tcp)(HOST=wk1)(PORT=1729))
    Service "XE_XPT" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER
    Service "xe" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER
    The command completed successfully
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>tnsping xe
    TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 28-MAR-2
    006 04:18:03
    Copyright (c) 1997, 2005, Oracle. All rights reserved.
    Used parameter files:
    C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = wk1)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = XE)))
    OK (3750 msec)
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>sqlplus system/orcl as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Mar 28 04:00:49 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-12560: TNS:protocol adapter error
    Enter user-name:
    [killed with Ctrl-C]
    ===============================================================
    sqlnet.log is full of entries like this, one for each attempt:
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleorcl)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=orcl)(CID=(PROGRAM=C:\oraclexe\app\oracle\product\10.2.0\server\BIN\sqlplus.exe)(HOST=WK1)(USER=Privileged))))
    VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
    Time: 28-MAR-2006 03:32:14
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12560
    TNS-12560: TNS:protocol adapter error
    ns secondary err code: 0
    nt main err code: 530
    TNS-00530: Protocol adapter error
    nt secondary err code: 2
    nt OS err code: 0
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>type ..\network\ADMIN\sqlnet.ora
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>type ..\network\ADMIN\listener.ora
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (ADDRESS = (PROTOCOL = TCP)(HOST = wk1)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>type ..\network\ADMIN\tnsnames.ora
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = wk1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>
    ===============================================================
    The service called OracleXETNSListener is definitely running. Also, there is a firewall running on this box but its log does not report any blocked connection attempt from any Oracle-related process. I have allowed tnsping.exe, tnslsnr.exe and oracle.exe.

    Thanks a lot! That was indeed the problem: if I do 'sqlplus sys@xe as sysdba' I can
    connect. Trying to find where that orcl comes from, I did have ORACLE_SID set to orcl
    in my environment and I removed it; that did it: sqlplus can now connect even if I do not
    set the connect id. Maybe the installer could be enhanced to look for leftover Oracle-
    related env vars?
    However there is still some weirdness: the above refers to the sqlplus that comes with
    the server bundle but if I use the sqlplus from the client bundle I get "ORA-12154:
    TNS:could not resolve the connect identifier specified" when I specify the connect id
    and "ORA-12560: TNS:protocol adapter error" when I don't. sqlnet.log shows it is still
    using orcl as the SID. I don't really need the client anyway: only the jdbc jar, so I
    could just remove it but this is just weird...

  • SQL not working in 10.2.0.3

    The following select statement works fine in Oracle 9.2.0.8 and 10.2.0.1 versions , but it throws
    ORA-00904: T.A: invalid identifier error in Oracle 10.2.0.3 and Oracle 10.2.0.4 environments.
    SQL's:
    create table tmp (a varchar2(10));
    insert into tmp values ('outer_ref');
    commit;
    select * from tmp t where 'x'=(select 'x' from (select null from dual where 'outer_ref'=t.a));
    Other details:
    O/S : Windows XP Service Pack 3, 32 Bit.
    Database Installation : Enterprise edition
    We have some sql's in our application written in this manner.
    Is this a known issue or a bug in 10.2.0.3 ?
    Thanks.

    Take a look at [this |http://forums.oracle.com/forums/thread.jspa?messageID=2134151&#2134151] thread.
    Best regards
    Maxim

  • SQL not working in Multiselect prompt

    Hi all,
    I have restricted the results in Multiselect Prompt by giving the sql query.It is working fine but when i try to search for particular record in Multiselect it is not filtering the results by applying the query instead it is using the base query with no restrictions.
    Please help.

    I understand and I don't understand... So you have a dashboard prompt set to multi-select, yes? You have changed "Show" to "SQL Results" and added your "active products" filter, yes? Now with the prompt and report in the dashboard, you click on the ellipsis of the prompt and for example, you change "Match" to "begins with," type "A" and click on "Go" which then displays all the values that begin with "A," yes?
    Now you select those "A" products and click on the left arrow to bring them to the left pane, yes? Then you click "Ok" which closes the window and click on "OK" one more time to run the prompt, yes?
    Now you are saying that the report filters "all the products that start with 'A' both active and inactive, yes? And this is what I don't understand. The report should be filtered by the specific "A" starting products you selected in the prompts, not "all 'A' starting values" regardless of whether they are active or inactive. If you have "Is Prompted" on the appropriate column, you should get only those values from the prompt, nothing more.
    How are you getting "all values that start with 'A'"? Please explain.

  • Not Like in SQL not working

    Trying to use not like in the following sql:
    select *
    from respondents
    where sample_id = 00000001
    and email not like '%cccp.org%';
    Right now, I'm getting back 51 rows, but 1/2 of the rows have the wrong domain in the email fields, and I need to filter all of the wrong ones, except cccp.org.
    There was a thread,
    NOT LIKE
    And I tried that, but not getting the correct results.
    thanks

    Given a simple table like:
    SQL> SELECT * FROM t;
    EMAIL
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected] WHERE email NOT LIKE '%cccp.org%' will return:
    SQL> SELECT email FROM t
      2  WHERE email NOT LIKE '%cccp.org%';
    EMAIL
    [email protected]
    [email protected]
    [email protected] is exactly what you asked for. However, this statement "1/2 of them have the wrong email domain, like .edu and .com email domains" seems to contradict the predicate. Do you really want something more like:
    SQL> SELECT email FROM t
      2  WHERE email LIKE '%cccp.org%';
    EMAIL
    [email protected]
    [email protected]
    [email protected]
    John

  • P/SQL Not Working in SQL Developer

    The following P/SQL seems to work fine in SQL Plus but does not run in SQL Developer
    insert /*+ append */ into upl_exclude_claims
    (select /*+ ordered parallel(s,4) parallel(claim,4) */
    /*+ use_hash(s,claim) no_index(claim, xbm_clm_recip) */
    s.recip,
    s.month_1st_day
    from lrx.upl s,
    mcd.fact claim;
    Thanks

    911105 wrote:
    The following P/SQL seems to work fine in SQL Plus but does not run in SQL Developer
    insert /*+ append */ into upl_exclude_claims
    (select /*+ ordered parallel(s,4) parallel(claim,4) */
    /*+ use_hash(s,claim) no_index(claim, xbm_clm_recip) */
    s.recip,
    s.month_1st_day
    from lrx.upl s,
    mcd.fact claim;
    ThanksWhat happens when you run it? Do you get an error or does nothing happen?
    If you get an error post the message
    Why didn't the first answer I did to this question post???

  • Embedded PL/SQL not working.

    I have my application running on apex 3.2 two days ago. But now i am not able to access the APEX using URL (http://korvac-salman.korvac-qb.com:8080/apex/f?p=4550:10:3318553606004853) for my application and (http://korvac-salman.korvac-qb.com:8080) for the Apex main page. I have also reinstalled the APEX on my machine again in 11.2 database on windows and still i am not able to access the URL http://korvac-salman.korvac-qb.com:8080. I am using embedded PL/SQL gateway and using port 8080 as see by the following query
    SALMAN11.LOCAL.COM$SYS> SELECT DBMS_XDB.GETHTTPPORT FROM DUAL;
    GETHTTPPORT
           8080Remember that this URL was running fine two days ago. What could have gone wrong and how to make my APEX work again?
    Thanks
    Salman

    All accounts related to APEX are open and unlocked
    USERNAME                       ACCOUNT_STATUS
    SYSTEM                         OPEN
    SYS                            OPEN
    APEX_PUBLIC_USER               OPEN
    RMAN                           OPEN
    APEX_030200                    OPEN
    ANONYMOUS                      OPEN
    FLOWS_FILES                    OPEN
    DBADMIN                        OPEN
    XS$NULL                        EXPIRED & LOCKED
    ORACLE_OCM                     EXPIRED & LOCKED
    DIP                            EXPIRED & LOCKED
    USERNAME                       ACCOUNT_STATUS
    OUTLN                          EXPIRED & LOCKED
    DBSNMP                         EXPIRED & LOCKED
    APPQOSSYS                      EXPIRED & LOCKED
    XDB                            EXPIRED & LOCKED
    CTXSYS                         EXPIRED & LOCKED
    MDSYS                          EXPIRED & LOCKED
    HR                             EXPIRED & LOCKED I can login using these users and i don't see any message of password expiry. One thing is that My computer is using dynamic IP from DHCP and does not have static IP, could this be an issue?
    Salman

  • JDBC UPDATE_INSERT not working

    Hi Experts,
    I have an issue with the JDBC Update_Insert action with the SQL database.
    When I tried with the Update function and Insert Function seperately the data was updating in the database fine.
    When I use the UPDATE_INSERT action with the same data getting below error.
    Error while parsing or executing XML-SQL document:
    Error processing request in sax parser: Error when executing statement for
    table/stored proc. 'CUSTMAST' (structure 'Statement'):
    com.microsoft.sqlserver.jdbc.SQLServerException: String or binary data would be
    truncated.
    And the query that was running in the background was as follows
    10.04.2014 16:34:45
    Information
    JDBC
    Adapter Receiver processing started, required QoS ExactlyOnce
    10.04.2014 16:34:45
    Information
    JDBC
    Adapter Receiver Channel CC_Laserfische_FetchDate:  processing started; party *
    / service SYS_DB_BIS.
    10.04.2014 16:34:45
    Information
    UPDATE CUSTMAST SET COMP_CODE='ESSR', CUST_ID='20035780',
    CUST_NAME='PRAVEEN', CITY='HYD', PINCODE='500060', COUNTRY='IN',
    EMAIL='[email protected]', REC_INSR_DATETIME='2014-04-10 16:34:45' WHERE
    (COMP_CODE='ESSR' AND CUST_ID='20035780')
    10.04.2014 16:34:45
    Information
    INSERT INTO  CUSTMAST (COMP_CODE, CUST_ID, CUST_NAME, CITY, PINCODE,
    COUNTRY, EMAIL, REC_INSR_DATETIME) VALUES ('ESSR', '20035780', 'PRAVEEN', 'HYD',
    '500060', 'IN', '[email protected]', '2014-04-10 16:34:45')
    When I try this query manually in the database it is working fine but when I trigger the data from SAP PI 7.1 we are facing error as mentioned above.
    Please help me with this.
    Thanks in advance.

    Hi Praveen,
    Error "String or binary data would be truncated." comes when the incoming data length is more than the length specified in Database.
    Cross check the lengths in Database with your data.
    Reagrds,
    Sudhasree

  • SQL | not working anymore | BITMAP CONVERSION

    * I am a beginner at SQL tuning. Advise/pointers required *
    I have two similar schemas, A and B. Major difference is B has much more data than A.
    My query Q has always worked on both until last week.
    Note: I have no BITMAP index in both schemas
    Query Q does not return result on schema B any more, it taking over 1 hour, still no result.
    I have studies the explain for query Q on both schema and notice that they are very different.
    Major difference is I see, there are too many ‘BITMAP CONVERSION FROM ROWIDS’ on schema B. e.g. below
    | 15 | NESTED LOOPS | | 4483 | 227K| 1162 |
    |* 16 | INDEX RANGE SCAN | COMPM_ELE_PERF1 | 4483 | 80694 | 22 |
    | 17 | BITMAP CONVERSION TO ROWIDS | | | | |
    | 18 | BITMAP AND | | | | |
    | 19 | BITMAP CONVERSION FROM ROWIDS| | | | |
    |* 20 | INDEX RANGE SCAN | TABLE_A_ROOT_X3 | 1 | | |
    | 21 | BITMAP CONVERSION FROM ROWIDS| | | | |
    |* 22 | INDEX RANGE SCAN | TABLE_A_ROOT_X1 | 1 | | 537 |
    What is the best fix:
    •     Rewrite the Query (advise)
    •     Add hints (please provide sample code)
    •     Change db config (please provide any know config change)
    Thanks

    I believe you have B Tree indexes and that the optimiser is choosing a plan which will convert the rows from B Tree form into Bitmap form such that it can perform an AND operation to get the required results...so you don't physically have bitmap indexes but its kind of creating them in memory on the fly by using the content of the B Tree indexes.
    Without much more information as to the plan and statistics on the tables/indexes/init.ora settings etc... I can't advise why its choosing this plan or why this plan takes so long....lets start with asking what has changed since it last ran quickly ? That's likely to be the problem.
    If you want to rule out the indexes as per the previous post then just use a hint (NO_INDEX) and the FULL hints on the tables....
    More information please....
    Cheers
    Jeff

Maybe you are looking for

  • HT204400 how to connect ipad to apple tv

    Not able to connect my Ipad 2 with my Apple TV. I am using Wifi network at home from E-Mobile

  • Passing parameter from reports to form - Urgent

    Hi , I am calling a report (2.5) from a form using RUN_PRODUCT. I would like to know if there is any way to do the following. (a) Return a value from reports to calling form. For ex. I would like to know the last Item name (assuming the reports print

  • Stop email every time someone adds event to shared calendar?

    I have searched high and low for a solution to this, but can't find it anywhere. I share an iCal calendar with someone via iCloud. We both have read/write priveleges, but he created the calendar. In the "Get Info" for this calendar, I have Ignore Ale

  • My servlets not found the EJB

    Hi, I have a Servlet with the following code: Hashtable env = new Hashtable(); env.put (Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory"); env.put(Context.SECURITY_PRINCIPAL, "admin"); env.put(Context.SECURITY_CREDENTIALS, "ad

  • CE - Turning off caching

    I have a CE510 and I also run SmartFilter. To a degree the caching has been more problems than what it is worth. I am constantly plagued by users having problems with forms, search sites, redirects, etc.... I would like to turn off caching! I will be