Making a rmi call over ipv6

hi,
i'm making a rmi call to a server on a ipv6 enabled machine.
when i use the host name, it works fine.
but when i use the ip address, it throws me a timeout exception
the url value is
*java.naming.provider.url=jnp://[fe80::216:72ff:fe3c:21gf]:19014*
javax.naming.CommunicationException: Receive timed out [Root exception is java.net.SocketTimeoutException: Receive timed out]
at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1058)
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1127)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:478)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:471)
at javax.naming.InitialContext.lookup(InitialContext.java:351)
at mytest.RMIClient.runBPDocWait(RMIClient.java:117)
at mytest.RMIClient.main(RMIClient.java:57)
Caused by: java.net.SocketTimeoutException: Receive timed out
at java.net.PlainDatagramSocketImpl.receive0(Native Method)
at java.net.PlainDatagramSocketImpl.receive(PlainDatagramSocketImpl.java:136)
at java.net.DatagramSocket.receive(DatagramSocket.java:712)
at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1038)
... 6 more
but this works fine if i give
java.naming.provider.url=jnp://hostname:19014
is there any properties i need to set to make it work.

is anyone facing such scenario with jboss?

Similar Messages

  • How to intercept RMI calls over JRMP?

    Hi,
    I would like intercept calls over RMI/JRMP to pass contextual data between client and server. I was able to do it for IIOP using Portable Interceptor but could not find any solution for JRMP.
    Is there any other way to implicitly pass data between client and server?
    Thanks,
    Kapil

    Not in JRMP. See JERI in the Jini project for an extensible protocol.
    If you want full-strength RMI proxying see http://www.rmiproxy.com and contact me via the links there for more information on recently-developed products that address this need.
    Esmond Pitt

  • Hang of RMI call when LAN connection removed

    I have a client server application with comms using RMI across a TCP/IP LAN. We are in test at the moment and one of the tests is to ensure that when the LAN connection is removed, the client application handles it correctly.
    We have discovered that if we pull the LAN whilst an RMI call is in progress, the call never returns, even if we subsequently plug the LAN back in. Why should this be? I would have expected a RemoteException as soon as I pull the LAN out. How come the thread gets deadlocked?
    Note that we are running JRE 1.2 on the client (they are soon to be updated but it's 1400 remote, unattended sites so it's an expensive process to update to a recent JRE).
    Thanks
    Mat

    Thanks ejp - couple of dollars coming your way. Be a couple more if you (or anyone else) can help further.
    Firstly, how would I set this property in the code?
    Secondly, would it be set in the client or the factory (yes we do have one)? If it's in the factory, will that help me from the client side (that's where I need it to work). I looked up the responseTimeout property and it looks like this is more for the server to close incoming connections. The problem I have is on the client side - I need the client (i.e. that is making the RMI call via an exported remote object) to be able to kill off a call that has going too long (for instance because it can't detect the closed TCP connection).
    Maybe I've misunderstood the documentation I've found but that's how I read it.
    Thanks again!
    Mat

  • Calling over WiFi

    Do BT antcipate any introduction of a "calling over WiFi" app?
    EE are introducing a seamless approach in very selected phones running EE firmware only. However I prefer Three's app approach and being able to select which AP is authorised for WiFi calling and works pretty well. Never got on with O2's TuGo!

    The free Zoiper app is pretty useful.  It's a VOIP client that runs in the background on your cellphone.  It connects VOIP calls over whatever physical network is available at the time. Whether GPRS, UMTS, HSPA, LTE, or 802.11, including BTWiFi hotspots.
    Direct Inward Dialling (DID) telephone numbers for VOIP are also available for free from certain VOIP providers. The Zoiper app is then configured to accept inbound calls to those DID numbers.   The Zoiper client can actually handle multiple SIP accounts. Useful if you're abroad, for avoiding roaming charges, and for making low-cost domestic or international calls (i.e. least-cost-routing).
    By shopping around for VOIP providers, making calls to geographical numbers in the UK, USA, and many other countries can be virtually free, as well as free to US mobiles.  Those calls that are still charged, are generally minimal in cost.
    With the maturity of packet-switched VOIP calling -- and the availability of multiple physical networks to carry the underlying connection -- making a voice-call over the traditional cellphone has surely had its day.

  • Connection timed out when making RMI call

    Hello,
    I am using a combination of Spring Remoting and Scheduling with Quartz Timer. Both are using RMI as a communication stack. The RMI server is located in sydney while the client is located in the US. This incurs large network lag which causes my RMI method calls to timeout. I am able to do a lookup on the RMI object and receive a stub reference to it with no problem but as soon as I try to invoke a remote method on that stub it eventually times out.
    Thinking it was truly a timeout issue I implemented a Custom socket factory for RMI using RMISocketFactory.setSocketFactory(new TimeoutSocketFactory(120000));Here is the custom TimeoutSocketFactory:
    public class TimeoutSocketFactory extends RMISocketFactory {
            private int timeout;
            private static final Logger log = Logger.getLogger(TimeoutSocketFactory.class);
            public TimeoutSocketFactory(int timeout) {
                this.timeout = timeout;
            public Socket createSocket(String host, int port) throws IOException {
                log.debug("Creating timeout socket with value - " + timeout);
                Socket ret = getDefaultSocketFactory().createSocket(host, port);
                ret.setSoTimeout(timeout);
                return ret;
            public ServerSocket createServerSocket(int port) throws IOException {
                ServerSocket ss = getDefaultSocketFactory().createServerSocket(port);
                ss.setSoTimeout(timeout);
                return ss;
    }I implemented the custom socket factory both on the RMI server and on the RMI client. This had no effect on the time outs that occured when trying to make an RMI call to the server even though the sockets were being built by this custom class (have logging in place).
    Is there something else I need to do to increase the timeout period? And how do I know if it's a server or a client issue?
    Thanks,
    Anthony Bargnesi
    [Exception StackTrace]
    java.rmi.ConnectException: Connection refused to host: 172.16.10.97; nested exception is:
         java.net.ConnectException: Connection timed out: connect
         at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
         at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185)
         at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:94)
         at org.springframework.remoting.rmi.RmiInvocationWrapper_Stub.invoke(Unknown Source)
         at com.aquent.rmi.test.RMIClient.connectService(RMIClient.java:46)
         at com.aquent.rmi.test.RMIClient.main(RMIClient.java:81)
    Caused by: java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
         at java.net.Socket.connect(Socket.java:507)
         at java.net.Socket.connect(Socket.java:457)
         at java.net.Socket.<init>(Socket.java:365)
         at java.net.Socket.<init>(Socket.java:178)
         at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirectSocketFactory.java:22)
         at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMasterSocketFactory.java:128)
         at com.aquent.rmi.test.TimeoutFactory.createSocket(TimeoutFactory.java:21)
         at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)

    Well this is a connect timeout, not a read timeout, so it has nothing to do with your socket factory, and your socket factory won't help. It's a connectivity issue. Can you ping that host from the client? Can you telnet to port 7?
    In fact no socket factory will help because there is no way of increasing the connect timeout beyond the default: you can only reduce it.

  • Branch phone no audio when making outbound PSTN call - inbound and On-Net calls are good

    I am trying a new setup. There are no other phones on branch A configured with CUCM so there is no comparison. I setup another phone in Branch B for comparison.
    Scenario:
    CUCM (ver9) in Main site
    Main Site and Branch A site has VPN for WAN connectivity. 
    Main Site and Branch B site has VPN for WAN connectivity
    Branch A phone is registered to Main site CUCM and configured to use same settings as Branch B phone. Branch B phone has no issues at all
    Branch A no audio when making PSTN outbound call
    Branch A audio is good when receiving INbound PSTN call and inbound/outbound On-Net call
    I am not sure if it is a routing issue or something else. Below is an excerpt from the RTM logs which is attached. I believe issue is on this part after call connects where it shows media error but not sure what to do to correct it.  Assuming Firewall is not an issue. If we cant find out what is wrong, i will start looking at the firewall.
    called number : 0016326635801
    calling number: 4168
    Phone IP  : 10.100.3.29
    Main Site Gateway IP : 10.130.3.9 / H323
    CUCM : 10.130.3.115/116
    =========================================================================================================
    57315658.000 |22:32:55.911 |SdlSig   |CcAlertReq                             |outgoing_call_proceeding3      |StationCdpc(3,100,59,74928)      |StationD(3,100,58,2238)          |3,100,13,119955.3^10.130.3.9^*           |[R:N-H:0,N:1,L:0,V:0,Z:0,D:0] CI=60724230 CI.branch=0 FDataType=0opId=0ssType=0 SsKey=0invokeId=0resultExp=Fbpda=F pi.piid=30 pi.l=2 pi2.piid=30 pi2.l=0 pi3.piid=30 pi3.l=0IpAddrMode=0 ipAddrType=0 ipv4=0.0.0.0:0 ctiActive=F ctiFarEndDev=2 ctiCMId=3 media=2 lPart=d8997e28-66b6-7783-a5d6-8f46ef5da368 lPatt=4168 lModNum=tn=0npi=0ti=1nd=4168pi=1si1 lName=locale: 1 Name: India Test UnicodeName: India Test pi: 1 cName=locale: 1 Name:  UnicodeName:  pi: 0 cn:tn=0npi=0ti=1nd=80016326635801pi=0si1 cVMbox= localPatternUsage=2 connectedPatternUsage=5 lCnPart=e769cfa2-b6d1-b061-1b87-a7658c93fe72 lCnPatt=8.001! rn:tn=0npi=0ti=1nd=80016326635801pi=0si1 lLRPart=e769cfa2-b6d1-b061-1b87-a7658c93fe72 lLRPatt=8.001! lOCdpnPart=e769cfa2-b6d1-b061-1b87-a7658c93fe72 lOCdpnPatt=8.001! oCdpn:tn=0npi=0ti=1nd=80016326635801pi=0si1 oRFR =0 lBridgePartID= lCnBridgePartID= DevCEPN=b5ecff4d-f135-76cd-34a3-6e8adb746d1e lineCEPN=ce6c846c-e5d4-214d-8880-68250ba32103 CnDevCEPN=5265beb5-b11c-6218-5580-48cabc44d380 lrnCEPN=183b0e69-399b-9bd6-a49f-48a4ee886155 oCdpnCEPN=183b0e69-399b-9bd6-a49f-48a4ee886155 lHPMemCEPN= cHPMemCEPN=Supp DTMF=1DTMF Cfg=1DTMF Payload=0 isOffNetDev=T protected=1 geolocInfo={geolocPkid=, filterPkid=, geolocVal=, devType=3} locPkid= locName= deductBW=F fateShareId= videoTrafficClass=0TransparentData=null CanSupportSIPTandN=false TransId=0 AllowBitMask=0x0 UserAgentOrServer= OrigDDName=locale: 1 Name:  UnicodeName:  pi: 0 mCallerId= mCallerName= ignoreEarlyMedia=F
    57315659.000 |22:32:55.911 |SdlSig   |CcNotifyReq                            |call_delivered4                |StationCdpc(3,100,59,74928)      |StationD(3,100,58,2238)          |3,100,13,119955.4^10.130.3.9^*           |[R:N-H:0,N:5,L:0,V:0,Z:0,D:0] CI=60724230 CI.branch=0  lPart=d8997e28-66b6-7783-a5d6-8f46ef5da368 lPatt=4168 lModNum=tn=0npi=0ti=1nd=4168pi=1si1 lName=locale: 1 Name: India Test UnicodeName: India Test pi: 1 cName=locale: 1 Name:  UnicodeName:  pi: 0 cn:tn=0npi=0ti=1nd=0016326635801pi=1si0 cVMbox= localPatternUsage=2 connectedPatternUsage=5 lCnPart=e769cfa2-b6d1-b061-1b87-a7658c93fe72 lCnPatt=8.001! rn:tn=0npi=0ti=1nd=80016326635801pi=0si1 lLRPart=e769cfa2-b6d1-b061-1b87-a7658c93fe72 lLRPatt=8.001! lOCdpnPart=e769cfa2-b6d1-b061-1b87-a7658c93fe72 lOCdpnPatt=8.001! oCdpn:tn=0npi=0ti=1nd=80016326635801pi=0si1 oRFR =0 lBridgePartID= lCnBridgePartID= DevCEPN=b5ecff4d-f135-76cd-34a3-6e8adb746d1e lineCEPN=ce6c846c-e5d4-214d-8880-68250ba32103 CnDevCEPN=5265beb5-b11c-6218-5580-48cabc44d380 lrnCEPN=183b0e69-399b-9bd6-a49f-48a4ee886155 oCdpnCEPN=183b0e69-399b-9bd6-a49f-48a4ee886155 lHPMemCEPN= cHPMemCEPN= onBehalf= whichSide=1 holdFlag=0 notifyMsg=locale: 1 Name:  UnicodeName:  promptMsg=locale: 1 Name:  UnicodeName:  apply Instr=0 s.sv=0 promptMsg.userLocale=1 cgDevName=SEP64D989C258FC ctiActive=F ctiFarEndDev=2 ctiCCMId=3 ctiEvt.evtType=0 ctiEvt.transId=0 ctiEvt.ED.succ=F ctiEvt.PD.ParkPart= secureStatus=(F,0) callState=4 media=1 bitMask=80800000 Supp DTMF=1DTMF Cfg=1DTMF Payload=0 notifiedDName= connType=0 connStatus=0newPL=5newPLDmn=0 networkDomain=suppressMOH=F triggerByJoin=F NotifInd= ni.niid=39 ni.l=0 ni.nnd=0deviceCepn= partitionSearchSpace= geolocInfo=null locPkid= locName= deductBW=F fateShareId= videoTrafficClass=0 dtmMcNodeId=0 dtmCurrentCi=0 isOffNetDevice=T ignCntH=F cmDeviceType=7 ssCause=0TransparentData=null CanSupportSIPTandN=false TransId=0 AllowBitMask=0x0 UserAgentOrServer= OrigDDName=locale: 1 Name:  UnicodeName:  pi: 0 mCallerId= mCallerName= FDataType=0opId=0ssType=0 SsKey=0invokeId=0resultExp=Fbpda=F mobilityEventType=0 CallInstanceNumber=0
    57315660.000 |22:32:55.911 |SdlSig   |StationOutputCallState                 |restart0                       |StationD(3,100,58,2238)          |StationCdpc(3,100,59,74928)      |3,100,13,119955.3^10.130.3.9^*           |[R:N-H:0,N:5,L:0,V:0,Z:0,D:0] State=3 privacy=0 Line=1 CI=60724230 SCCP P-level=4 P-Domain=0
    57315660.001 |22:32:55.911 |AppInfo  |StationD:    (0002238) CallState callState=3 lineInstance=1 callReference=60724230 privacy=0 sccp_precedenceLv=4 precedenceDm=0
    57315661.000 |22:32:55.911 |SdlSig   |StationOutputSelectSoftKeys            |restart0                       |StationD(3,100,58,2238)          |StationCdpc(3,100,59,74928)      |3,100,13,119955.3^10.130.3.9^*           |[R:N-H:0,N:4,L:0,V:0,Z:0,D:0] Line=1 CI=60724230 SKIndex=8 Mask=ffffffff
    57315661.001 |22:32:55.911 |AppInfo  |StationD:    (0002238) SelectSoftKeys instance=1 reference=60724230 softKeySetIndex=8 validKeyMask=ffffffff.
    57315662.000 |22:32:55.911 |SdlSig   |StationOutputDisplayPromptStatus       |restart0                       |StationD(3,100,58,2238)          |StationCdpc(3,100,59,74928)      |3,100,13,119955.3^10.130.3.9^*           |[R:N-H:0,N:3,L:0,V:0,Z:0,D:0] TimeOut=0 Status= UnicodeStatus= Line=1 CI=60724230
    57315662.001 |22:32:55.911 |AppInfo  |StationD:    (0002238) DisplayPromptStatus timeOut=0 Status='' content='Ring Out' line=1 CI=60724230 ver=85720016.
    57315663.000 |22:32:55.911 |SdlSig   |StationOutputCallInfo                  |restart0                       |StationD(3,100,58,2238)          |StationCdpc(3,100,59,74928)      |3,100,13,119955.3^10.130.3.9^*           |[R:N-H:0,N:2,L:0,V:0,Z:0,D:0] cdpn="80016326635801" cdpnVMB="" cdpnParty="locale: 1 Name:  UnicodeName:  pi: 0" cgpn="4168" cgpnVMB="" cgpnParty="locale: 1 Name: India Test UnicodeName: India Test pi: 1" oCdpn="80016326635801" oCdpnVMb="" oCdpnParty="locale: 1 Name:  UnicodeName:  pi: 0" OCdpnReason="0" lCdpn="80016326635801" lCdpnVMb="" lCdpnParty="locale: 1 Name:  UnicodeName:  pi: 0" lCdpnReason="0" line="1" CI="60724230" callInstance="1" callType="2" CallSecurityStatusType="0" restrictionBits="0" huntPilot="" huntPilotParty="locale: 1 Name:  UnicodeName:  pi: 0"
    57315663.001 |22:32:55.911 |AppInfo  |StationD:    (0002238) (3,100,13,119947) CallInfo callingPartyName='India Test' callingParty=4168 cgpnVoiceMailbox= alternateCallingParty=   calledPartyName='' calledParty=80016326635801 cdpnVoiceMailbox= originalCalledPartyName='' originalCalledParty=80016326635801 originalCdpnVoiceMailbox= originalCdpnRedirectReason=0 lastRedirectingPartyName='' lastRedirectingParty=80016326635801 lastRedirectingVoiceMailbox= lastRedirectingReason=0 callType=2(OutBound) lineInstance=1 callReference=60724230. version: 85720016
    57315664.000 |22:32:55.911 |SdlSig   |DSetCallState                          |restart0                       |StationD(3,100,58,2238)          |StationCdpc(3,100,59,74928)      |3,100,13,119955.3^10.130.3.9^*           |[R:N-H:0,N:1,L:0,V:0,Z:0,D:0] CallState = call_delivered4
    57315664.001 |22:32:55.911 |AppInfo  |StationD:    (0002238) DEBUG- star_DSetCallState(7) State of cdpc(74928) is 6.
    57315665.000 |22:32:55.911 |SdlSig   |StationOutputCallInfo                  |restart0                       |StationD(3,100,58,2238)          |StationCdpc(3,100,59,74928)      |3,100,13,119955.4^10.130.3.9^*           |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] cdpn="0016326635801" cdpnVMB="" cdpnParty="locale: 1 Name:  UnicodeName:  pi: 0" cgpn="4168" cgpnVMB="" cgpnParty="locale: 1 Name: India Test UnicodeName: India Test pi: 1" oCdpn="80016326635801" oCdpnVMb="" oCdpnParty="locale: 1 Name:  UnicodeName:  pi: 0" OCdpnReason="0" lCdpn="80016326635801" lCdpnVMb="" lCdpnParty="locale: 1 Name:  UnicodeName:  pi: 0" lCdpnReason="0" line="1" CI="60724230" callInstance="1" callType="2" CallSecurityStatusType="0" restrictionBits="0" huntPilot="" huntPilotParty="locale: 1 Name:  UnicodeName:  pi: 0"
    57315665.001 |22:32:55.911 |AppInfo  |StationD:    (0002238) (3,100,13,119947) CallInfo callingPartyName='India Test' callingParty=4168 cgpnVoiceMailbox= alternateCallingParty=   calledPartyName='' calledParty=0016326635801 cdpnVoiceMailbox= originalCalledPartyName='' originalCalledParty=80016326635801 originalCdpnVoiceMailbox= originalCdpnRedirectReason=0 lastRedirectingPartyName='' lastRedirectingParty=80016326635801 lastRedirectingVoiceMailbox= lastRedirectingReason=0 callType=2(OutBound) lineInstance=1 callReference=60724230. version: 85720016
    57315666.000 |22:32:55.911 |Created  |                                       |                               |SdlTCPConnection(3,100,13,119956) |SdlTCPConnector(3,100,12,106644)                                                             |                                         |NumOfCurrentInstances: 101
    57315667.000 |22:32:55.911 |Stopping |                                       |                               |SdlTCPConnector(3,100,12,106644)                                                             |SdlTCPConnector(3,100,12,106644)                                                             |                                         |NumOfCurrentInstances: 1
    57315668.000 |22:32:55.912 |SdlSig   |H245TcpConnectionInfo                  |waitForSdlRsp                  |TranslateAndTransport(3,100,21,53370) |H245Handler(3,100,29,1)          |3,100,12,106644.1^*^*                    |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] 
    57315668.001 |22:32:55.912 |AppInfo  |TranslateAndTransport(53370)::waitForSdlRsp_H245TcpConnectionInfo - received H245TcpConnectionInfo from H245Handler
    57315669.000 |22:32:55.912 |SdlSig   |TtControlChannelEstablished            |waitForTransportEstablishment  |H245SessionManager(3,100,28,53370) |TranslateAndTransport(3,100,21,53370) |3,100,12,106644.1^*^*                    |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] 
    57315670.000 |22:32:55.915 |SdlSig   |SdlDataInd                             |wait                           |H245Handler(3,100,29,1)          |SdlTCPConnection(3,100,13,119956) |3,100,13,119956.2^*^*                    |*TraceFlagOverrode
    57315670.001 |22:32:55.915 |AppInfo  |H245ASN - TtPid=(53370) [0xb42276e0 1964 bytes] -Incoming #455653 -value MultimediaSystemControlMessage ::= request : terminalCapabilitySet : 
          sequenceNumber 1,
          protocolIdentifier { 0 0 8 245 0 7 },
          multiplexCapability h2250Capability : 
              maximumAudioDelayJitter 20,
              receiveMultipointCapability 
                multicastCapability FALSE,
                multiUniCastConference FALSE,
                mediaDistributionCapability 
                    centralizedControl FALSE,
                    distributedControl FALSE,
                    centralizedAudio FALSE,
                    distributedAudio FALSE,
                    centralizedVideo FALSE,
                    distributedVideo FALSE
              transmitMultipointCapability 
                multicastCapability FALSE,
                multiUniCastConference FALSE,
                mediaDistributionCapability 
                    centralizedControl FALSE,
                    distributedControl FALSE,
                    centralizedAudio FALSE,
                    distributedAudio FALSE,
                    centralizedVideo FALSE,
                    distributedVideo FALSE
              receiveAndTransmitMultipointCapability 
                multicastCapability FALSE,
                multiUniCastConference FALSE,
                mediaDistributionCapability 
                    centralizedControl FALSE,
                    distributedControl FALSE,
                    centralizedAudio FALSE,
                    distributedAudio FALSE,
                    centralizedVideo FALSE,
                    distributedVideo FALSE
              mcCapability 
                centralizedConferenceMC FALSE,
                decentralizedConferenceMC FALSE
              rtcpVideoControlCapability FALSE,
              mediaPacketizationCapability 
                h261aVideoPacketization FALSE
              logicalChannelSwitchingCapability FALSE,
              t120DynamicPortCapability FALSE
          capabilityTable 
              capabilityTableEntryNumber 27,
              capability receiveUserInputCapability : basicString : NULL
              capabilityTableEntryNumber 3,
              capability receiveAudioCapability : g711Ulaw64k : 20
          capabilityDescriptors 
              capabilityDescriptorNumber 1,
              simultaneousCapabilities 
                  3
                  27
    57315670.002 |22:32:55.915 |AppInfo  |DET-H245Log-- : H323-2833. H245CapabilityDefinition lookupOutBandSignalCapEntry: entryNumber=27, receiveInputCap=2 
    57315670.003 |22:32:55.915 |AppInfo  |DET-H245Log-- : H323-2833. H245CapabilityDefinition lookupOutBandSignalCapEntry: No SignalType UserInputCapability, put Alphanumeric type back, entryNumber=27, UserCap=2, 
    57315671.000 |22:32:55.915 |SdlSig   |CeseTerminalCapabilitySet              |wait                           |TranslateAndTransport(3,100,21,53370) |H245Handler(3,100,29,1)          |3,100,13,119956.2^*^*                    |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] SeqNo=1 len=1964 TCS heap-> 0xb42276e0 capCount=2
    57315672.000 |22:32:55.915 |SdlSig   |SdlDataInd                             |wait                           |H245Handler(3,100,29,1)          |SdlTCPConnection(3,100,13,119956) |3,100,13,119956.3^*^*                    |*TraceFlagOverrode
    57315672.001 |22:32:55.915 |AppInfo  |H245ASN - TtPid=(53370) [0xb27ceab8 1444 bytes] -Incoming #455654 -value MultimediaSystemControlMessage ::= request : masterSlaveDetermination : 
          terminalType 60,
          statusDeterminationNumber 8220
    57315673.000 |22:32:55.915 |SdlSig   |MsdseMasterSlaveDetermination          |wait                           |TranslateAndTransport(3,100,21,53370) |H245Handler(3,100,29,1)          |3,100,13,119956.3^*^*                    |[R:N-H:0,N:1,L:0,V:0,Z:0,D:0] 
    57315674.000 |22:32:55.915 |SdlSig   |CeseTerminalCapabilitySet              |paused                         |CeseIncoming(3,100,20,53370)     |TranslateAndTransport(3,100,21,53370) |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:1,L:0,V:0,Z:0,D:0] SeqNo=1 len=1964 TCS heap-> 0xb42276e0 capCount=2
    57315675.000 |22:32:55.915 |SdlSig   |MsdseMasterSlaveDetermination          |paused                         |Msdse(3,100,23,53370)            |TranslateAndTransport(3,100,21,53370) |3,100,13,119956.3^10.130.3.9^Port 49839  |[R:N-H:0,N:1,L:0,V:0,Z:0,D:0] 
    57315676.000 |22:32:55.915 |SdlSig-S |MsdseMasterSlaveDetermination          |paused                         |Msdse(3,100,23,53370)            |TranslateAndTransport(3,100,21,53370) |3,100,13,119956.3^10.130.3.9^Port 49839  |
    57315677.000 |22:32:55.915 |SdlSig   |CeseTransferIndication                 |capabilityExchange             |H245SessionManager(3,100,28,53370) |CeseIncoming(3,100,20,53370)     |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] len=1964 TCS heap-> 0xb42276e0 capCount=2
    57315678.000 |22:32:55.915 |SdlSig   |H245CapabilitiesIncomingIndication     |waitForCapabilitiesExchange    |H245Interface(3,100,185,53370)   |H245SessionManager(3,100,28,53370) |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:1,L:0,V:0,Z:0,D:0] len=1964 TCS heap-> 0xb42276e0 capCount=2
    57315678.001 |22:32:55.915 |AppInfo  |DET-H245Interface-(53370), star_H245CapabilitiesIncoming , received sdpMode = 0, videoCapable=0, dataCapable=0, videoSetupAfterAudio=    0,mMXOfferNeeded= 0
    57315678.002 |22:32:55.915 |AppInfo  |DET-H245Interface-(53370)::convertH245CapabilitiesToCapabilities, H323-2833. Incoming OOB user Input Cap choice =2, oobUserInputCap=1
    57315678.003 |22:32:55.915 |AppInfo  |DET-H245Interface-(53370)::convertH245CapabilitiesToCapabilities, cmCloudH245ICTVersion(0), H323-2833. After incoming TCS DTMFProfile updated, DTMF Method=1, 2833 payloadNum=0, OOB cap=1
    57315678.004 |22:32:55.915 |AppInfo  |DET-MediaUtility-::getCodecPrefOption, xferModeA=7 xferModeB=4 honorOfferCodecPrefA=0 honorOfferCodecPrefB=0 PREF_LIST
    57315678.005 |22:32:55.915 |AppInfo  |DET-MediaUtility-::setCodecPrefOptionAndRegionB, audioPassThru=0 myRegion=SIN-REG peerRegion=SIN-REG farEndRegion= regionB=SIN-REG PREF_LIST
    57315678.006 |22:32:55.915 |AppInfo  |DET-H245Interface-(53370)::setCodecPrefOptionAndOtherSideRegion, otherSideRegion=SIN-REG, PREF_LIST
    57315678.007 |22:32:55.915 |AppInfo  |DET-RegionsServer::sortMediaPayload-capCount=1, regionA=SIN-REG, regionB=SIN-REG, fkCodecList=911b707a-7d0e-c4cb-cc2a-89b4178491da
    57315678.008 |22:32:55.915 |AppInfo  |DET-MediaUtility-::getCodecPrefOption, xferModeA=7 xferModeB=4 honorOfferCodecPrefA=0 honorOfferCodecPrefB=0 PREF_LIST
    57315678.009 |22:32:55.915 |AppInfo  |DET-MediaUtility-::setCodecPrefOptionAndRegionB, audioPassThru=0 myRegion=SIN-REG peerRegion=SIN-REG farEndRegion= regionB=SIN-REG PREF_LIST
    57315678.010 |22:32:55.915 |AppInfo  |DET-H245Interface-(53370)::setCodecPrefOptionAndOtherSideRegion, otherSideRegion=SIN-REG, PREF_LIST
    57315678.011 |22:32:55.915 |AppInfo  |DET-RegionsServer::matchCapabilities-- savedOption=1, PREF_LIST, regionA=SIN-REG regionB=SIN-REG latentCaps(A=0, B=0) kbps=64, capACount=1, capBCount=0
    57315678.012 |22:32:55.915 |AppInfo  |RegionsServer: applyCodecFilterIfNeeded - no codecs remained after filtering so restored original 0 caps
    57315679.000 |22:32:55.915 |SdlSig   |CeseTransferResponse                   |paused                         |CeseIncoming(3,100,20,53370)     |H245SessionManager(3,100,28,53370) |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:1,L:0,V:0,Z:0,D:0] 
    57315680.000 |22:32:55.915 |SdlSig-S |CeseTransferResponse                   |paused                         |CeseIncoming(3,100,20,53370)     |H245SessionManager(3,100,28,53370) |3,100,13,119956.2^10.130.3.9^Port 49839  |
    57315681.000 |22:32:55.915 |SdlSig   |MXCapabilitiesIncoming                 |waitInterfacesCapabilities     |MediaExchange(3,100,138,127079)  |H245Interface(3,100,185,53370)   |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0]  audioCapCount=1 Caps[4(20)] videoCapCount=0, [] extendedVidCount=0, [] Supp.Payload RFC[0 0 0 0 0 ] h245ICTVersion0 useOldGWBytesForGSMConversion=F cryptoCapCount=0  cryptoVidDataCapCount=0  DTMF Profile(1,1,0,1,F)LatentCaps=null
    57315681.001 |22:32:55.915 |AppInfo  |DET-MediaExchange-(127079)::canForwardCapsToOtherEnd, activeCapEnabled(0, 0), canForwardCapsToOtherEnd=0
    57315681.002 |22:32:55.915 |AppInfo  |DET-MediaExchange-(127079)::finishCapExchange, capFromTwoIFs=1,capFromFarEnd=0,aPT=0,vPT=2,capE2E=0,capDone=1
    57315681.003 |22:32:55.915 |AppInfo  |DET-MediaExchange-(127079)::handleInterfaceVisited, returned finishCapExchange
    57315681.004 |22:32:55.915 |AppInfo  |DET-MediaExchange-(127079)::handleInterfaceVisited, allowReConnect(1) partyAHasCapsorACE(1)partybHasCapsorACE (0)
    57315682.000 |22:32:55.915 |SdlSig   |AuReConnectRequest                     |waitDisconnect                 |MediaManager(3,100,133,117676)   |MediaExchange(3,100,138,127079)  |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] Party1: MR=0 CI=60724230 audioCapCount=9 region=SIN-REG xferMode=4 mrid=0 audioId=0 MMCap=0x1 activeCap=0 cryptoCapCount=0 flushIns=0 dtmCall=0 dtmPrimaryCI=0 IFPid=(3,100,234,63534) dtMedia=F honorCodec=F EOType=0 MohType=0DTMF Caps(1,1,0,1,F) confID=0 connType=3 connStatus=0 mtpPre=F teleEve=0 IFCreated=T IFHandling=0 FS=0 mcNodeId=0LatentCaps=null Party2: MR=0 CI=60724231 audioCapCount=1 region=SIN-REG xferMode=7 mrid=0 audioId=0 MMCap=0x9 activeCap=0 cryptoCapCount=0 flushIns=0 dtmCall=0 dtmPrimaryCI=0 IFPid=(3,100,185,53370) dtMedia=F honorCodec=F EOType=0 MohType=0DTMF Caps(1,1,0,1,F) confID=0 connType=3 connStatus=0 mtpPre=F teleEve=0 IFCreated=T IFHandling=0 FS=0 mcNodeId=0LatentCaps=null reConnType=0 videoCall=F AllowedCallType=0x0 mtpChanged=F precLvl=5 resCap=0 party1.mMediaCoordinatorNodeId=0 party2.mMediaCoordinatorNodeId=0
    57315682.001 |22:32:55.915 |AppInfo  |SIG-MediaManager-(117676)::waitDisconnect_AuReConnectRequest, reConnectType(0)
    57315682.002 |22:32:55.915 |AppInfo  |DET-MediaManager-(117676)::waitDisconnect_AuReConnectRequest, Update AuConnectRequestMsg party capability. isDeviceVideoCapable (party1=0, party2=0)  AllowedCallType=0x00000000
    57315682.003 |22:32:55.915 |AppInfo  |DET-MediaManager-(117676)::waitDisconnect_AuReConnectRequest, ReConnect--sending disconnect, Party1DTMFmethod(1) Party2DTMFMethod(1)
    57315683.000 |22:32:55.915 |SdlSig   |AuDisconnectRequest                    |waitCleanup                    |MediaManager(3,100,133,117676)   |MediaManager(3,100,133,117676)   |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] CI1=60724230 CI2=60724231 sc=0 disconnType=0 ssReason=1 clearType=0 IF1Created=T IF2Created=T party1.mMediaCoordinatorNodeId=0 party2.mMediaCoordinatorNodeId=0 party1.dtmCall=0 party2.dtmCall=0 reconnectPending=F forceStop=F
    57315683.001 |22:32:55.915 |AppInfo  |!!ERROR!! -MediaManager-(117676)::handle_AuDisconnectRequest, mCleanupPreallocatedMTP=0
    57315683.002 |22:32:55.915 |AppInfo  |DET-MediaManager-(117676)::handle_AuDisconnectRequest, mrid(0,0) ci(6072423060724231) size(1), dt(0)
    57315683.003 |22:32:55.915 |AppInfo  |DET-MediaManager-(117676)::keepMTPConnection, sr(1), resrcAllocateSide(0), party1CI(60724230), bRet(0)
    57315683.004 |22:32:55.915 |AppInfo  |DET-MediaManager-(117676) - sendDisconnectReqToMX - disconnType=0, Party1DTMFmethod(1) Party2DTMFMethod(1) party1capCount(9) party2capCount(0), MC(0,0), deviceVideoCap(0, 0)
    57315684.000 |22:32:55.915 |SdlSig   |AuDisconnectRequest                    |waitInterfacesCapabilities     |MediaExchange(3,100,138,127079)  |MediaManager(3,100,133,117676)   |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] CI1=60724230 CI2=60724231 sc=0 disconnType=0 ssReason=1 clearType=0 IF1Created=T IF2Created=T party1.mMediaCoordinatorNodeId=0 party2.mMediaCoordinatorNodeId=0 party1.dtmCall=0 party2.dtmCall=0 reconnectPending=F forceStop=F
    57315684.001 |22:32:55.915 |AppInfo  |DET-MediaExchange-(127079)::wait_Disconnect, dt=0,stReason=1,IFHandling(0,0)
    57315685.000 |22:32:55.915 |SdlSig-Q |MXInterfaceEstablished                 |waitStopped                    |MediaExchange(3,100,138,127079)  |AgenaInterface(3,100,234,63534)  |3,100,13,119955.3^10.130.3.9^*           |
    57315686.000 |22:32:55.915 |SdlSig-D |MXInterfaceEstablished                 |waitStopped                    |MediaExchange(3,100,138,127079)  |AgenaInterface(3,100,234,63534)  |3,100,13,119955.3^10.130.3.9^*           |
    57315687.000 |22:32:55.915 |SdlSig   |MXInterfaceStopStreaming               |waitForMXCapabilitiesorOfferorAnswer |AgenaInterface(3,100,234,63534)  |MediaExchange(3,100,138,127079)  |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:1,L:0,V:0,Z:0,D:0] ClearType= 0 StoppedBy= 0 DisconnecType= 0 StopStreamingReason=1 reconPending= FmHoldingPartyCI= 0mForceStop= F
    57315687.001 |22:32:55.915 |AppInfo  |DET-AgenaInterfaceBase-(63534)::closeRecvForAllAudioChannels, mAudioIncomingLC2AGIDMap size = 0
    57315688.000 |22:32:55.915 |SdlSig   |MXInterfaceStopStreaming               |waitForCapabilitiesExchange    |H245Interface(3,100,185,53370)   |MediaExchange(3,100,138,127079)  |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:1,L:0,V:0,Z:0,D:0] ClearType= 0 StoppedBy= 0 DisconnecType= 0 StopStreamingReason=1 reconPending= FmHoldingPartyCI= 0mForceStop= F
    57315688.001 |22:32:55.915 |AppInfo  |DET-H245Interface-(53370)::handleStopStreaming, stopStreamingRecdInWaitForCapExchgState=0
    57315688.002 |22:32:55.915 |AppInfo  |DET-H245Interface-(53370)::handleStopStreaming, mInitialCallSendDumyCapsIfNeeded=1
    57315689.000 |22:32:55.915 |SdlSig   |MXInterfaceStoppedStreaming            |waitStopped                    |MediaExchange(3,100,138,127079)  |AgenaInterface(3,100,234,63534)  |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:1,L:0,V:0,Z:0,D:0] 
    57315690.000 |22:32:55.915 |SdlSig   |MXInterfaceStoppedStreaming            |waitStopped                    |MediaExchange(3,100,138,127079)  |H245Interface(3,100,185,53370)   |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] 
    57315690.001 |22:32:55.915 |Stopping |                                       |                               |MediaExchange(3,100,138,127079)  |MediaExchange(3,100,138,127079)  |                                         |NumOfCurrentInstances: 1
    57315691.000 |22:32:55.915 |SdlSig   |MXNewParentPid                         |restart                        |AgenaInterface(3,100,234,63534)  |MediaExchange(3,100,138,127079)  |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:2,L:0,V:0,Z:0,D:0] parent pid:nodeId=3.PN=134.PI=1.vPT=2 allow2833=F injectDigitstoMTP=F subscribetoMTP=F passthru2833=F
    57315692.000 |22:32:55.915 |SdlSig   |MXNewParentPid                         |waitReconnect                  |H245Interface(3,100,185,53370)   |MediaExchange(3,100,138,127079)  |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:1,L:0,V:0,Z:0,D:0] parent pid:nodeId=3.PN=134.PI=1.vPT=2 allow2833=F injectDigitstoMTP=F subscribetoMTP=F passthru2833=F
    57315693.000 |22:32:55.915 |SdlSig   |AuDisconnectReply                      |waitCleanup                    |MediaManager(3,100,133,117676)   |MediaExchange(3,100,138,127079)  |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] CI1=60724230 CI2=60724231 sc=0 disconnType=0 ssReason=1 clearType=0 IF1Created=T IF2Created=T party1.mMediaCoordinatorNodeId=0 party2.mMediaCoordinatorNodeId=0 party1.dtmCall=0 party2.dtmCall=0 reconnectPending=F forceStop=F
    57315693.001 |22:32:55.915 |AppInfo  |DET-MediaManager-(117676)::waitCleanup_AuDisconnectReply, CI(60724230,60724231), disconnType(0), stopStreamingReason(1) DTMFMethod(1 1),MC(0,0),rf(1), nD(1,1)
    57315693.002 |22:32:55.915 |AppInfo  |DET-MediaManager-(117676)::waitCleanup_AuDisconnectReply, videoCap (0, 0), AllowedCallType=0
    57315693.003 |22:32:55.915 |AppInfo  |SIG-MediaManager-(117676)::waitCleanup_AuDisconnectReply - recv all disconn replies, send ReConnReq to MC, reConnectType(0), party(60724230,60724231) mrid(0 0) party1DTMF(1 1 0) part2DTMF(1 1 0), MC(0,0), deviceVideo (0, 0), AllowedCallType=0x00000000
    57315693.004 |22:32:55.915 |Stopping |                                       |                               |MediaManager(3,100,133,117676)   |MediaManager(3,100,133,117676)   |                                         |NumOfCurrentInstances: 1
    57315694.000 |22:32:55.915 |SdlSig   |AuReConnectRequest                     |wait                           |MediaCoordinator(3,100,134,1)    |MediaManager(3,100,133,117676)   |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] Party1: MR=0 CI=60724230 audioCapCount=9 region=SIN-REG xferMode=4 mrid=0 audioId=0 MMCap=0x1 activeCap=0 cryptoCapCount=0 flushIns=0 dtmCall=0 dtmPrimaryCI=0 IFPid=(3,100,234,63534) dtMedia=F honorCodec=F EOType=0 MohType=0DTMF Caps(1,1,0,1,F) confID=0 connType=3 connStatus=0 mtpPre=F teleEve=0 IFCreated=T IFHandling=0 FS=0 mcNodeId=0LatentCaps=null Party2: MR=0 CI=60724231 audioCapCount=1 region=SIN-REG xferMode=7 mrid=0 audioId=0 MMCap=0x9 activeCap=0 cryptoCapCount=0 flushIns=0 dtmCall=0 dtmPrimaryCI=0 IFPid=(3,100,185,53370) dtMedia=F honorCodec=F EOType=0 MohType=0DTMF Caps(1,1,0,1,F) confID=0 connType=3 connStatus=0 mtpPre=F teleEve=0 IFCreated=T IFHandling=0 FS=0 mcNodeId=0LatentCaps=null reConnType=0 videoCall=F AllowedCallType=0x0 mtpChanged=F precLvl=5 resCap=0 party1.mMediaCoordinatorNodeId=0 party2.mMediaCoordinatorNodeId=0
    57315694.001 |22:32:55.915 |AppInfo  |SIG-MediaCoordinator-wait_AuReConnectRequest, reConnectType(0)
    57315694.002 |22:32:55.915 |AppInfo  |SIG-MediaCoordinator-wait_AuReConnectRequest - removing MediaManager(117676) from connection list
    57315695.000 |22:32:55.915 |SdlSig   |AuConnectRequest                       |wait                           |MediaCoordinator(3,100,134,1)    |MediaCoordinator(3,100,134,1)    |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] Party1: MR=0 CI=60724230 audioCapCount=9 region=SIN-REG xferMode=4 mrid=0 audioId=0 MMCap=0x1 activeCap=0 cryptoCapCount=0 flushIns=0 dtmCall=0 dtmPrimaryCI=0 IFPid=(3,100,234,63534) dtMedia=F honorCodec=F EOType=0 MohType=0DTMF Caps(1,1,0,1,F) confID=0 connType=3 connStatus=0 mtpPre=F teleEve=0 IFCreated=T IFHandling=0 FS=0 mcNodeId=0LatentCaps=null Party2: MR=0 CI=60724231 audioCapCount=1 region=SIN-REG xferMode=7 mrid=0 audioId=0 MMCap=0x9 activeCap=0 cryptoCapCount=0 flushIns=0 dtmCall=0 dtmPrimaryCI=0 IFPid=(3,100,185,53370) dtMedia=F honorCodec=F EOType=0 MohType=0DTMF Caps(1,1,0,1,F) confID=0 connType=3 connStatus=0 mtpPre=F teleEve=0 IFCreated=T IFHandling=0 FS=0 mcNodeId=0LatentCaps=null reConnType=0 videoCall=F AllowedCallType=0x0 mtpChanged=F precLvl=5 resCap=0 party1.mMediaCoordinatorNodeId=0 party2.mMediaCoordinatorNodeId=0
    57315695.001 |22:32:55.915 |Created  |                                       |                               |MediaManager(3,100,133,117677)   |MediaCoordinator(3,100,134,1)    |                                         |NumOfCurrentInstances: 1
    57315695.002 |22:32:55.915 |AppInfo  |SIG-MediaCoordinator-wait_AuConnectRequest - new MediaManager(133,117677) started
    57315696.000 |22:32:55.915 |SdlSig   |AuConnectRequest                       |waitConnectRequest             |MediaManager(3,100,133,117677)   |MediaCoordinator(3,100,134,1)    |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] Party1: MR=0 CI=60724230 audioCapCount=9 region=SIN-REG xferMode=4 mrid=0 audioId=0 MMCap=0x1 activeCap=0 cryptoCapCount=0 flushIns=0 dtmCall=0 dtmPrimaryCI=0 IFPid=(3,100,234,63534) dtMedia=F honorCodec=F EOType=0 MohType=0DTMF Caps(1,1,0,1,F) confID=0 connType=3 connStatus=0 mtpPre=F teleEve=0 IFCreated=T IFHandling=0 FS=0 mcNodeId=0LatentCaps=null Party2: MR=0 CI=60724231 audioCapCount=1 region=SIN-REG xferMode=7 mrid=0 audioId=0 MMCap=0x9 activeCap=0 cryptoCapCount=0 flushIns=0 dtmCall=0 dtmPrimaryCI=0 IFPid=(3,100,185,53370) dtMedia=F honorCodec=F EOType=0 MohType=0DTMF Caps(1,1,0,1,F) confID=0 connType=3 connStatus=0 mtpPre=F teleEve=0 IFCreated=T IFHandling=0 FS=0 mcNodeId=0LatentCaps=null reConnType=0 videoCall=F AllowedCallType=0x0 mtpChanged=F precLvl=5 resCap=0 party1.mMediaCoordinatorNodeId=0 party2.mMediaCoordinatorNodeId=0
    57315696.001 |22:32:55.915 |AppInfo  |SIG-MediaManager-(117677)::wait_AuConnectRequest, CI(60724230,60724231), capCount(9,1), mcNodeId(0,0), xferMode(4,7), reConnectType(0), mrid (0, 0) IFCreated(1 1) proIns(63534 53370), AC(0,0), party1DTMF(1 1 0 1 0) party2DTMF(1 1 0 1 0),reConnFlag=1, connType(3,3), IFHand(0,0),MTP(0,0),MRGL(5212b81b-1ba4-b897-0a93-0125344b429e,5212b81b-1ba4-b897-0a93-0125344b429e) videoCap(0 0), mmCallType(0),FS(0,0), IpAddrMode(0 0) aPid(3, 58, 2238), bPid(3, 189, 55784) EOType(0 0) MOHAnnConnType(0 0) honorCodec(0 0)
    57315697.000 |22:32:55.915 |SdlSig   |CACInfoReq                             |wait                           |ReservationMgr(3,100,103,1)      |MediaManager(3,100,133,117677)   |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] CI= 0  aCI=60724230 bCI=60724231
    57315698.000 |22:32:55.915 |SdlSig   |CACInfoReq                             |active                         |LBMInterface(3,100,169,1)        |ReservationMgr(3,100,103,1)      |3,100,13,119956.2^10.130.3.9^Port 49839  |[T:N-H:0,N:0,L:0,V:0,Z:0,D:0] CI= 0  aCI=60724230 bCI=60724231
    57315698.001 |22:32:55.915 |AppInfo  |LBMIF: CI: 60724230 INFOREQ  3,100,58,2238
    57315698.002 |22:32:55.915 |AppInfo  |LBMIF: CI: 60724231 INFOREQ' 3,100,189,55784
    57315699.000 |22:32:55.915 |SdlSig   |CACInfoRes                             |wait                           |ReservationMgr(3,100,103,1)      |LBMInterface(3,100,169,1)        |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] CI= 0  aCI=60724230 bCI=60724231 pol=0 rsvpStatus=1 sessJoined=F staIdx_no_agent=0 AudioBWReserved eoSent=F aAgent:  confID =0 ci =0 capCt =0 reg= mtpType =2 agentCt =0 mmCapSet=0 agentAllo =0 RemoAgent=F DevCap=0 ipAddrMode=0 bAgent:  confID =0 ci =0 capCt =0 reg= mtpType =2 agentCt =0 mmCapSet=0 agentAllo =0 RemoAgent=F DevCap=0 ipAddrMode=0 aPort:  NumPort =0 bPort:  NumPort =0 otherAgentPort:  NumPort =0
    57315700.000 |22:32:55.915 |SdlSig   |CACInfoReq                             |wait                           |RSVPSession(3,100,100,79309)     |ReservationMgr(3,100,103,1)      |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] CI= 0  aCI=60724230 bCI=60724231
    57315701.000 |22:32:55.916 |SdlSig   |CACInfoRes                             |wait                           |ReservationMgr(3,100,103,1)      |RSVPSession(3,100,100,79309)     |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] CI= 60724230  aCI=60724230 bCI=60724231 pol=0 rsvpStatus=1 sessJoined=F staIdx_no_agent=0 NoBWReserved eoSent=F aAgent:  confID =0 ci =0 capCt =0 reg= mtpType =2 agentCt =0 mmCapSet=0 agentAllo =0 RemoAgent=F DevCap=0 ipAddrMode=0 bAgent:  confID =0 ci =0 capCt =0 reg= mtpType =2 agentCt =0 mmCapSet=0 agentAllo =0 RemoAgent=F DevCap=0 ipAddrMode=0 aPort:  NumPort =0 bPort:  NumPort =0 otherAgentPort:  NumPort =0
    57315702.000 |22:32:55.916 |SdlSig   |CACInfoRes                             |waitCACInfoRes                 |MediaManager(3,100,133,117677)   |ReservationMgr(3,100,103,1)      |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] CI= 0  aCI=60724230 bCI=60724231 pol=0 rsvpStatus=1 sessJoined=F staIdx_no_agent=0 AudioBWReserved eoSent=F aAgent:  confID =0 ci =0 capCt =0 reg= mtpType =2 agentCt =0 mmCapSet=0 agentAllo =0 RemoAgent=F DevCap=0 ipAddrMode=0 bAgent:  confID =0 ci =0 capCt =0 reg= mtpType =2 agentCt =0 mmCapSet=0 agentAllo =0 RemoAgent=F DevCap=0 ipAddrMode=0 aPort:  NumPort =0 bPort:  NumPort =0 otherAgentPort:  NumPort =0
    57315702.001 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677) - waitCACInfoRes_CACInfoRes- qosType=0  videoEsc=0  mNoVideoResvAttempted=1  VideoCall=0
    57315702.002 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677)::waitCACInfoRes_CACInfoRes, rsvp(0,0), aE2ERegion(64) deviceAcaps(0) deviceBCaps(0),noVideoResv(1), mmAllowedCallType(0x00000000)
    57315702.003 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677)::bothPartiesVideoCapable=0 MainVideoCap=0 SecondVideoCap=0
    57315702.004 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677)::mapCapabilitiesToMMCallType, policy=0, hasRSVP=0, mainVideoCap=0,dataCap=0, allowedCallType=0x00000001, V region(e2e=384, 1)
    57315702.005 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677)::buildMtpXcoderAllocList, savedConnectionCount=0, QosType=0
    57315702.006 |22:32:55.916 |AppInfo  |DET-RegionsServer::matchCapabilities-- savedOption=3, PREF_NONE, regionA=(null) regionB=(null) latentCaps(A=0, B=0) kbps=64, capACount=9, capBCount=1
    57315702.007 |22:32:55.916 |AppInfo  |DET-RegionsServer::handleMatchCapabilities()-- BEFORE MATCHING LOGIC applied(after filtering), sideARefCaps=1 refCapsSaveOpt=1 otherCapsSaveOpt=1 capsA[7]::capCount=7 (Cap,ptime)= (4,40) (2,40) (86,60) (15,60) (16,60) (11,60) (12,60) capsB[1]::capCount=1 (Cap,ptime)= (4,20)
    57315702.008 |22:32:55.916 |AppInfo  |DET-RegionsServer::handleMatchCapabilities()-- AFTER MATCHING LOGIC applied, capsA[1]::capCount=1 (Cap,ptime)= (4,40) capsB[1]::capCount=1 (Cap,ptime)= (4,20) numMatchedCaps=1
    57315702.009 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677)::checkAudioPassThru, param(0,1), capCount(9,1), mtpPT=1, aPT=1
    57315702.010 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677)::preCheckCapabilities, region1=SIN-REG, region2=SIN-REG, Pty1 capCount=9 (Cap,ptime)= (25,40) (4,40) (2,40) (86,60) (15,60) (16,60) (11,60) (12,60) (257,1), Pty2 capCount=1 (Cap,ptime)= (4,20)
    57315702.011 |22:32:55.916 |AppInfo  |DET-RegionsServer::matchCapabilities-- savedOption=0, PREF_NONE, regionA=(null) regionB=(null) latentCaps(A=0, B=0) kbps=64, capACount=9, capBCount=1
    57315702.012 |22:32:55.916 |AppInfo  |DET-RegionsServer::handleMatchCapabilities()-- BEFORE MATCHING LOGIC applied(after filtering), sideARefCaps=1 refCapsSaveOpt=0 otherCapsSaveOpt=0 capsA[7]::capCount=7 (Cap,ptime)= (4,40) (2,40) (86,60) (15,60) (16,60) (11,60) (12,60) capsB[1]::capCount=1 (Cap,ptime)= (4,20)
    57315702.013 |22:32:55.916 |AppInfo  |DET-RegionsServer::handleMatchCapabilities()-- AFTER MATCHING LOGIC applied, capsA[7]::capCount=7 (Cap,ptime)= (4,40) (2,40) (86,60) (15,60) (16,60) (11,60) (12,60) capsB[1]::capCount=1 (Cap,ptime)= (4,20) numMatchedCaps=1
    57315702.014 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677)::prepareInitialConnectionList, Party1CapCount=9 Party2CapCount=1 XcoderRequired=0 xcodingSide=0 allowMTP=0
    57315702.015 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677)::AllocateXcoderandMTPWithZeroSavedConnection
    57315702.016 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677)::isMTPNeededForDTMF, both parties are non-SIP and we'll do OOB for DTMF
    57315702.017 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677) - isIpv6CapableMTPNeeded(0) ipAddrMode(0 0) mtpside(0)
    57315702.018 |22:32:55.916 |AppInfo  |SIG-MediaManager-(117677)::handleAuConnectRequest, connCount=0
    57315702.019 |22:32:55.916 |Created  |                                       |                               |MediaExchange(3,100,138,127080)  |MediaManager(3,100,133,117677)   |                                         |NumOfCurrentInstances: 1
    57315702.020 |22:32:55.916 |AppInfo  |DET-MediaManager-(117677)::getAllow2833FortheCall, 2833 is not allowed for the call
    57315703.000 |22:32:55.916 |SdlSig   |AuConnectRequest                       |waitAuConnectRequest           |MediaExchange(3,100,138,127080)  |MediaManager(3,100,133,117677)   |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:0,L:0,V:0,Z:0,D:0] Party1: MR=0 CI=60724230 audioCapCount=9 region=SIN-REG xferMode=4 mrid=0 audioId=0 MMCap=0x1 activeCap=0 cryptoCapCount=0 flushIns=0 dtmCall=0 dtmPrimaryCI=0 IFPid=(3,100,234,63534) dtMedia=F honorCodec=F EOType=0 MohType=0DTMF Caps(1,1,0,1,F) confID=0 connType=3 connStatus=0 mtpPre=F teleEve=0 IFCreated=T IFHandling=0 FS=0 mcNodeId=0LatentCaps=null Party2: MR=0 CI=60724231 audioCapCount=1 region=SIN-REG xferMode=7 mrid=0 audioId=0 MMCap=0x9 activeCap=0 cryptoCapCount=0 flushIns=0 dtmCall=0 dtmPrimaryCI=0 IFPid=(3,100,185,53370) dtMedia=F honorCodec=F EOType=0 MohType=0DTMF Caps(1,1,0,1,F) confID=0 connType=3 connStatus=0 mtpPre=F teleEve=0 IFCreated=T IFHandling=0 FS=0 mcNodeId=0LatentCaps=null reConnType=0 videoCall=F AllowedCallType=0x1 mtpChanged=F precLvl=5 resCap=0 party1.mMediaCoordinatorNodeId=0 party2.mMediaCoordinatorNodeId=0
    57315703.001 |22:32:55.916 |AppInfo  |DET-MediaExchange-(127080)::wait_AuConnectRequest, party1(CI=60724230, MXIFHandling=0, MediaReq=0,xferMode=4),party2(CI=60724231, MXIFHandling=0,xferMode=7), farEnd(XferMode=0,AC=0,T38=0,FS=0, mediaReq=0), PT(2,2),connType(3,3), farendIpAddrMode=0
    57315703.002 |22:32:55.916 |AppInfo  |DET-MediaExchange-(127080)::addPartyAandPartyB, party1:xferMode=4, party2:xferMode=7
    57315703.003 |22:32:55.916 |AppInfo  |DET-MediaExchange-(127080)::setEOOpaqueMediaInfoForInterface, peerEarlyOfferType(0), farEndEarlyOfferType(0), h323EarlyOfferInfo(0)
    57315703.004 |22:32:55.916 |AppInfo  |DET-MediaExchange-(127080)::setEOOpaqueMediaInfoForInterface, peerEarlyOfferType(0), farEndEarlyOfferType(0), h323EarlyOfferInfo(0)
    57315703.005 |22:32:55.916 |AppInfo  |DET-MediaExchange-(127080)::setRegionAndHonorIncomingCodecPrefForInterface, Party1: myRegion(SIN-REG), peerRegion(SIN-REG), farEndRegion(), myHonorIncomingCodecPref(0), peerHonorIncomingCodecPref(0), farEndHonorIncomingCodecPref(0) Party2: myRegion(SIN-REG), peerRegion(SIN-REG), farEndRegion(), myHonorIncomingCodecPref(0), peerHonorIncomingCodecPref(0), farEndHonorIncomingCodecPref(0)
    57315703.006 |22:32:55.916 |AppInfo  |DET-MediaExchange-(127080)::addPartyAandPartyB, videoCall(0), normalStart(0), audioRegion(64), videoRegion(384), party1VidCapable(0), party2VidCapable(0)
    57315704.000 |22:32:55.916 |SdlSig   |MXNewParentPid                         |restart                        |AgenaInterface(3,100,234,63534)  |MediaExchange(3,100,138,127080)  |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:3,L:0,V:0,Z:0,D:0] parent pid:nodeId=3.PN=138.PI=127080.vPT=2 allow2833=F injectDigitstoMTP=F subscribetoMTP=F passthru2833=F
    57315705.000 |22:32:55.916 |SdlSig   |MXInterfaceRestart                     |restart                        |AgenaInterface(3,100,234,63534)  |MediaExchange(3,100,138,127080)  |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:2,L:0,V:0,Z:0,D:0] pid=0.0.0 partySide=A mAudioRegionKbps=64 mVideoRegionKbps=384 mMulticastFlag=F silence=F network=0 sessionId=0 ipAddrType=0 ipv4=10.130.3.9 port=49839 My DTMF (config=1 support=1 2833recvPT=0) Peer DTMF (config=1 support=1 2833recvPT=0) Media DTMF (subscribe=F passthru2833=F injectDigitstoMTP=F allow2833=F) cryptocapcount=0 RSVP nPortsOpened=0 AllowedCallType=0x1 aPT=2 vPT=2 e2eAR0 e2eVR0 capE2E=F dscpRSVPFail=F mtpChanged=F allowOneWay=F my connType=3 peer connType=3 mouth mode=0 mouth party=0 ear mode=0 ear party=0 mIsSRTP=T farEndXferM=0 farEndMediaReq=0 joined=F NormalReconn=T callIpAddrMode(my=0 peer=0 far=0) moh=F mediaReq=0 mPrecLvl=5 allowVideo=F SIPDevMediaInfo: [ vidPref=T isPartyA=F stackIdx=1 SDPInBeginMedia=F isJoined=F videoP=T EO=0 renegMedi=F
    57315705.001 |22:32:55.916 |AppInfo  |DET-kirra-ipv6 AgenaInterfaceBase-(63534)::initializeMemberData  mNegotiatedIPAddrType = 0 
    57315706.000 |22:32:55.916 |SdlSig   |MXNewParentPid                         |waitReconnect                  |H245Interface(3,100,185,53370)   |MediaExchange(3,100,138,127080)  |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:3,L:0,V:0,Z:0,D:0] parent pid:nodeId=3.PN=138.PI=127080.vPT=2 allow2833=F injectDigitstoMTP=F subscribetoMTP=F passthru2833=F
    57315707.000 |22:32:55.916 |SdlSig   |MXInterfaceRestart                     |waitReconnect                  |H245Interface(3,100,185,53370)   |MediaExchange(3,100,138,127080)  |3,100,13,119956.2^10.130.3.9^Port 49839  |[R:N-H:0,N:2,L:0,V:0,Z:0,D:0] pid=0.0.0 partySide=B mAudioRegionKbps=64 mVideoRegionKbps=384 mMulticastFlag=F silence=F network=7 sessionId=0 ipAddrType=0 ipv4=10.130.3.9 port=49839 My DTMF (config=1 support=1 2833recvPT=0) Peer DTMF (config=1 support=1 2833recvPT=0) Media DTMF (subscribe=F passthru2833=F injectDigitstoMTP=F allow2833=F) cryptocapcount=0 RSVP nPortsOpened=0 AllowedCallType=0x1 aPT=2 vPT=2 e2eAR0 e2eVR0 capE2E=F dscpRSVPFail=F mtpChanged=F allowOneWay=F my connType=3 peer connType=3 mouth mode=0 mouth party=0 ear mode=0 ear party=0 mIsSRTP=T farEndXferM=0 farEndMediaReq=0 joined=F NormalReconn=T callIpAddrMode(my=0 peer=0 far=0) moh=F mediaReq=0 mPrecLvl=5 allowVideo=F SIPDevMediaInfo: [ vidPref=T isPartyA=F stackIdx=1 SDPInBeginMedia=F isJoined=F videoP=T EO=0 renegMedi=F
    57315707.001 |22:32:55.916 |AppInfo  |DET-H245Interface-(53370)::mapRestartSignal, mDTMFProfile oobUserInputCapability=1 

    Could be a codec issue. Verify what codec you are trying to use when the call fails.
    Is this H323 or MGCP, what is the PSTN connectivity, SIP or PRI or FX0?
    Might be helpful to post the router config.

  • Making a VoIP call with the Cisco 837 ADSL router

    I would greatly appreciate if could please provide some technical assistance to my questions below:
    Is it possible to make a VoIP call between two 837 ADSL Cisco routers over a 1Mbps ADSL broadband connection?
    If so, can I configure this VoIP connection using either a PPPoE or ATM WAN link?
    Is it possible to make a VoIP call using a Cisco 837 Router while simultaneously surfing the Internet? In other words do I need two public IP addresses i.e. one for accessing the internet and one for making the VoIP call or is one static IP address obtained from my ISP sufficent.
    It is possible to configure QoS parameters (e.g. RSVP, Voice precedence, Voice codec selection) on this 837 router using PPoE or can it only be done using an ATM WAN interface?
    Does the Cisco 837 router support both the H.323 and SIP communication protocols? Do I need to purchase a certain IOS operating system version for VoIP calling?
    Does the VoIP dial peers need to be configured with both a POTS and VoIP phone numbers or is only one number required?
    Do I need to obtain a special VoIP number from my VoIP service provider? or can I use existing POTS numbers or made up numbers within the dial peers as this situation involves making a private VoIP call between two branch offices using 837 ADSL routers and not via a VoIP service provider.
    Finally, can I use POTS ordinary telephones with the Cisco 837 for making VoIP calls or do I strictly need to purchase VoIP phones?
    My apologies for the number of questions asked here but I currently need to know the technical ability of the Cisco ADSL 837 as I am thinking of employing these routers in my company organisation.
    I await your feedback in due course.
    Thanks,
    Martin Healy

    Hi,
    I give you a sample config of my router.
    class-map voice
    match access-group 101
    policy-map mypolicy
    class voice
    priority 128
    class class-default
    fair-queue 16
    ip subnet-zero
    gateway
    interface Ethernet0
    ip address 20.20.20.20 255.255.255.0
    no ip directed-broadcast (default)
    ip route-cache policy
    ip policy route-map data
    interface ATM0
    ip address 10.10.10.20 255.255.255.0
    no ip directed-broadcast (default)
    no atm ilmi-keepalive (default)
    pvc 1/40
    service-policy output mypolicy
    protocol ip 10.10.10.36 broadcast
    vbr-nrt 640 600 4
    ! 640 is the maximum upstream rate of ADSL
    encapsulation aal5snap
    bundle-enable
    h323-gateway voip interface
    h323-gateway voip id gk-twister ipaddr 172.17.1.1 1719
    h323-gateway voip h323-id gw-820
    h323-gateway voip tech-prefix 1#
    router eigrp 100
    network 10.0.0.0
    network 20.0.0.0
    ip classless (default)
    no ip http server
    access-list 101 permit ip any any precedence critical
    route-map data permit 10
    set ip precedence routine
    line con 0
    exec-timeout 0 0
    transport input none
    stopbits 1
    line vty 0 4
    login
    voice-port 1
    local-alerting
    timeouts call-disconnect 0
    voice-port 2
    local-alerting
    timeouts call-disconnect 0
    voice-port 3
    local-alerting
    timeouts call-disconnect 0
    voice-port 4
    local-alerting
    timeouts call-disconnect 0
    dial-peer voice 10 voip
    destination-pattern ........
    ip precedence 5
    session target ras
    dial-peer voice 1 pots
    destination-pattern 5258111
    port 1
    dial-peer voice 2 pots
    destination-pattern 5258222
    port 2
    dial-peer voice 3 pots
    destination-pattern 5258333
    port 3
    dial-peer voice 4 pots
    destination-pattern 5258444
    port 4
    end

  • How write rmi-iiop over ssl with weblogic server 6.1 - No server found

    //New
    Hello,
    I have written an appication like this:
    - An EJB server running on Weblogic server 6.1
    (named: BankServerHome)
    -A java client calling the BankServer.
    Platform: windows 2000 - jdk1.3
    Now I want to secure the communication with SSL protocol.
    I have done this:
    -generate a key peer with weblogic service named certificate.
    -send the CSR to a CA and place the answer into the weblogic
    server certificate directory.
    -update path for ServerCertificateChainFileName,
    ServerCertificateFileName, ServerKeyFileName into config.xml.
    -launch weblogicServer
         -> server certificate is recognized
         -> listening port 7001 and 7002.
    (-stop weblogicServer!)
    At now, all is all right, errors come hereafter:
    Then I follow the guideline "Programming weblogic Security" (version of 30/07/2001).
    "To use RMI over IIOP over SSL with a Java client, do the following:
    2. Extend the java.rmi.server.RMISocketFactory class to handle SSL socket
    connections. Be sure to specify the port on which WebLogic Server listens for
    SSL connections. For an example of a class that extends the
    java.rmi.server.RMISocketFactory class, see Listing 4-22.
    3. Run the ejbc compiler with the -d option.
    4. Add your extension of the java.rmi.server.RMISocketFactory class to the
    CLASSPATH of the Java client.
    5. Use the following command options when starting the Java client:
    -xbootclasspath/a:%CLASSPATH%
    -Dorg.omg.CORBA.ORBSocketFactoryClass=implementation of java.rmi.server.RMISocketFactory
    -Dssl.certs=directory location of digital certificate for Java client
    -Dssl.key=directory location of private key for Java client"
    At step 3. I found into documentation that -d is linked to a directory name.
    When I run ejbc with this option -d I have the message:
    "ERROR: You must specify an output directory or jar with the -d option to weblogic.ejbc."
    % So what option can I use to run ejbc for secure usage?
    At step 5. Whatever I write for -Dorg.omg.CORBA.ORBSocketFactoryClass,
    this pointed class is not instanciated.
    Then I can not create a socket with my client.
    The folowing exception is raised:
    javax.naming.CommunicationException [Root exception is java.net.ConnectException:
    No server found at T3S://localhost:7002]
    So, my questions are:
    % Why -Dorg.omg.CORBA.ORBSocketFactoryClass must be known by the client and not
    the server?
    My java client part, managing connection is:
    -------------------BEGIN OF CONNECTION MANAGER-------------------
    Properties env = new Properties ();
    // Shouldn't have to do this, but for now you must
    if ( factory.equals ("weblogic.jndi.WLInitialContextFactory") ) {
    env.put ("java.naming.provider.url", "t3s://localhost:7002");
    InitialContext context = new InitialContext (env);
    BankSessionServerHome bssh = (BankServerHome) context.lookup("BankServerHome");
    BankServer = bssh.create();
    -------------------END OF CONNECTION MANAGER-------------------
    I have also try
    env.put ("java.naming.provider.url", "corbaloc:iiop://localhost:7002");
    but it throws the following error
    javax.naming.InvalidNameException: url does not conatin !!!
    % What is the code for the java client allowing connection with the ejb?
    % And better, can I have a sample example for rmi-iiop over ssl?
    (...wlserver6.1\samples\examples\iiop\ejb\stateless\rmiclient\client.java do not
    speak ssl!)
    Any help will be appreciate from you...
    Best Regards.
    Oliver

    "oliver" <[email protected]> writes:
    The SSL support is poorly doc'd right now. We have fixed this and
    updated the way you do things in SP2. Please either wait for SP2 or
    contact support.
    andy
    I have written an appication like this:
    - An EJB server running on Weblogic server 6.1
    (named: BankServerHome)
    -A java client calling the BankServer.
    Platform: windows 2000 - jdk1.3
    Now I want to secure the communication with SSL protocol.
    I have done this:
    -generate a key peer with weblogic service named certificate.
    -send the CSR to a CA and place the answer into the weblogic
    server certificate directory.
    -update path for ServerCertificateChainFileName,
    ServerCertificateFileName, ServerKeyFileName into config.xml.
    -launch weblogicServer
         -> server certificate is recognized
         -> listening port 7001 and 7002.
    (-stop weblogicServer!)
    At now, all is all right, errors come hereafter:
    Then I follow the guideline "Programming weblogic Security" (version of 30/07/2001).
    "To use RMI over IIOP over SSL with a Java client, do the following:
    2. Extend the java.rmi.server.RMISocketFactory class to handle SSL socket
    connections. Be sure to specify the port on which WebLogic Server listens for
    SSL connections. For an example of a class that extends the
    java.rmi.server.RMISocketFactory class, see Listing 4-22.
    3. Run the ejbc compiler with the -d option.
    4. Add your extension of the java.rmi.server.RMISocketFactory class to the
    CLASSPATH of the Java client.
    5. Use the following command options when starting the Java client:
    -xbootclasspath/a:%CLASSPATH%
    -Dorg.omg.CORBA.ORBSocketFactoryClass=implementation of java.rmi.server.RMISocketFactory
    -Dssl.certs=directory location of digital certificate for Java client
    -Dssl.key=directory location of private key for Java client"
    At step 3. I found into documentation that -d is linked to a directory name.
    When I run ejbc with this option -d I have the message:
    "ERROR: You must specify an output directory or jar with the -d option to weblogic.ejbc."
    % So what option can I use to run ejbc for secure usage?
    At step 5. Whatever I write for -Dorg.omg.CORBA.ORBSocketFactoryClass,
    this pointed class is not instanciated.
    Then I can not create a socket with my client.
    The folowing exception is raised:
    javax.naming.CommunicationException [Root exception is java.net.ConnectException:
    No server found at T3S://localhost:7002]
    So, my questions are:
    % Why -Dorg.omg.CORBA.ORBSocketFactoryClass must be known by the client and not
    the server?
    My java client part, managing connection is:
    -------------------BEGIN OF CONNECTION MANAGER-------------------
    Properties env = new Properties ();
    // Shouldn't have to do this, but for now you must
    if ( factory.equals ("weblogic.jndi.WLInitialContextFactory") ) {
    env.put ("java.naming.provider.url", "t3s://localhost:7002");
    InitialContext context = new InitialContext (env);
    BankSessionServerHome bssh = (BankServerHome) context.lookup("BankServerHome");
    BankServer = bssh.create();
    -------------------END OF CONNECTION MANAGER-------------------
    I have also try
    env.put ("java.naming.provider.url", "corbaloc:iiop://localhost:7002");
    but it throws the following error
    javax.naming.InvalidNameException: url does not conatin !!!
    % What is the code for the java client allowing connection with the ejb?
    % And better, can I have a sample example for rmi-iiop over ssl?
    (...wlserver6.1\samples\examples\iiop\ejb\stateless\rmiclient\client.java do not
    speak ssl!)
    Any help will be appreciate from you...
    Best Regards.
    Oliver

  • How write rmi-iiop over ssl with weblogic server 6.1?

    Hello,
    I have written an appication like this:
    - An EJB server running on Weblogic server 6.1
    (named: BankServerHome)
    -A java client calling the BankServer.
    Platform: windows 2000 - jdk1.4
    Now I want to secure the communication with SSL protocol.
    I have done this:
    -generate a key peer with weblogic service named certificate.
    -send the CSR to a CA and place the answer into the weblogic
    server certificate directory.
    -update path for ServerCertificateChainFileName,
    ServerCertificateFileName, ServerKeyFileName into config.xml.
    -launch weblogicServer
         -> server certificate is recognized
         -> listening port 7001 and 7002.
    (-stop weblogicServer!)
    At now, all is all right, errors come hereafter:
    Then I follow the guideline "Programming weblogic Security" (version of 30/07/2001).
    "To use RMI over IIOP over SSL with a Java client, do the following:
    2. Extend the java.rmi.server.RMISocketFactory class to handle SSL socket
    connections. Be sure to specify the port on which WebLogic Server listens for
    SSL connections. For an example of a class that extends the
    java.rmi.server.RMISocketFactory class, see Listing 4-22.
    3. Run the ejbc compiler with the -d option.
    4. Add your extension of the java.rmi.server.RMISocketFactory class to the
    CLASSPATH of the Java client.
    5. Use the following command options when starting the Java client:
    -xbootclasspath/a:%CLASSPATH%
    -Dorg.omg.CORBA.ORBSocketFactoryClass=implementation of java.rmi.server.RMISocketFactory
    -Dssl.certs=directory location of digital certificate for Java client
    -Dssl.key=directory location of private key for Java client"
    At step 3. I found into documentation that -d is linked to a directory name.
    When I run ejbc with this option -d I have the message:
    "ERROR: You must specify an output directory or jar with the -d option to weblogic.ejbc."
    % So what option can I use to run ejbc for secure usage?
    At step 5. Whatever I write for -Dorg.omg.CORBA.ORBSocketFactoryClass,
    this pointed class is not instanciated.
    Then I can not create a socket with my client.
    The folowing exception is raised:
    javax.naming.CommunicationException [Root exception is java.net.ConnectException:
    No server found at T3S://localhost:7002]
    So, my questions are:
    % Why -Dorg.omg.CORBA.ORBSocketFactoryClass must be known by the client and not
    the server?
    My java client part, managing connection is:
    -------------------BEGIN OF CONNECTION MANAGER-------------------
    Properties env = new Properties ();
    // Shouldn't have to do this, but for now you must
    if ( factory.equals ("weblogic.jndi.WLInitialContextFactory") ) {
    env.put ("java.naming.provider.url", "t3s://localhost:7002");
    } else {
    env.put ("java.naming.provider.url", "rmi://localhost:7002");
    InitialContext context = new InitialContext (env);
    BankSessionServerHome bssh = (BankServerHome) context.lookup("BankServerHome");
    BankServer = bssh.create();
    -------------------END OF CONNECTION MANAGER-------------------
    % What is the code for the java client allowing connection with the ejb?
    % And better, can I have a sample example for rmi-iiop over ssl?
    (...wlserver6.1\samples\examples\iiop\ejb\stateless\rmiclient\client.java do not
    speak ssl!)
    Any help will be appreciate from you...
    Best Regards.
    Oliver

    "oliver" <[email protected]> writes:
    First off 1.4 isn't supported as yet. That is probably part of the problem.
    You also must use a corba URL from the client in order for this to work for instance:
    If you are using WLInitialContextFactory:
    corbaloc:iiop:localhost:7001/NameService
    If you are using CNCtxFactory:
    iiop://localhost:7001
    Using rmi: is the wrong thing to do - that will use jrmp or t3.
    However, I suggest that you raise a call with support since there is
    some other trickiness with getting SSL working. We hope to have this
    much improved in SP2.
    andy
    Hello,
    I have written an appication like this:
    - An EJB server running on Weblogic server 6.1
    (named: BankServerHome)
    -A java client calling the BankServer.
    Platform: windows 2000 - jdk1.4
    Now I want to secure the communication with SSL protocol.
    I have done this:
    -generate a key peer with weblogic service named certificate.
    -send the CSR to a CA and place the answer into the weblogic
    server certificate directory.
    -update path for ServerCertificateChainFileName,
    ServerCertificateFileName, ServerKeyFileName into config.xml.
    -launch weblogicServer
         -> server certificate is recognized
         -> listening port 7001 and 7002.
    (-stop weblogicServer!)
    At now, all is all right, errors come hereafter:
    Then I follow the guideline "Programming weblogic Security" (version of 30/07/2001).
    "To use RMI over IIOP over SSL with a Java client, do the following:
    2. Extend the java.rmi.server.RMISocketFactory class to handle SSL socket
    connections. Be sure to specify the port on which WebLogic Server listens for
    SSL connections. For an example of a class that extends the
    java.rmi.server.RMISocketFactory class, see Listing 4-22.
    3. Run the ejbc compiler with the -d option.
    4. Add your extension of the java.rmi.server.RMISocketFactory class to the
    CLASSPATH of the Java client.
    5. Use the following command options when starting the Java client:
    -xbootclasspath/a:%CLASSPATH%
    -Dorg.omg.CORBA.ORBSocketFactoryClass=implementation of java.rmi.server.RMISocketFactory
    -Dssl.certs=directory location of digital certificate for Java client
    -Dssl.key=directory location of private key for Java client"
    At step 3. I found into documentation that -d is linked to a directory name.
    When I run ejbc with this option -d I have the message:
    "ERROR: You must specify an output directory or jar with the -d option to weblogic.ejbc."
    % So what option can I use to run ejbc for secure usage?
    At step 5. Whatever I write for -Dorg.omg.CORBA.ORBSocketFactoryClass,
    this pointed class is not instanciated.
    Then I can not create a socket with my client.
    The folowing exception is raised:
    javax.naming.CommunicationException [Root exception is java.net.ConnectException:
    No server found at T3S://localhost:7002]
    So, my questions are:
    % Why -Dorg.omg.CORBA.ORBSocketFactoryClass must be known by the client and not
    the server?
    My java client part, managing connection is:
    -------------------BEGIN OF CONNECTION MANAGER-------------------
    Properties env = new Properties ();
    // Shouldn't have to do this, but for now you must
    if ( factory.equals ("weblogic.jndi.WLInitialContextFactory") ) {
    env.put ("java.naming.provider.url", "t3s://localhost:7002");
    } else {
    env.put ("java.naming.provider.url", "rmi://localhost:7002");
    InitialContext context = new InitialContext (env);
    BankSessionServerHome bssh = (BankServerHome) context.lookup("BankServerHome");
    BankServer = bssh.create();
    -------------------END OF CONNECTION MANAGER-------------------
    % What is the code for the java client allowing connection with the ejb?
    % And better, can I have a sample example for rmi-iiop over ssl?
    (...wlserver6.1\samples\examples\iiop\ejb\stateless\rmiclient\client.java do not
    speak ssl!)
    Any help will be appreciate from you...
    Best Regards.
    Oliver

  • Automatic Passing of parameters with every RMI Call

    We need the ability to automatically pass a couple of objects, both Strings in this case, with every RMI call we make from our clients (multiple clients) to the servers (multiple servers). Currently I'm using some code that Rickard �berg wrote a while ago that uses UnicastRef.marshalCustomCallData() and UnicastServerRef.unmarshalCustomCallData() so do this. I extended these 2 classes and rolled my own UnicastRemoteObject. This has worked out great but now I need to also use Custom Socket Factories, to get through the firewalls that our customer has. So I thought I could just extend UnicastRef2 and UnicastServerRef2 but when I do the servers never get
    bound to the RmiRegistry.
    We don't want to explicitly add these arguments to all our remote interfaces because we have a bunch of remote object classes and don't want to rely on the programmer sending the correct values or when writing new remote methods making sure that they these arguments are included.
    We're using 1.4.1, but this also fails with 1.3.1.
    The only thing I see in the logs is:
    Oct 2, 2002 1:53:39 PM sun.rmi.server.UnicastServerRef logCall
    FINER: RMI TCP Connection(1)-216.100.254.188: [216.100.254.188: sun.rmi.registry
    .RegistryImpl[0:0:0, 0]: void rebind(java.lang.String, java.rmi.Remote)]
    Oct 2, 2002 1:53:50 PM sun.rmi.server.UnicastServerRef logCall
    FINER: RMI TCP Connection(2)-216.100.254.188: [216.100.254.188: sun.rmi.registry
    .RegistryImpl[0:0:0, 0]: java.rmi.Remote lookup(java.lang.String)]
    Oct 2, 2002 1:53:50 PM sun.rmi.server.UnicastServerRef logCallException
    FINE: RMI TCP Connection(2)-216.100.254.188: [216.100.254.188] exception:
    java.rmi.NotBoundException: FileManager
    at sun.rmi.registry.RegistryImpl.lookup(RegistryImpl.java:106)
    at sun.rmi.registry.RegistryImpl_Skel.dispatch(Unknown Source)
    at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:342
    at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:207)
    at sun.rmi.transport.Transport$1.run(Transport.java:148)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
    at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:4
    60)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport
    .java:701)
    at java.lang.Thread.run(Thread.java:536)
    So anyone know why this doesn't work when I supply the SocketFactories?
    Is there a better way to accomplish this than extending sun.rmi.server classes (which was really easy)? I can supply the source for my classes if it helps, though my UnicastServerRef2 and UnicastRef2 classes are pretty simple.
    Mark.

    First, did you really bind the servers?
    Second, does it work with the socket factories but without your custom Ref classes? I would suspect the socket factories here. Do they have a reasonable override for the Object.equals() method?
    EJP

  • RMI calls-urgent

    hi all,
    can an application server invoke the SOA suite using Remote Method Invocation (RMI) calls. if so give me the advantages and disadvantages of it over SOAP/HTTP.
    thanks,
    terry
    Edited by: user11092657 on 29 Apr, 2009 12:26 PM

    Hi,
    Yes you can use RMI to communicate to your soa suite server allthough i could not get it to work from weblogic 10.3, there is a conflict with certain other libraries. From any other 10.1.3 oracle application server there should not be any problem. The biggest advantage of RMI over SOAP is performance. The soap client also generates lots of logging which can not be disabled, ... i already logged a bug on that. The advantage of SOAP over RMI is its underlying HTTP protocol which is, in some cases, the only protocol allowed by network engineers to pass through firewalls.
    Kind Regards,
    Andre

  • How we can chcek reasons of failed calls over PGW or MGW

    Dear All
    We are using PGW 2200 in Signalling mode with AS5400 as MGW to terminate call over TDM/PSTN. Can anybody let me know how we can check "why attempted call failed or reason of failed call from MGW level or PGW level.
    Here one thing i want to know we are not using any RADIUS server for log or billing. Please tell me how wecan chcek why & where call faield on MGW or PGW or far end operator side with reason.i chcked few document but no comnads i found to check failed reason of attempted calls..
    Please help me with this info.
    Thanks
    Amit--. .

    Hi Amit,
    On the voice gateway you can use the command "show call history voice" to look for the relevant call and it will also tell you the disconnect cause/reason, and may give an indication whether the call disconnected from VoIP side or TDM side. If you don't find the call in there it means that the call didn't reach the voice gateway in the first place. Depending on the call direction this means the call dropped in the PSTN, or in the PGW, or in the rest of the VoIP network.
    If you suspect the PGW, there is no quick and easy command to check why a particular call dropped. Probably the best approach in that case is to capture the problematic call in a Unix snoop trace, making sure you capture the ISUP as well as the ISDN leg of the call and then analyze the trace using Wireshark.
    More advanced PGW call tracing can be done using the MML "sta-sc-trc" command, but to interprete the resulting call trace you may need the PGW expertise of a TAC engineer.
    Sincerely,
    Dirk Christeaens

  • Calls over VPN -- SIP_URL::ParseUrlBase ParseSipUrlParams failed 80004005

    I am finding in my environment that users who are on a VPN remotely have issues making phone calls to anyone else who's internal or even someone
    outside on their cell phone. 
    The VPN client being used is Citrix Access Gateway. 
    User makes calls over the Lync 2010 Client. 
    I turned on Logging and gathered details from the Tracing directory with Snooper and came across these. Any idea of what is going on?
    The person they're trying to call is showing up there as a name instead of a number in the log. Is that normal? 
    Component: UCCP
    Level: ERROR
    Flag: N/A
    Function: N/A
    Source: N/A
    Local Time: 01/23/2015-09:42:24.249
    Sequence# : 00000373
    CorrelationId : N/A
    ThreadId : 1138
    ProcessId : 1134
    CpuId : 0
    Original Log Entry :
    01/23/2015|09:42:24.249 1134:1138 ERROR :: SIP_URL::ParseUrlParams invalid char Q found when trying to parse params
    Component: UCCP
    Level: ERROR
    Flag: N/A
    Function: N/A
    Source: N/A
    Local Time: 01/23/2015-09:42:24.249
    Sequence# : 00000374
    CorrelationId : N/A
    ThreadId : 1138
    ProcessId : 1134
    CpuId : 0
    Original Log Entry :
    01/23/2015|09:42:24.249 1134:1138 ERROR :: SIP_URL::ParseUrlBase ParseSipUrlParams failed 80004005
    Component: UCCP
    Level: ERROR
    Flag: N/A
    Function: N/A
    Source: N/A
    Local Time: 01/23/2015-09:42:24.249
    Sequence# : 00000375
    CorrelationId : N/A
    ThreadId : 1138
    ProcessId : 1134
    CpuId : 0
    Original Log Entry :
    01/23/2015|09:42:24.249 1134:1138 ERROR :: SIP_URL::InternalInitialize ParseSipUrl(sip:John Quincy) failed 80ee0012

    Hi,
    For the VPN, when users connect to the corporate network using a VPN client, Lync media traffic is sent through the VPN tunnel. This configuration can create additional latency and jitter because media traffic must pass through an additional layer of encryption
    and decryption.
    The recommend way is to use a split tunnel for VPN. Then Lync client connects to the Access Edge Server for all signaling connections when on the corporate VPN. In addition, media sessions don’t be allowed to establish connectivity through the VPN tunnel.
    Media sessions will be routed through the A/V Edge Server public interface.
    More details:
    http://blogs.technet.com/b/nexthop/archive/2011/11/15/enabling-lync-media-to-bypass-a-vpn-tunnel.aspx
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Can you change the legth of time (or number of rings) it takes for on iphone 4 to time out making an outgonig call?

    Can you change the legth of time (or number of rings) it takes for on iphone 4 to time out making an outgonig call?
    Mostly it's to call in for radio contests. The Iphone is really good at making a quick call, but it seems to timeout after 15-20 rings. I realise this is a small thing, but free tickets is free tickets.
    Most commenst I see is abotu incoling calls, not outging.
    Thanks.

    No. You can't do this with any phone.

  • I have poor/no service on my iphone 6  in places that I do have service on my old iphone 5.  Takes 10 minutes to send text and webpages will not load but load within seconds on the iphone 5 and forget making a phone call.  How do i resolve this issue??

    I have poor/no service on my iphone 6  in places that I do have service on my old iphone 5.  Takes 10 minutes to send text and webpages will not load but load within seconds on the iphone 5 and forget making a phone call.  How do i resolve this issue??

    Hey kristiac,
    Thanks for the question. If I understand correctly, you have no service on the iPhone. I would recommend that you read this article, it may be able to help the issue.
    If you can't connect to a cellular network or cellular data - Apple Support
    Thanks for using Apple Support Communities.
    Have a good one,
    Mario

Maybe you are looking for

  • Limited or nor connectivity with PC

    Intstalled Time capsule yesterday. Cant get my pc to get internet access with a direct cat 5e wired connection. I get ip address, DNS and Gateway address all look ok, but I cant ping out and the message over the network icons say limited or no connec

  • Frustration setting in!  G4 iPod skips purchased music (tried reset, etc.)

    Hi All - I've been a Mac guy since System 7. I got the iPod knowing that it would "just work" like all things Mac. I've purchased music through iTunes because it's the right thing to do, but I'm beginning to get frustrated with a problem I'm having p

  • Fit artboard to selected artwork including effects

    In Photoshop, if I have a layer with a style such as a drop shadow, and I click on Image > Trim, I can crop the canvas to the exact points where the drop shadow fades out. I want to do essentially the same thing in Illustrator. I have an object with

  • VL10A

    Hi, Can I create collective delivery order by specific sales employee number? In VL10A tab Partners, I specific Partner Function = PE and specific sales employee number but nothing happend after press execute button. Regards, Jr.SD

  • Firefox doesn't load some facebook games

    I am using Firefox 20. I can play Facebook games like Angry birds. Flash player is not the problem because YouTube works fine. games like crazy taxi, cube, backgammon not loading, not even the page - full blank. I tried with other browsers, It works.