Webservice not ready - no response

Hi!
I hope I am in the right place to ask my question.
I have a mobile Flex project in which I have to work with WSDL. I followed some tutorials and think that I should have everything needed to communicate with the server (the code there is implemented by a colleague of mine).
My client side looks like this:
protected function callWebService():void
     var ws:services.myservices.MyService = new MyService();
     var responder:AsyncResponder = new AsyncResponder( handleResult, handleFault );
     var token:AsyncToken = ws.MyMethod("test");
     token.addResponder(responder);
private function handleResult(result:Object) : void
     // not called
private function handleFault(event:Object) : void
     // not called
I thought with the AsyncResponder added to my token one of the methods handleResult and handleFault should be called but it isn't. I don't get an exception, but there isn't a result either. Just nothing happens.
So I debugged a little more and came to the class mx.rpc.soap.Operation.as with the method "send". I stepped through this method and everything seemed fine until I got to the end of the method where there is this piece of code:
var pc:OperationPendingCall = new OperationPendingCall(argsToPass, combinedHeaders, token);   
if (webService.ready)      // here ready is always false
     invokePendingCall(pc);
else // if (!webService.wsdlFault)
     log.debug("Queueing SOAP operation {0}", name);
     if (!pendingInvocations)
          pendingInvocations = [];
     pendingInvocations.push(pc);
Because webService.ready is always false, my SOAP call is never made I think. What can I do? Where's the problem? I couldn't find any hint...
Thank you for reading and helping (hopefully)!
Edit: I forgot to add that when I test my method with Flash Builder (with the GUI) I get the following error: "InvocationTargetException:Beim Erstellen der  SOAP-Anforderungsmeldung ist ein Fehler  aufgetreten. Ursache:java.lang.ArrayIndexOutOfBoundsException: 2"
But unfortunately this is not helping me.

I did find more things out.
With this webservice I had no problem getting the answer I expected:
http://www.kirupafx.com/WebService/TopMovies.asmx?WSDL
So I tested a bit more with that and with our own webservice and finally could test the methods via the GUI when I filled out every parameter. Before, I left some of them empty (which should work on the serverside but didn't on Flash Builder side - by the way: is there a way to tell Flash Builder that it should accept empty strings?). But the XML which I got as answer didn't give a result and when I called the webservice via code the "handleResult" or "handleFault" method was still not called (but with the TopMovie webservice it was).
My collegue and I were then testing with wireshark and found out that the two webservices use different protocols.
TopMovie uses document-literal while he used rpc encoded. So with rpc encoded there is some security issue (http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_3.html) which is why the webservice is never really called. He has to add a crossdomain.xml on the serverside or something like that. But he is not that sure about that because with wireshark we never saw a call for that. But I'm confident that we will find out.

Similar Messages

  • RFC - XI - WebService :: Not getting complete Response from WS

    Hi
    I am working on a following Synchronous scenario
    <b>SAP R/3 --> Sender RFC Adapter --> XI --> Rec. SOAP Adapter --> MI Web Service</b>
    Now I tested the structure of Request/Response Message from WebService in XML Spy, & designed my Request/Response Message structure in XI based on that.
    Now when I am sending the request from <u>XML Spy</u>,the Response message which is coming is this -->
    <i><?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <soapenv:Body>
              <ns1:getResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://www.MI/util">
                   <getReturn href="#id0"/>
              </ns1:getResponse>
              <multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:AddressDTO" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns2="http://to.MIutil.com">               
                   <latitude href="#id1"/>               
                   <longitude href="#id2"/>               
                   <postcode xsi:type="soapenc:string">111</postcode>
                   <state xsi:type="soapenc:string">XYZ</state>
                   <streetName xsi:type="soapenc:string">NYDEL</streetName>
                   <streetNumber xsi:type="soapenc:string">444</streetNumber>
                   <streetType xsi:type="soapenc:string">ST</streetType>
                   <suburb xsi:type="soapenc:string">SQY</suburb>               
              </multiRef>
              <multiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:double" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">-33.87571285585008</multiRef>
              <multiRef id="id2" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:double" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">51.20783220341076</multiRef>
         </soapenv:Body>
    </soapenv:Envelope></i>
    { <b>Pls. take note that it is referring variables</b>}
    But when I am sending the Request from SAP R/3 <u>using SAP XI</u>, I am getting the Response message from WebService like this -->
    <i><?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <ns1:getResponse xmlns:ns1="http://www.MI/util" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
      <getReturn href="#id0" />
      </ns1:getResponse></i>
    which suggest that operation is getting called successfully & response is coming back.
    Can you tell me what is the reason that why I am not getting the rest of the response .
    Regards
    - Lalit Chaudhary -

    Hi,
    Yes it can be possible, you have to maintain SOAP Header.
    please see the below links..
    How to extract XI-header fields from XI-message in JAVA?
    /people/sap.user72/blog/2005/12/11/how-to-apply-themes-in-exchange-infrastructure
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c50cddbb-0601-0010-92a7-f2a40ca68e6d
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=href%20%20in%20xi&cat=sdn_all
    Regards
    Chilla..

  • HP Officejet Pro L7590 &/or HP Slimline computer NOT ready for market

    I purchased the Officejet last August and used in through December with a Dell with no problems whatsoever. When I bought an HP Slimline with Vista 64 the printer started spitting out a dozen pages with a few lines of garbage characters for each document including the Test Page, and did not completely print the documents. I spoke with three technicians who were all given remote access. We each spent about 3 hours per session. They were unable to make ANY progress in solving the problem. HP provided a VISTA 64 installation disk. It should not have done so. HP has taken no responsibility for releasing a product to market that is not ready for use but will not accept it back and will not give credit for the expensive paper weight that it has become. Moral of story: stick with Dell, don't buy anything from HP.

    Thanks for visiting the HP Consumer Support Forums.
    This
    forum is for suggestions directly related to the forums.  If you'd like
    to leave feedback regarding issues not directly related to the forums,
    please follow this link:
    http://welcome.hp.com/country/us/en/contact_us.html
    This
    is a user-to-user community, and not a venue to receive directly help
    or feedback from HP.  If you have any further questions or concerns,
    please feel free to send me a Private Message.
    Thanks!
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!
    Rules of Participation

  • IDoc to webservice and get the response back into another IDoc.

    Hi guys
    We have a scenario where we need to send an IDoc to webservice and get the response back into another IDoc.
    Questions:
    1. Is this scenario possible without a BPM? or do we need to use BPM (Sync-Async bridge).
    2. Is there a Async to Sync bridge in BPM?
    3. How do I use this bridge in my scenario and customize it?
    4. If not possible, provide me the related docs using BPM for the same scenario.
    Appreciate your quick response
    Regards
    Naidu

    Hi,
    this link may help u............,
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1134. [original link is broken] [original link is broken] [original link is broken]
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403. [original link is broken] [original link is broken] [original link is broken]
    Regards,
    Azeez khan.

  • "Drive not ready" can't boot the Sun Enterprise 250 Server 400MHz

    Hi,
    Because I can't ping it and got no response on the console, so I had to reboot the E250 server.
    When I reboot SUN E250, I got the following message on the console and then it stops.
    Sun (TM) Enterprise 250 (2 X UltraSPARC-II 400MHz), No Keyboard
    OpenBoot 3.16, 1024 MB memory installed, Serial #15131886.
    Ethernet address 8:0:20:e6:e4:ee, Host ID: 80e6e4ee.
    Drive not ready
    When I turned to diagnostic mode, I got the
    Rebooting with command: boot
    Boot device: net File and args:
    Using Onboard Transceiver - Link Up.
    Timeout waiting for ARP/RARP packet
    Timeout waiting for ARP/RARP packet
    Timeout waiting for ARP/RARP packet
    When I reboot it, I got the following message on the console and then it stops.
    Sun (TM) Enterprise 250 (2 X UltraSPARC-II 400MHz), No Keyboard
    OpenBoot 3.16, 1024 MB memory installed, Serial #15131886.
    Ethernet address 8:0:20:e6:e4:ee, Host ID: 80e6e4ee.
    Drive not ready
    When I turned to diagnostic mode, I got the
    Rebooting with command: boot
    Boot device: net File and args:
    Using Onboard Transceiver - Link Up.
    Timeout waiting for ARP/RARP packet
    Timeout waiting for ARP/RARP packet
    Timeout waiting for ARP/RARP packet
    {0} ok printenv
    Variable Name Value Default Value
    tpe-link-test? true true
    scsi-initiator-id 7 7
    keyboard-click? false false
    keymap
    ttyb-rts-dtr-off false false
    ttyb-ignore-cd true true
    ttya-rts-dtr-off false false
    ttya-ignore-cd true true
    ttyb-mode 9600,8,n,1,- 9600,8,n,1,-
    ttya-mode 9600,8,n,1,- 9600,8,n,1,-
    pci-slot-skip-list none none
    pci0-probe-list 1,3,2,4,5 1,3,2,4,5
    upa-port-skip-list none none
    diag-level min min
    diag-script normal normal
    diag-targets none none
    diag-trigger power-reset power-reset
    diag-continue? false false
    diag-passes 1 1
    diag-verbosity tests tests
    More [<space>,<cr>,q,n,p,c] ? env-monitor enabled enabled
    mfg-options server
    #power-cycles 142
    system-board-serial# 5015440072176
    system-board-date 3a06ad42
    fcode-debug? false false
    output-device ttya screen
    input-device ttya keyboard
    load-base 16384 16384
    boot-command boot boot
    auto-boot? true true
    auto-boot-on-error? false false
    watchdog-reboot? false false
    diag-file
    diag-device net net
    boot-file
    boot-device disk:a disk net disk net
    local-mac-address? false false
    ansi-terminal? true true
    screen-#columns 80 80
    screen-#rows 34 34
    silent-mode? false false
    use-nvramrc? false false
    More [<space>,<cr>,q,n,p,c] ? nvramrc
    security-mode none
    security-password
    security-#badlogins 0
    oem-logo
    oem-logo? false false
    oem-banner
    oem-banner? false false
    hardware-revision 80 80 80 80 80 80 80 80 ...
    last-hardware-update
    diag-switch? false false
    {0} ok devalias
    screen /pci@1f,4000/TSI,gfxp@5
    disk5 /pci@1f,4000/scsi@3/disk@c,0
    disk4 /pci@1f,4000/scsi@3/disk@b,0
    disk3 /pci@1f,4000/scsi@3/disk@a,0
    disk2 /pci@1f,4000/scsi@3/disk@9,0
    disk1 /pci@1f,4000/scsi@3/disk@8,0
    disk0 /pci@1f,4000/scsi@3/disk@0,0
    disk /pci@1f,4000/scsi@3/disk@0,0
    scsi /pci@1f,4000/scsi@3
    cdrom /pci@1f,4000/scsi@3/disk@6,0:f
    ta¾pe /pci@1f,4000/scsi@3/tape@4,0
    pcia /pci@1f,2000
    pcib /pci@1f,4000
    pci0 /pci@1f,4000
    flash /pci@1f,4000/ebus@1/flashprom@10,0
    nvram /pci@1f,4000/ebus@1/eeprom@14,0
    parallel /pci@1f,4000/ebus@1/ecpp@14,3043bc
    net /pci@1f,4000/network@1,1
    ebus /pci@1f,4000/ebus@1
    i2c /pci@1f,4000/ebus@1/SUNW,envctrltwo
    floppy /pci@1f,4000/ebus@1/fdthree
    tty /pci@1f,4000/ebus@1/se@14,400000
    More [<space>,<cr>,q,n,p,c] ? ttya /pci@1f,4000/ebus@1/se@14,400000:a
    ttyb /pci@1f,4000/ebus@1/se@14,400000:b
    rscctl /pci@1f,4000/ebus@1/se@14,200000:sspctl
    rsc /pci@1f,4000/ebus@1/se@14,200000:ssp
    ttyc /pci@1f,4000/ebus@1/se@14,200000:ssp
    ttyd /pci@1f,4000/ebus@1/se@14,200000:sspctl
    keyboard! /pci@1f,4000/ebus@1/su@14,3083f8:forcemode
    keyboard /pci@1f,4000/ebus@1/su@14,3083f8
    mouse /pci@1f,4000/ebus@1/su@14,3062f8
    name aliases
    {0} ok boot disk
    Boot device: /pci@1f,4000/scsi@3/disk@0,0 File and args:
    Drive not ready
    {0} ok probe-scsi-all
    /pci@1f,4000/scsi@3,1
    /pci@1f,4000/scsi@3
    Target 0
    Unit 0 Disk IBM DDYST1835SUN18G S94N
    Target 4
    Unit 0 Removable Tape HP C1537A L706
    Target 6
    Unit 0 Removable Read Only device TOSHIBA DVD-ROM SD-M14011007
    Target 8
    Unit 0 Disk FUJITSU MAJ3364M SUN36G 0804
    Target a
    Unit 0 Disk SEAGATE ST336704LSUN36G 032C
    Anyone knows what's the problem and how can I fix it?
    Cheers

    You either have a mechanically or electronically failed disk drive or else your Operating System (I an presuming it is Solaris on that SPARC system) is completely mucked up.
    If it is the OS at issue, you will need to install everything fresh.
    If it is the 18GB disk drive, you will need to replace it and install everything fresh.
    Either way, at some point you will have to go get your OS installation media and install everything fresh. The solution is not that difficult to understand.

  • Cisco Agents goes to Not ready state

    Hi,
    I have use IPCC ver:4.0(5) SR01ES09_Build095.
    We have encountered that our cisco agents automatically change state and it will goes from log-in state to Not ready state.
    what was the solution where i have to check the logs.
    regards
    Salman

    Hi Salman-ahmad,
    This could be the way you have your agents or CSQ configured, you can configure IPCC to have them to automatically goto Not ready or stay in ready. Have you check your system parameter's?
    Under RMCM Subsystem, click the resource link on the left hand side,
    there is a "automatically Available" radio box you need to select.
    Otherwise you maybe hitting this bug.... Are these your symptom's?
    CSCsf11662 Bug Details
    Agent goes to Not Ready after making Outbound call from Ready state
    Symptom:
    Agent makes outbound call from ICD extension (to a non-ICD extension), when
    the agent finishes the call, they go into Not Ready state when they expect
    to be returned to Ready state.
    Conditions:
    - Cisco Customer Response Solutions (CRS) 4.0(3)
    - Agent makes outbound call from ICd extension whilst in Work state (after just finishing an incoming ICD call).
    - Agent places the outbound call on Hold at some stage during the call.
    Workaround:
    If the above scenario occurs, Agent needs to manually change to Ready state.
    HTH, Please rate if so
    Regards,
    Justin

  • "Printer not ready" error message.

    I get a message" printer not ready" when printing to "Adobe PDF." Have changed many settings, without success. Occurs when printing from MS Outlook, Internet Explorer, and MS Word. Any way to make Adobe Acrobat print a file as a PDF?

    Dear Abhigyan,
    ...still no luck... AcroTray is running according to Task Manager. I tried using the "Repair" option in the Add/Remove Programs control panel item. I still get a message "Printer not ready" or simply a null response from the computer when requesting a print to Adobe PDF.
    Do I need to completely reinstall Adobe Acrobat Standard XI?
    Thanks anyway...
    [private information removed by moderator]

  • SSCM 2012 Endpoint Not Installing WMI not ready

    I am able to push out my client install using my default package i configured with some custom settings. Endpoint is enabled to install. I also deployed the endpoint custom policy to the computers. Teh SCCM client is installing on the client but Endpoint
    is not. Here is the view of the log. Has anyone ran into this issue? Is there any specific settings that need to be set on Windows 7 so that the client can install correctly?
    <![LOG[Service startup notification received]LOG]!><time="15:03:19.690+420" date="04-26-2013" component="EndpointProtectionAgent" context="" type="1" thread="660" file="fepsettingendpoint.cpp:291">
    <![LOG[Endpoint is triggered by CCMTask Execute.]LOG]!><time="15:03:19.706+420" date="04-26-2013" component="EndpointProtectionAgent" context="" type="1" thread="3204" file="fepsettingendpoint.cpp:265">
    <![LOG[Deployment WMI is NOT ready.]LOG]!><time="15:03:19.721+420" date="04-26-2013" component="EndpointProtectionAgent" context="" type="1" thread="3204" file="epagentimpl.cpp:725">
    <![LOG[Service startup notification received]LOG]!><time="15:19:53.747+420" date="04-26-2013" component="EndpointProtectionAgent" context="" type="1" thread="2732" file="fepsettingendpoint.cpp:291">
    <![LOG[Endpoint is triggered by CCMTask Execute.]LOG]!><time="15:19:53.747+420" date="04-26-2013" component="EndpointProtectionAgent" context="" type="1" thread="2320" file="fepsettingendpoint.cpp:265">
    <![LOG[Deployment WMI is NOT ready.]LOG]!><time="15:19:53.762+420" date="04-26-2013" component="EndpointProtectionAgent" context="" type="1" thread="2320" file="epagentimpl.cpp:725">

    Sorry for the delay, I did not expect to see a response so quickly. No, There are no other Antivirus software installed. I even tested with a barebone computer, just installing windows 7 and not even updates on it. I am still getting the same error. This
    is on all systems
    Service startup notification received EndpointProtectionAgent
     3/23/2014 6:29:53 AM 2424 (0x0978) Endpoint is triggered by CCMTask Execute.
    EndpointProtectionAgent 3/23/2014 6:29:53 AM
    2432 (0x0980)
    Deployment WMI is NOT ready. EndpointProtectionAgent
    3/23/2014 6:29:53 AM 2432 (0x0980)
    kc

  • Cisco UCS Central High Availability (HA NOT READY)

    I am seeing the following message in UCS Central about HA NOT READY
    Cluster Id: 0x819cae86c88f11e4-0x8fb4d5434d9b9e52
    Start time: Tue Mar 24 12:08:20 2015
    Last election time: Tue Mar 24 12:08:50 2015
    A: UP, PRIMARY
    B: UP, SUBORDINATE
    A: memb state UP, lead state PRIMARY, mgmt services state: UP
    B: memb state UP, lead state SUBORDINATE, mgmt services state: UP
    heartbeat state PRIMARY_OK
    HA NOT READY
    Waiting for response from device.
    Device count, expected: 2, active: 0
    Detailed state of the device selected for HA quorum data:
    Device 1009, serial: 14713e4e-929e-11e3-aa5e-002a6a7fa904, state: inactive
    Device 1008, serial: 7cafb282-b1ed-11e4-a520-8c604f230301, state: inactive
    Quorum data local IO failure:
    14713e4e-929e-11e3-aa5e-002a6a7fa904 READ_FAILED, error: GENERAL, error code: 32767, error count: 1348947
    Quorum data local IO failure:
    7cafb282-b1ed-11e4-a520-8c604f230301 READ_FAILED, error: GENERAL, error code: 32767, error count: 1348947
    Warning: there are pending I/O errors on one or more devices, failover may not complete

    The management services on each node are all running
    show pmon state
    SERVICE NAME STATE RETRY(MAX) CORE
    pmon running N/A N/A
    core-svc_cor_dme running 0(4) no
    service-reg-svc_reg_dme running 0(4) no
    core-svc_cor_secAG running 0(4) no
    operation-mgr-svc_ops_imgMgmtAG running 0(4) no
    resource-mgr-svc_rsrcMgr_dme running 0(4) no
    identifier-mgr-svc_idm_dme running 0(4) no
    central-mgr-svc_centralMgr_dme running 0(4) no
    service-reg-svc_sam_controller running 0(4) no
    policy-mgr-svc_pol_dme running 0(4) no
    sam_cores_mon.sh running 0(4) no
    core-svc_cor_controllerAG running 0(4) no
    operation-mgr-svc_ops_dme running 0(4) no
    service-reg-svc_sam_licenseAG running 0(4) no
    policy-mgr-svc_sam_pkiAG running 0(4) no
    core-httpd.sh running 0(4) no
    stats-mgr-svc_statsMgr_dme running 0(4) no
    core-svc_cor_sessionmgrAG running 0(4) no
    I can ping the two registered domains from both nodes

  • After updating to Firefox 24, Windows 7 64-bit breaks on reboot. The network icon in the taskbar not ready (blue circle stopped).

    After updating Firefox 24, Windows 7 breaks after reboot. The network icon in the taskbar is not ready (blue circle over wifi network icon). But I can't do much. I can not open the network and sharing center (never opens). Even the task manager will hang when I click to show processes from all users. I have to do a system restore to have a functioning network again. I never even launched Firefox.

    Thank you for your response. I agree that the steps you list should have a working Firefox 24, but it did not work. I don't know what other information to gather to help assist in diagnosing the cause. If I restored to a good state and then (re)installed Firefox 24 and reboot, I have a problem.
    Thank you.

  • Javax.xml.ws.soap.SOAPFaultException: ClusterRoutingTubeUtils weblogic.wsee.jaxws.cluster.ClusterRoutingTubeUtils@6ad8e382 not ready, no WseeClusterRoutingRuntimeMBean/WseeRuntimeMBean

    Hi,everyone:
         I am running into this error when I call a webService :My weblogic version is 10.3.5 and have applied the patch N5G9.
    javax.xml.ws.soap.SOAPFaultException: ClusterRoutingTubeUtils weblogic.wsee.jaxws.cluster.ClusterRoutingTubeUtils@6ad8e382 not ready, no WseeClusterRoutingRuntimeMBean/WseeRuntimeMBean
      at com.sun.xml.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:197)
      at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:122)
      at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:125)
      at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:95)
      at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:136)
      at $Proxy117.getLoginUserInfoByCzryDm(Unknown Source)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at weblogic.wsee.jaxws.spi.ClientInstanceInvocationHandler.invoke(ClientInstanceInvocationHandler.java:84)
      at $Proxy118.getLoginUserInfoByCzryDm(Unknown Source)
      at com.hkgt.sso.access.ZRWebServiceProxyImpl.getLoginUserInfoByCzryDm(ZRWebServiceProxyImpl.java:106)
      at com.hkgt.sso.access.WebServiceAuthenticationHandler.doAuthentication(WebServiceAuthenticationHandler.java:71)
      at com.hkgt.sso.access.AMManagerImpl.doAuthentication(AMManagerImpl.java:165)
      at com.hkgt.sso.authserver.SSOLoginServlet.doPost(SSOLoginServlet.java:175)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3723)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3689)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2285)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2184)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1459)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    However it works fine under another machine(say machine A) when I call the same webservice. I tried to copy the whole domain to the problematic machine, this error still appears.
    Does anyone have any suggestions. Thank you !

    Hi,everyone:
         I am running into this error when I call a webService :My weblogic version is 10.3.5 and have applied the patch N5G9.
    javax.xml.ws.soap.SOAPFaultException: ClusterRoutingTubeUtils weblogic.wsee.jaxws.cluster.ClusterRoutingTubeUtils@6ad8e382 not ready, no WseeClusterRoutingRuntimeMBean/WseeRuntimeMBean
      at com.sun.xml.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:197)
      at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:122)
      at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:125)
      at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:95)
      at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:136)
      at $Proxy117.getLoginUserInfoByCzryDm(Unknown Source)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at weblogic.wsee.jaxws.spi.ClientInstanceInvocationHandler.invoke(ClientInstanceInvocationHandler.java:84)
      at $Proxy118.getLoginUserInfoByCzryDm(Unknown Source)
      at com.hkgt.sso.access.ZRWebServiceProxyImpl.getLoginUserInfoByCzryDm(ZRWebServiceProxyImpl.java:106)
      at com.hkgt.sso.access.WebServiceAuthenticationHandler.doAuthentication(WebServiceAuthenticationHandler.java:71)
      at com.hkgt.sso.access.AMManagerImpl.doAuthentication(AMManagerImpl.java:165)
      at com.hkgt.sso.authserver.SSOLoginServlet.doPost(SSOLoginServlet.java:175)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3723)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3689)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2285)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2184)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1459)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    However it works fine under another machine(say machine A) when I call the same webservice. I tried to copy the whole domain to the problematic machine, this error still appears.
    Does anyone have any suggestions. Thank you !

  • Foi server not ready

    I just downloaded Mapviewer 11g and set it up using the quick starter kit. When I am running the demos i get following error..
    [MVThemeBasedFOIControl.foiLoaded] MAPVIEWER-05523: Cannot process response from MapViewer server. (foi server is not ready!
    Can you tell me how to fix this? I also tried the URL 'http://host:port/mapviewer/foi' which gives me the same message.

    I am doing an exploded deployment on weblogic server. I get following error(see below). I granted 777 permissions to all directories under 'mapviewer.ear' folder but still it fails. If I manually create this directory then demos work fine. But why do I have to do that ?
    Sep 8, 2010 2:01:33 PM oracle.lbs.foi.FOIServlet$ColdStart run
    SEVERE: FOI server failed to start.
    Message:Cannot create directory. (/scratch/software/downloads/mapviewer/mv1112/ul/mapviewer/mapviewer.ear/web.war/WEB-INF/web/images/foi/)
    Wed Sep 08 14:01:33 CDT 2010
    Severity: 0
    Description:
    at oracle.lbs.mapcache.util.Util.createDirectory(Util.java:187)
    at oracle.lbs.foi.FOIServer.init(FOIServer.java:257)
    at oracle.lbs.foi.FOIServer.<init>(FOIServer.java:231)
    at oracle.lbs.foi.FOIServlet$ColdStart.run(FOIServlet.java:178)
    at java.lang.Thread.run(Thread.java:619)

  • Agent real time display not ready time is inaccurate

    Agent Not Ready Detail in Webview-Agent Realtime Reports in CAD.
    I am looking at the agent: Agent Not Ready Detail Report in Webview and comparing this to the Agent Real Rime Display in CAD. If I manually add the Not Ready times (state durations) from the agent ACD state log, they equate to the Cisco Web View agent report. However, the Total Not Ready column from the Agent Detail Display report in CAD does not sync up with either Webview or CAD. Its more than an hour off.
    The Eastern managers are looking closely at these numbers now and one of the agents questioned the report in CAD today and brought this to a manager's attention. It is more than an hour off which is a big difference.
    It was comparing the state duration for not ready from the ACD State Log Display (for example the 5 seconds at 10:15:04 in screen shot 1) to the total not ready time from the Agent Real Time Display Displays report (3:48:59 in screen shot 2). The total individual state durations of unavailable time from report #1 does not equal report #2 and I would think it should. If not explain why?
    From CAD client > Real Time Displays > Agent ACD State Log Display. If you add up all the Not Ready times and compare with webview, it matches. No problem here.
    From CAD client > Real Time Displays > Agent Detail Display (this doesnt match up with webview report or the total Not Ready times in Agent ACD State Log Display).
    We're looking to know either
    1. How exactly the not ready state time is calculated
                   OR
    2. Where to find the information on how this is deteremined.
    I appreaciate any response. Thank you.

    Is it all agents or only one/some?
    What does CSD show? Can you post a screenshot of the CSD main screen for a team?
    Also, please post the traces from Desktop Recording and Statistics Server.

  • Could not turn on Screen mirroring. The output device is not ready or does not support HDCP

    i tried it on my tv sony bravia w700b with my new xperia z1 
    i didnt unlocked my bootloder or i didnt rooted my phone
    dont know whats the problem is
    'Could not turn on Screen mirroring. The output device is not ready or does not support HDCP'. can anybody able to tell how can I resolve this please?

    Have you checked if your device does support HDCP? I looked at https://www.iezvu.com/ezcast.php?l=en but i'm afraid i can't find any detailed specification for it.
    If you have unlocked your bootloader this may also be the cause for this issue.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • V4.0 won't start. crashes each time. Had to go back to previous version. Version 4 is just not ready for general release, it is massively messed up. The online fixes here had no effect whatsoever. VERY DISSAPOINTED

    tried automatic upgrade from within 3.6.. did not work..crashed upon re-start. tried remove program completely for a fresh install..same thing crash upon V4.0 start up....
    Reinstalled 3.6.15...
    4.0 is NOT READY for general release. Tried the fixes as suggested here, but they were useless and no help what-so-ever.
    Very dissapointing, as I've been using Firefox as my only browser since it was introduced years ago.. this may be the end of the line....VERY DISSAPOINTED

    tried automatic upgrade from within 3.6.. did not work..crashed upon re-start. tried remove program completely for a fresh install..same thing crash upon V4.0 start up....
    Reinstalled 3.6.15...
    4.0 is NOT READY for general release. Tried the fixes as suggested here, but they were useless and no help what-so-ever.
    Very dissapointing, as I've been using Firefox as my only browser since it was introduced years ago.. this may be the end of the line....VERY DISSAPOINTED

Maybe you are looking for

  • Zooming when taking a picture

    I have a Blu Win HD Win Phone and when taking a picture and i'm trying to zoom in I stretch out using my thumb and forefinger but it doesn't do anything. How do I zoom in?

  • BAPI to download document from DMS

    Hi ALL I have the requirement that to download the all the active drawing(DWG) files to local file system or data base for purpose. 1. I am looking at BAPIS to download from external program. Do we have any BAPIS to get the files from DMS.? 2. And i

  • Vivado hardware server "hw_server" process doesn't close when server is closed

    Vivado hardware server "hw_server" process doesn't close when server is closed.  Also, the connecting to the server hangs if a device is physically disconnected and reconnected (usually).  The "hw_server" process continually has to be killed via Task

  • Multiple Curves in Numbers

    Im trying to add multiple trials of distribution an assignment and im not sure how im supposed to do it in numbers

  • Can I open/convert Excel (.xslx) files in the Numbers app?

    I have some Microsoft Excel files from a former PC that I would like to open in my MacBook.  Do I need an Apple version of Office installed on my computer or can I convert the file information in the Numbers app?