Ata 190 not registeing call manager 10.5

HAI
I WAS TRYING TO INSTALL ATA 190 ON CALL MANAGER 10.5
I HAVE INSTALLED DEVICE PACK AND RESTARTED BOTH SERVER,STILL THE NETWORK LED BLIKS FAST AND NO REGISTERING ,I TRIED MANUEL TOO ITS NOT SHOWING REGISTERED.
TFTP SHOWS ALL FILES AVAILABLE.
ATA 187 WAS HAVING NO ISSUES
ALL PHONE S ALL GOOD
PLEASE HELP

Hi Vijay,
Bug could be the issue
ATA190 DHCP Option 150 TFTP server IP address not used
CSCun74479
Description
Symptom:
ATA190 will not use the TFTP server IP address provided by the DHCP server via the option 150 parameter.
ATA will not know which TFTP server to query in order to download its configuration and eventually register to CUCM
Conditions:
ATA 190 with 1.1.0(004) firmware or earlier
Workaround:
There are two workarounds,
1. Define option 15, domain name, on the DHCP server.
2. Configure TFTP server address manually via IVR or webGUI
For IVR, hit ####
Enter password, default is 24726
Enter option 221 to configure TFTP server IP address
For webGUI, go to the webpage
Login as admin,
username admin
password admin
Go to Voice >> Provisioning

Similar Messages

  • My iphone 4 does not register calls made to it. if i make a call from another phone, i can hear it ringing, but it does not register on the iphone. also, i do not get any messages when this happens. then after a day or two it decides to start working.

    My iphone 4 does not register calls made to it. if i make a call from another phone, i can hear it ringing, but it does not register on the iphone. also, i do not get any messages when this happens. then after a day or two it decides to start working.

    Clean iPhone charging port with clean dry toothbrush. See if better. If still problem clean charging port again with toothbrush and small amount of Isopropyl Alcohol.

  • Web service handler could not registered/called in client web service

    Hi Expert,
    I have two web service ServiceA & ServiceB and both implemented in weblogic.
    The ServiceA is SSL enable and protocol is https which is not published by me.
    The ServieB is my web service(wls8.1) and act as client for ServiceA.
    My problem is when i hit my service, its not able set the handler when it call ServiceA but it is invoking the service and giving application exception like authentication error.
    My service file:
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.handler.HandlerInfo;
    import javax.xml.rpc.handler.HandlerRegistry;
    import javax.xml.rpc.handler.soap.SOAPMessageContext;
    import weblogic.webservice.client.SSLAdapterFactory;
    import weblogic.webservice.client.WLSSLAdapter;
    public class HelloService {
    String wsdl = "https://188.122.123.23/RemoetService?WSDL";
    static     {
              SSLAdapterFactory factory =                SSLAdapterFactory.getDefaultFactory();
              WLSSLAdapter adapter = (WLSSLAdapter)     factory.getSSLAdapter();
              adapter.setTrustedCertificatesFile("D:\\lib\\certs\\cacerts");
              factory.setDefaultAdapter(adapter);
              System.setProperty("weblogic.xml.encryption.verbose","true");
              System.setProperty("weblogic.xml.signature.verbose","true");
              System.setProperty("weblogic.webservice.verbose","true");
         public String sayHello(String user) {
              RemoteService_Impl service = new RemoteService_Impl(wsdl);
              RemotePortType port = service.getRemoteServicePort1();
              String namespace = service.getServiceName()
                        .getNamespaceURI();
              QName portName = new QName(namespace,
                        "RemoteServicePortType");
              HandlerRegistry reg = service.getHandlerRegistry();
              List handlerList = new ArrayList();
              Map map = new HashMap();
              map.put("Username", "user1");
              map.put("Password", "pwd1");
              HandlerInfo info = new HandlerInfo();
              info.setHandlerClass(WSClientHandler .class);
              info.setHandlerConfig(map);
              handlerList.add(info);
              reg.setHandlerChain(portName,(List)handlerList);
              RemoteServiceResponse = port.callMe(name);
    My Handler Class:
    package com.test;
    import java.util.Map;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.handler.Handler;
    import javax.xml.rpc.handler.HandlerInfo;
    import javax.xml.rpc.handler.MessageContext;
    import javax.xml.rpc.handler.soap.SOAPMessageContext;
    import javax.xml.soap.Name;
    import javax.xml.soap.SOAPElement;
    import javax.xml.soap.SOAPEnvelope;
    import javax.xml.soap.SOAPException;
    import javax.xml.soap.SOAPHeader;
    import javax.xml.soap.SOAPHeaderElement;
    public class WSClientHandler implements Handler {
         private HandlerInfo handlerInfo;
         public WSClientAuthenticateHandler(){}
         public void init(HandlerInfo hi) {   
              System.out.println("Handler init");
              handlerInfo = hi;
         public void destroy() {
              System.out.println("Handler destroy method called");
              handlerInfo = null;
         public QName[] getHeaders() {
              System.out.println("Handler Header method called");
              try     {
                   Map map = handlerInfo.getHandlerConfig();
                   QName[] headers = handlerInfo.getHeaders();
                   System.out.println(" Config :"+map);
                   for(int i=0;i<headers.length;i++)     {
                        System.out.println(headers.getLocalPart()+" "+
                        headers[i].toString()+" "+headers[i].getNamespaceURI());
              }catch(Exception e)     {
                   e.printStackTrace();
              return handlerInfo.getHeaders();
         public boolean handleRequest(MessageContext mc) {   
              SOAPMessageContext smc = (SOAPMessageContext) mc;
              System.out.println("Calling handler class.....................");
              try     {
              SOAPEnvelope se =      smc.getMessage().getSOAPPart().getEnvelope();
              System.out.println("Calling handler class.....................");
         SOAPHeader soapHeader = se.getHeader();
         Name headerName = se.createName("Security","wsse","http://schemas.xmlsoap.org/ws/2002/07/secext");
         SOAPHeaderElement headerElement = soapHeader.addHeaderElement(headerName);
         SOAPElement element = headerElement.addChildElement(se.createName("UsernameToken", "wsse", "http://schemas.xmlsoap.org/ws/2002/07/secext"));
         element.addChildElement(se.createName("Username", "wsse","http://schemas.xmlsoap.org/ws/2002/07/secext")).addTextNode("testuser");
         element.addChildElement(se.createName("Password", "wsse","http://schemas.xmlsoap.org/ws/2002/07/secext")).addTextNode("testpwd");
         System.out.println("Calling handler class.....................");
                   System.out.println("** Request: \n "+se.toString()+"\n");
              }catch(SOAPException e)     {
                   e.printStackTrace();
              return true;
         /** * Specifies that the SOAP response message be logged to a
         * log file before the
         * * message is sent back to the client application
         * that invoked the Web service.
         public boolean handleResponse(MessageContext mc) {  
              System.out.println("Handler Response method called");
              SOAPMessageContext messageContext = (SOAPMessageContext) mc;
              System.out.println("** Response: \n"+messageContext.getMessage().toString()+"\n");
              return true;
         /** * Specifies that a message be logged to the log file if a SOAP fault is
         * * thrown by the Handler instance.
         public boolean handleFault(MessageContext mc) {   
              SOAPMessageContext messageContext = (SOAPMessageContext) mc;
              System.out.println("** Fault: \n"+messageContext.getMessage().toString()+"\n");
              return true;
    Please need help here.
    Thanks in Advance,
    pps

    I have tested static client calling using handler simple above service and found the issues.
    QName portName = new QName(namespace,
    *"RemoteServicePortType");*
    The above line code has created the issues,becuase in wsdl file ( given similar wsdl file).
    <?xml version="1.0"; encoding="UTF-8"?>
    <definitions name="HelloService"
    targetNamespace="http://www.ecerami.com/wsdl/HelloService.wsdl"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://www.ecerami.com/wsdl/HelloService.wsdl"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <message name="SayHelloRequest">
    <part name="firstName" type="xsd:string"/>
    </message>
    <message name="SayHelloResponse">
    <part name="greeting" type="xsd:string"/>
    </message>
    <portType name="*RemoteServicePortType*">
    <operation name="sayHello">
    <input message="tns:SayHelloRequest"/>
    <output message="tns:SayHelloResponse"/>
    </operation>
    </portType>
    <binding name="Hello_Binding" type="tns:*RemoteServicePortType*">
    <soap:binding style="rpc"
    transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="sayHello">
    <soap:operation soapAction="sayHello"/>
    <input>
    <soap:body
    encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
    namespace="urn:examples:helloservice"
    use="encoded"/>
    </input>
    <output>
    <soap:body
    encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
    namespace="urn:examples:helloservice"
    use="encoded"/>
    </output>
    </operation>
    </binding>
    <service name="Hello_Service">
    +<port binding="tns:Hello_Binding" name="*RemoteServicePortType1*">+
    +<soap:address+
    location="http://host1:8080/soap/servlet/rpcrouter"/>
    +</port>+
    +<port binding="tns:Hello_Binding" name="*RemoteServicePortType2*">+
    +<soap:address+
    location="http://host2:8080/soap/servlet/rpcrouter"/>
    +</port>+
    +<port binding="tns:Hello_Binding" name="*RemoteServicePortType3*">+
    +<soap:address+
    location="http://host3:8080/soap/servlet/rpcrouter"/>
    +</port>+
    +<port binding="tns:Hello_Binding" name="*RemoteServicePortType4*">+
    +<soap:address+
    location="http://host4:8080/soap/servlet/rpcrouter"/>
    +</port>+
    </service>
    </definitions>
    From the above WSDL, I have four port name (port binding="tns:Hello_Binding" name="*RemoteServicePortType1*) which is not matching with PortType (portType name="*RemoteServicePortType*")
    even i have iterated from getPorts() method and used to invoke the service.But handler was not calling when i invoke.
    Please guide me here how i specify correct portname which can call Handler class also.
    Thanks in advance,
    pps

  • WS6608 blade - port not registering to Call Manager

    I'm having issues with my WS-6608 blade communicating with my Call manager. I have a total of 8 ports on this blade which
    4 are currently active. The configuration is basically the same as the other active ports. Port 7/6 is not registering to my call manager. please help

    the potr does not look like to be connected. Make sure 7/6 connected to the PSTN and there is actual connection?

  • MTP and CFB of call manager not registered

    dears,
    some thing strange is going on which i never face in my life. by default the mtp and cfb are registered but they are not registered while all other media ann and moh are registered
    that's only for pub but sub all are working fine

    is the run flag for MTP & CFB under "Cisco IP Voice Media Streaming" service parameter set to True?
    can you try changing the device pool and reset it once please?

  • Can't remove registered ephone in call-manager-fallback

    This ephone and dn keeps registering so long as call-manager-fallback is not shutdown.
    RTR001#show ephone registered
    ephone-1[0] Mac:0FD4.9DA0.D415 TCP socket:[1] activeLine:0 whisperLine:0 REGISTERED in SCCP ver 6/5 max_streams=1
    mediaActive:0 whisper_mediaActive:0 startMedia:0 offhook:0 ringing:0 reset:0 reset_sent:0 paging 0 debug:0 caps:7
    IP:10.32.21.183 * 26602 SCCP Gateway (AN)  keepalive 4 max_line 2 available_line 1 dual-line
    port 2/0/21
    button 1: cw:1 ccw:(0)
      dn 2  number 4851  CM Fallback CH1   IDLE
    Preferred Codec: g711ulaw
    Lpcor Type: none
    The MAC 0FD4.9DA0.D415 identifies port 21 on a Cisco VG224. After shutting down that voice-port, the ephone doesn't register when call-manager-fallback is enabled.

    Well, that is one idea that I've already had, Linc, but I'm reluctant to use the "nuclear option" for obvious reasons. I'm actually wondering now if the Secure Cert / OD problem is affecting Profile Manager. See this thread: https://discussions.apple.com/message/23686348#23686348

  • What is call manager doing with Jabber guest if you have no endpoints registered to Call manager?

    Our Call  Manager deployment is in it's VERY early stages. We have a Telepresence infrastructure at the moment (VCS Control and Expressway). All of our TP endpoints and Jabber Telepresence clients are registered to the VCS. What is going on that the Jabber guest and VCS server need call manager for? I know it's REQUIRED in the manual and I saw a slide somewhere that said using Jabber Guest without Call manager is NOT SUPPORTED.
    Realistically though, I might not get permission to build a SIP trunk between the new Call manager and VCS for some time..so...supported or not will it work without call  manager or is there something going on that's critical on call manager to make it work regardless of the fact that there is nothing registered to CUCM?
    thanks!

    Hi Douglas,
    As you've gathered this configuration is not supported, and hence we don't actively test it or document it.  That said, it should work fine
    Mike

  • What will happen if Conference Bridge (CFB) is not registered with Call Manger?

    I have a MRG consists of two CFB, it is found one is registered with CCM, the other is not.  some users complain that the ad-hoc conference soft button is not working. So is that due  one of the CFB is not registered? (I know all same type of resource within a MRG will be round-robin balanced).
    will happen Call Manager allocate an unregistered CFB?

    It will not allocate the unregistered one. Media Resource Manager will look for the available resources registered with CUCM according to the configuration and allocate the one thats available.
    -Terry
    Please rate all helpful posts

  • Call Manager register fxs port with voice gateway- problem

    I have a CUCM 6 and a Voice Gateway V224. I've configured the voice gateway's voice FXS ports as MGCP.
    I have a Voip connected and registered to the CUCM and a Pots phone connected to the Voice Gateway.
    If i dial from the Voip to the Pots phone it rings. The problem is that i cannot ring from the Pots to the Voip phone.
    I have no dial tone.
    If i write no shut down on the  voice port i have a tone. If i configure mgcp on the voice port i have a busy ringtone.
    I've entered no mgcp and mgcp commands and i've reset the voice gateway.
    How can i call from the pots to the voip phone?
    The ios version on the voice gateway is Version 12.4(22)T4.
    Here is an outghtput from the Voice gateway.
    ccm-manager mgcp
    ccm-manager fax protocol cisco
    ccm-manager music-on-hold
    ccm-manager config server 10.1.1.33
    ccm-manager config
    mgcp
    mgcp call-agent CCMIOSS 2427 service-type mgcp version 0.1
    mgcp rtp unreachable timeout 1000 action notify
    mgcp modem passthrough voip mode nse
    mgcp package-capability rtp-package
    mgcp package-capability sst-package
    no mgcp package-capability res-package
    no mgcp timer receive-rtcp
    mgcp sdp simple
    mgcp validate domain-name
    mgcp rtp payload-type g726r16 static
    mgcp profile default
    timeout tone busy 600
    timeout tone dial 600
    dial-peer voice 999223 pots
    service mgcpapp
    port 2/23
    dial-peer voice 999222 pots
    service mgcpapp
    port 2/22
    dial-peer voice 999888 pots
    service mgcpapp
    port 2/23
    The CUCM 6 is registered with the voice gateway.

    Is your campaign using CPA? If so, what's the behavior if CPA is not enabled? 
    I think the best thing to do is to run a trace...
    Call Manager > Cisco Unified Serviceability > Trace > Configurations
    Select a CUCM server - any subscriber would work. 
    Service Group - CM Services
    Cisco CallManager (Inactive)
    Enable SIP Stack Trace and apply to all nodes. Download and install RTMT
    Make a bunch of outbound tests and then open RTMT > Trace & Log Central > Collect Files > Check "All Servers" for Cisco CallManager > Next > Next > Relative Range if you made the test calls within the last X minutes, otherwise you can set a From and To datetime. Click Finish and go through your SDL logs and see what errors you find and post them here. 
    Also, make sure your phone is in the correct CSS in Call Manager

  • Sap to non sap connection ( program not registered/cpic-call

    Hi all,
        Im trying to connect sap to siebel system.IN TCP/IP connections iv selected register program id & passed the parameters ...program id,gateway host and gateway service
    i followed michal krawczyk steps & also checked in smgw
    transaction also but program id is not registered there
            im getting error like program sapprog not registerd cpic/call
    <b>Detailed error</b>
         <b>Error</b> - program sapprog is not registsred
         <b>location</b> - sap gateway on host saple / sapgw01
         <b>detail</b> - Tp sapprog is not register
         <b>component</b> - gateway
         <b>counter</b> - 387
        <b> module</b> -gwr3cpic
         <b>line-</b> 1621
         <b>return code</b> - 679
         <b>subrc</b>  - 0
               please try to help me out in this issue. all inputs r rewarded. 
      Regards,
      Lavanya

    Hi
    Thanks prince,iv checked entries in sm59,  i checked smgw tranaction(gateway monitor) for logged on clients
    its showing like this
    number/luname/tpname/sys.type/hostname/hostaddres/last req
    0 /sapnav/sapgw00/local_r3/sapnav.sapdomain.com/192.158.3.219
    if i double click on above...
    read/write socket = 4
    handle = 4
    time = tue jan 26 16:54:13 2006
    socket = 1652
    stat = ni_connected
    type = stream ipv4
    out = 1122 messages 64 bytes
    in = 1 messages 64 bytes
    local =127.0.0.1:3300
    remote = 127.0.0.1:1848
    options =
    lu = sapnav
    tp = sapgw00
    lon lu = sapnav
    long tp = sapgw00
    ext program = 0
    no conversation = 24
    appc version = 6
    hostaddr[0] =
    hostaddr[1] = 127.0.0.1
    offset in = 0
    timeouts in = 0
    connected = tue jan 24
    last req = mon jan
    request block number in= -1
    connection out = -1
    target out = -1
    offset out = 0
    restlen out = 0
    timeouts out = 0
    request block number out = -1
    accept info = einfo
    snc forced = 0
    <b>just see gateway monitor 4 sapnav/parameters & attributes</b>Profile
    parameter              Value
    gw/max_sleep           20
    gw/conn_disconnect     900
    gw/conn_pending        60
    gw/gw_disconnect       1800
    gw/req_stack_size      30
    gw/max_conn            500
    gw/max_wp              0
    gw/max_conn_per_wp     10
    gw/cpic_timeout        20
    gw/deallocate_timeout  600
    gw/reg_timeout         60
    gw/reg_lb_level        1
    gw/reg_lb_default      20
    gw/side_info    C:\usr\sap\D01\DVMGS00\data\sideinfo.DAT
    gw/sec_info     C:\usr\sap\D01\DVMGS00\data\secinfo.DAT
    gw/startup     C:\usr\sap\D01\DVMGS00\data\gwstartup.DAT
    gw/stat                0
    gw/tcp_security        1
    gw/cpic_security       1
    gw/max_sys             300
    gw/max_shm_req         50
    gw/max_shm_req_per_conn 10
    gw/max_overflow_size    5000000
    gw/max_overflow_usage   10
    gw/keepalive            300
    gw/reg_keepalive        300
    gw/compatibility        0
    gw/monitor              1
    gw/netstat_once         1
    gw/close_routes         120
    gw/timeout              0
    gw/internal_timeout     0
    gw/nitrace              0
    gw/accept_remote_trace_level 1
    gw/resolve_timeout      0
    rdisp/max_gateways      100
    rdisp/max_comm_entries  500
    rdisp/sna_gateway       sapnav
    rdisp/sna_gw_service    sapgw00
    rdisp/TRACE_LOGGING     OFF
    gw/rem_start            REMOTE_SHELL
    gw/remsh rsh
    exe/gwrd           C:\usr\sap\D01\SYS\exe\run\gwrd.EXE
    snc/enable               0
    snc/permit_insecure_start 0
    Attributes
    Release 640
    Release no 6400
    internal version 2
    start time Tue Jan 24 16:53:47 2006
    build time Aug 17 2004 23:33:51
    build with Unicode TRUE
    build with Threads TRUE
    gateway hostname sapnav
    gateway service sapgw00
    req_sync_limit 24
    appc_ca_blk_size 34396
    gwreq_ln 34588
    appcdata_ln 34316
    overflow_size_limit 500000
    overflow_use 0
    trace level 1
    trace level external programs 2
    PID Gateway Reader 4952
    internal version 2
    Shared memory Sizes in bytes
    CONN_TBL entry 1748
    CONN_TBL total 874000
    STATISTIC area 1392
      iv changed some values for my safety.plz check it and let me know the error to register program id. Hope ull solve my issue this time.
    Thanks in advance,
    Lavanya.

  • CPIC-CALL Transaction program not registered Error while creating RFC Desti

    Hi All,
    I am trying to create a new RFC Destination.
    Details I have provided are..
    1.RFC Destination Name
    2.Connection Type - TCP/IP
    3.Description
    4. Activation Type - Registered Server Program.
    5.Program Id.
    6. Gateway Host and Gateway Service.
    But When I Test the connection, I am getting the following error.
    <b>" program xyz not registered / CPIC-CALL: 'ThSAPECMINIT'# Transaction program not registered"</b>
    However I was able to create and connect RFC Destinations successfully previously.
    I am not SAP guy. Could someone help resolve this issue.
    Thanks,
    Phani

    hi Sekhar,
    I request you to please help me out in this issue. I am getting similar kind of problem. I am trying to replicate the customer from CRM to R/3 and i get a bdoc message in SMW01 that "RFC connection failed please press the save button again". When the basis team further investigated they came up with the below error..
    User: CRREMOTE (Client: 071)
    Destination: OCR (handle: 1, , )
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1462
    CPIC-CALL: 'ThSAPECMINIT'
    Transaction program not registered
    DEST =OCR
    HOST =%%RFCSERVER%%
    PROG =dpssrfc
    Trace file opened at 20061121 140451 EST SAP-REL 640,0,109 RFC-VER
    3 804778
    resize I/O buffer to 28000 bytes
    >>>> [2] MQ_LINK      : TCP  <ac: 3> K %%RFCSERVER%% >>> OPEN
      {45632F14-288E-0046-0000-0000A888A7AA}-
    ======> CPIC-CALL: 'ThSAPECMINIT'
    can you please tell me where can be probelm. Regarding your message, where can i get the communication channel to assign the program id.
    Awaiting your reply,
    Thanks & Regards,
    Yogesh

  • Call Manager will not activate in CUCM 7

    i have installed cucm 7 and can get to it with windows IE, but when i try to activate call manager in the cisco unified servicability it give me this error:
    Update Failed for the Service(s): Cisco CallManager Request unsuccessful to license manager(Please check the Licensing logs for further details)
    i can not add any phones or do anything.
    can someone help.

    Hello Sanil,
    You have to check your services on your publisher and subscriber , or you  can use ssh and login to your publisher and check if the replication   between your pubisher and subscriber is perfect or not. Most likely services not started yet.
    Br,
    Nadeem

  • Working w/adobe cs6 - it now won't update adobe acrobat. Adobe found that I am not registered in a sudoer file and said that I had to call Apple. They said I should submit it to this forum.

    I have installed Adobe cs6. After doing so, Adobe Acrobat will not update. I have been trying to solve this problem with Adobe now for 3 months. Today they say they discovered that I was not in a file named "sudoers file." They told me they could not solve that but that I had to call Apple for a solution. I called Apple and they told me that they could do nothing about it (I'm still not sure whether or not they even admitted that it is one of their files). They suggested coming to this forum for a solution.

    Their latest is that my file is not registered in sudoers, whatever that is
    There are two files named sudoer.vim on my drive (each in a different folder). They're text files. Both are very well hidden and the contents of either would mean little to anyone not versed in terms used in the text. What Adobe could possibly mean by "your name not being in the file" is anyone's guess. My actual name or user account name isn't in any of the files, either, and my apps work just fine.
    There is another text file named sudoers (no file extension) that appears to be a list of who has sudo privileges. But again, it's well hidden, requires an admin password just to open it, and means nothing without knowing what to modify, or how without ruining the file.
    Which kind of leads back to this:
    "Adobe Acrobat application was modified."
    Have you run Monolingual or other utility that removes foreign languages from the drive? If so, you can't let it touch certain apps (like anything from Adobe) or you will run into problems like this. Usually, Acrobat won't even launch if pieces of it have been removed, even if those pieces are completely unimportant.
    If nothing else, just reinstall Acrobat from the original disk or downloaded .dmg purchase.

  • Cisco Call Manager Administration Page Drop down menu not working

    I'm running the mobile app browser on my Xoom tablet and when I log into Cisco Call Manager Administration page I get the menu's but it will not pull down the options. The same issue happens in google chrome. I use your browser on my desktop and have no issues logging into Cisco Call Manager Administration page and getting the drop down menu's to appear but the mobile version of your browser is not working. Is there a work around? I tried changing the UAString to Desktop, iPad etc and the issue is still there.

    Thanks but I've tried all that. It happens in Chrome also. I've tried Opera and it works on that. I've read other forums and it looks like a Java script issue that Chrome and now Firefox Mobile cannot seem to resolve. My preference is Firefox and I'm sure as more tablets get out then this will be solved at some point. I just don't know how it is prioritized. I do know that in order for Androids to be viable in the business sector they need to address issues like these with a higher priority.

  • Host not registering with the Management Center

    Hello,
    We have CSA MC v5.2. I have put a pre-defined CSA on a server (seperate from the CSA MC), which installed successfully and the MC sees the host.
    However, although a pre-defined CSA is successfully installed on a host (non-server), I am unable to get the MC to see it. On the host, the CSA simply states that it's, "Not registered with the Management Center."
    Please help in resolving this.
    Also, is there a Windows Vista fix? Currently, I am unable to get the CSA to install on Vista.
    ~ Mike

    If you look at the CSA log file, it will tell you an error code for why the connection is failing. Use the list below to determine what your error code means...
    OKENA_STATUS_INVALID_SYSTEM_CONFIGURATION = 2000,
    OKENA_STATUS_ICC_FAILED_GET_HANDLE = 2001,
    OKENA_STATUS_ICC_FAILED_TO_WRITE = 2002,
    OKENA_STATUS_ICC_FAILED_TO_READ = 2003,
    OKENA_STATUS_ICC_INVALID_TOPOLOGY = 2004,
    OKENA_STATUS_ICC_INVALID_INITIATOR_COMP = 2005,
    OKENA_STATUS_ICC_INVALID_PAYLOAD_SIZE = 2006,
    OKENA_STATUS_ICC_INVALID_VERSION = 2007,
    OKENA_STATUS_ICC_INVALID_COMP_ID = 2008,
    OKENA_STATUS_ICC_INVALID_PAYLOAD = 2009,
    OKENA_STATUS_GROUP_DOES_NOT_EXIST = 2010,
    OKENA_STATUS_INVALID_REGISTRATION_PARAMS = 2011,
    OKENA_STATUS_HOST_HAS_REGISTERED_BEFORE = 2012,
    OKENA_STATUS_INVALID_CONTACT_INFO = 2013,
    OKENA_STATUS_HOST_NOT_REGISTERED = 2014,
    OKENA_STATUS_MISSING_CONTACT_INFO_PARAMS = 2015,
    OKENA_STATUS_INVALID_REGISTRATION_ID = 2016,
    OKENA_STATUS_ICC_INVALID_BYTE_ORDER = 2017,
    OKENA_STATUS_ICC_NOT_INITIALIZED = 2018,
    OKENA_STATUS_COMP_CONFIGURED = 2019,
    OKENA_STATUS_UNDEFINED_MGMT_SERVER = 2020,
    OKENA_STATUS_HTTP_TRANSACTION_FAILED = 2021,
    OKENA_STATUS_ICC_INVALID_HANDLE = 2022,
    OKENA_STATUS_SERVER_IS_REACHABLE = 2023,
    OKENA_STATUS_HTTP_TIMEOUT = 2024,
    OKENA_STATUS_ICC_NO_CONNECT_MUTEX = 2025,
    OKENA_STATUS_FORCE_POLLING_NOW = 2026,
    OKENA_STATUS_REGISTRATION_REJECTED = 2027,
    OKENA_STATUS_LOAD_CONFIG = 2028,
    OKENA_STATUS_DB_ERROR = 2029,
    OKENA_STATUS_LICENSE_REACHED_LIMIT = 2030,
    OKENA_STATUS_REGISTRATION_NOT_ALLOWED = 2031,
    OKENA_STATUS_NOT_ALLOWED_TO_STOP_AGENT = 2032,
    OKENA_STATUS_CLIENT_UI_NOT_ALLOWED = 2033,
    OKENA_STATUS_FAILED_TO_PRINT_AGENT_REPLY = 2034,
    OKENA_STATUS_INVALID_LICENSE = 2035,
    OKENA_STATUS_TIMED_OUT = 2036,
    OKENA_STATUS_REGISTRATION_BACKOFF = 2037,
    OKENA_STATUS_TESTMODE_ON = 2038,
    OKENA_STATUS_TESTMODE_OFF = 2039,
    OKENA_STATUS_INVALID_SERVER_FQDNS = 2040,
    OKENA_STATUS_INVALID_SERVER_IPADDR = 2041,
    OKENA_STATUS_SERVER_DNS_NOT_RESOLVABLE = 2042,
    OKENA_STATUS_SERVER_IPADDR_NOT_OWN = 2043,
    OKENA_STATUS_SERVER_DNS_NOT_OWN = 2044,
    OKENA_STATUS_SERVER_NAME_NOT_FQDNS = 2045,
    OKENA_STATUS_FAILED_OPEN_PROCESS = 2046,
    ** please rate if this helps**

Maybe you are looking for

  • Why can't I check out a project?

    I've got TFS 2013 Express installed on my desktop PC (an older HP Pavilion Elite desktop running Windows 8.1 Pro). Sometimes when I get into Visual Studio 2013, open up a solution and try to check out a project within the solution, with less than 100

  • Creative MediaSource Playlist to Winamp Playl

    Hello, I'm just wondering if it is possible to take a Creative MediaSource Organizer playlist and turn it into a playlist that can be used in Winamp. I don't really like using anything other than Winamp to play music, and I don't feel like recreating

  • Serial number when production order creation in MTO

    Dear sir serial number profile assinged in the material master of finfished product . i have sales ordernumber    x  and  qty for finished product 10EA. when i run md50 for mto . then pland order qty converted to production order for 10ea. then produ

  • Apply 1 color palette to 40 AI files, at once...?

    I have built 40 charts, using PMS colors. Now I have to convert all these charts to CMYK. I have a color pallete saved, as a separate doc., and I can pull it in through the library. Is there a way to do this swatch change globally? Swatches names sta

  • The sales document cannot be blocked

    Hi, Our client has deleted some shipment directly from the R/3 system. The Client is using CRM  System for Sales and Marketing. Now whenever we are opening the system in the change mode it is giving error "The sales document cannot be blocked" Error