Apex_web_service.make_request throws ORA-29273: HTTP request failed. How to get the soap fault XML?

I am trying to call a web service using apex_web_service.make_request function.
It works fine when all the parameters are correct. However, when something is wrong in the request XML, it throws an exception instead of returning the soap:fault message:
ORA-29273: HTTP request failed
ORA-06512: at "SYS.UTL_HTTP", line 1369
ORA-29269: HTTP server error 500 - Internal Server Error
ORA-06512: at "APEX_040200.WWV_FLOW_WEBSERVICES_API", line 130
ORA-06512: at line 37
I need to get back the soap:fault and parse it to display a proper error message to the users (e.g. what was wrong with the input), yet the call throws an exception instead of returning it.
I am trying the exact same request from soapUI and it returns me the soap:fault below:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
   <soap:Body>
      <soap:Fault>
         <soap:Code>
            <soap:Value>soap:Receiver</soap:Value>
         </soap:Code>
         <soap:Reason>
            <soap:Text xml:lang="en">Fault occurred while processing.</soap:Text>
         </soap:Reason>
         <soap:Detail>
            <ns1:RegisterFault xmlns:ns1="http://www.exchangenetwork.net/wsdl/register/1">
               <description xmlns:ns2="http://www.exchangenetwork.net/wsdl/register/1">The security token has expired.</description>
               <errorCode xsi:type="ns2:RegisterErrorCode" xmlns:ns2="http://www.exchangenetwork.net/wsdl/register/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">E_TokenExpired</errorCode>
            </ns1:RegisterFault>
         </soap:Detail>
      </soap:Fault>
   </soap:Body>
</soap:Envelope>
How do I get this back from APEX?
Thanks!

Hi,
   I've just run into this.
   If the webservice returns a fault, such as:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><soap:Fault><faultcode>soap:Server</faultcode><faultstring>INVALID_REQUESTER_INFO</faultstring></soap:Fault></soap:Body></soap:Envelope>
   then the user gets presented with an unfriendly error message and there's no chance to output a more friendly one.
   The response above is seen when testing the webservice, when run from the Form/Report page, we get something like:
soap:ServerINVALID_REQUESTER_INFO
Contact your application administrator.
OK
   When OK button is clicked everything is rolled back and we don't even get the fault XML.
   It would be good if Apex could be optionally set to not give the unfriendly messages, so that we could code such a message ourselves.
   Unless anybody has a workaround for this, I guess that I'll have to see if I can code this in PLSQL.
Regards,
Chris

Similar Messages

  • ORA-29273: HTTP request failed ORA-12535: TNS:operation timed out

    SQL*Plus: Release 11.2.0.3.0
    Solaris 10 SPARC
    Hi,
    I get the following error when trying to make an HTTP request. Below is the snippet of code I run. I get the error after exactly 60 seconds(default timeout?). I searched through the forums and found many similar errors but nothing that helped me resolve this issue. The problem does not exist in the rest of our environments, only our test environment.
    Help is greatly appreciated. Thanks.
    DECLARE
       p_mid_tier    VARCHAR2 (500);
       responsestr   VARCHAR2 (500);
    BEGIN
       SELECT *****
         INTO p_mid_tier
         FROM *****
        WHERE profile_type = '*****';
       UTL_HTTP.set_wallet ('file://$ORACLE_HOME/network/admin/wallets');
       UTL_HTTP.set_transfer_timeout (6000);
       UTL_HTTP.set_response_error_check (TRUE);
       responsestr :=
          UTL_HTTP.request (
             UTL_URL.ESCAPE (p_mid_tier || '*****'));
       DBMS_OUTPUT.put_line (responsestr);
    END;
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1722
    ORA-12535: TNS:operation timed out
    ORA-06512: at line 15

    1001371 wrote:
    SQL*Plus: Release 11.2.0.3.0
    Solaris 10 SPARC
    Hi,
    I get the following error when trying to make an HTTP request. Below is the snippet of code I run. I get the error after exactly 60 seconds(default timeout?). I searched through the forums and found many similar errors but nothing that helped me resolve this issue. The problem does not exist in the rest of our environments, only our test environment.
    Help is greatly appreciated. Thanks.
    DECLARE 
       p_mid_tier    VARCHAR2 (500); 
       responsestr   VARCHAR2 (500); 
    BEGIN 
       SELECT ***** 
         INTO p_mid_tier 
         FROM ***** 
        WHERE profile_type = '*****'; 
       UTL_HTTP.set_wallet ('file://$ORACLE_HOME/network/admin/wallets'); 
       UTL_HTTP.set_transfer_timeout (6000); 
       UTL_HTTP.set_response_error_check (TRUE); 
       responsestr := 
          UTL_HTTP.request ( 
             UTL_URL.ESCAPE (p_mid_tier || '*****')); 
       DBMS_OUTPUT.put_line (responsestr); 
    END; 
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1722
    ORA-12535: TNS:operation timed out
    ORA-06512: at line 15
    the most frequent cause for TIMEOUT is a FireWall on or between client & server.
    when was last time this worked without error?
    what changed since then?

  • How to get the soap request for the particular operations in CRM

    Hi friends,
    We got the wsdl files of different modules from the crm(Oracle CRM on demand). We converted the wsdl files to java classes using axis1.4 wsdl2java tool.Now all create,update,download,lookup operations are implemented in java using the generated classes and they are working properly with the client stub.Now the problem is how can we get the soap request and response of particular operations that we submitted to CRM .The request and response should get by using java code.We are looking no tool for the soap request/response. We are working in Eclipse IDE.
    thanks in advance...

    Refer the link. It might tellsa about attaching to transport request but using the way you can find also -
    Re: How To Transport STANDARD TEXTS??
    Regards,
    Amit
    Reward all helpful replies

  • How o get the SOAP request from webmethod?

    Hi,
    I want to get the full request (what i sent from client application) on the @webmethod of my webservice.
    Immediately i want to forwward the same request to another application which is ready to receive as HttpRequest.
    How could i do that?

    Hi,
    Thanks for the reply.
    I tried the code in my application, but it always throws NullPointerException
    while executing this line,
    MessageContext msgCtxt = wsContext.getMessageContext();
    My code is,
    @WebService(name = "FirstService")
    @SOAPBinding
    style = SOAPBinding.Style.DOCUMENT,
    use = SOAPBinding.Use.LITERAL,
    parameterStyle = SOAPBinding.ParameterStyle.WRAPPED
    public class MyFirstService
         WebServiceContext wsContext;
         @WebMethod
         public void getMehod()
              try
                   System.out.println("1");
                   MessageContext msgCtxt = wsContext.getMessageContext();
                   System.out.println("2");
                   HttpServletRequest req = (HttpServletRequest)msgCtxt.get(MessageContext.SERVLET_REQUEST);
                   System.out.println("3");
                   System.out.println("REQUEST = " + req.toString());
              catch(Exception e)
                   System.out.println("Exception : " + e.toString());
    If i call this method from SoapUI,
    the output is,
    INFO [STDOUT] 1
    INFO [STDOUT] Exception : java.lang.NullPointerException
    I don't know where i did the mistake...
    Waiting for your reply

  • HTTP request failed. Error code: "500". Error message

    Hi ,
    When we are trying to test webservices (exposed webservice in PI)  scenarios in PI box we are getting error related Adapter framework service
    HTTP request failed. Error code: "500". Error message: "Internal Server Error [http://xxxx:xxxx/AdapterFramework/rtc]"
    in the RWB it is showing that
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.engine.interfaces.messaging.api.exception.MessagingException: XIAdapterFramework:GENERAL:com.sap.engine.interfaces.messaging.api.exception.MessageExpiredException: Message 01d76ce0-972e-11e0-c652-b25394b91e0c(INBOUND) expired
    Can any body help .
    Edited by: subhaniABAP on Jun 15, 2011 11:30 AM

    Hi,
    If you want to resolve this error when dealing with the messages, please try the cache refresh with the link:
    http://host:j2eeport/CPACache/refresh?mode=full
    And also go thorugh:
    - In Integration Repository/Directory go to menu Environment ->
    Clear SLD Data Cache
    - In R/3 go to transaction SXI_CACHE -> menu XI Runtime Cache -> Start
    Complete Cache Refresh
    MESSAGE EXPIRED:
    Increase the value of the timeout parameter 'xiadapter.inbound.timeout.default' under Services -> 'XPI Adapter:XI'
    to a higher value say '600000'.
    Regards,
    Caio Cagnani

  • HTTP request failed. Error code: "503". Service Unavailable in RWB and Cache Refresh

    Dear Experts,,
    We have MDM and PI in our landscape. We are using MDM Adapter for the integration between the two.
    When we try to run the T Code SXMB_IFR, we are getting HTTP request failed error. i.e., “Error Code: 503 -- Service Unavailable”. And also the RWB communication channel is not working because of this error and we are unable to refresh the cache too because of this error.
    We have checked from MDM side, and messages are flowing from ready folder but not coming into PI. We had monitored the messages using
    SXMB_MONI.
    We have restarted the Java Server but it’s taking too much time to restart around 12 to 15 hours & we checked after that but still facing the same issue.
    Could you please help me to figure out this issue.
    Thank you for your support in advance.
    Thanks and Regards,
    Priti.

    Hi Priti,
    You can check the suggestion of Jyothi Anagani
    Because of J2EE application com.sap.aii.af.ms.app not active
             The problem is that not all J2EE services can be started by the J2EE. i.e Start the Visual Administrator and select Server->Services->Deploy in the tree on the left. On the right-hand side, choose the Runtime tab page. You see a tree in the right window with all applications if you select the APPLICATION radio button. Check if they are running, otherwise choose Start. Usually the J2EE engine starts all services automatically.
    Runtime Workbench "503 Service Unavailable" Error After JSPM SP Update
    Regards,
    Nabendu.

  • HTTP request failed :Error code 500 internal server error

    In PI 7.0 system we are getting http error for rwb and exchage profile portal function
    Detail:
    HTTP request failed : Errro code 500 internal server error
    ( http://hostname:50000/adapterframework/rtc)
    If I do a connection test  for  ping(sap >bc >ping) from SICF, I am getting HTTP error.
    Please help me out to resolve this problem.
    I would be thankful for your suggestion

    from SM59 I tested the connection of INTEGRATION_DIRECTORY_HMI(HTTP connection to ABAP system)
    detail:
    staus HTTP response 500
    status text : internal server server
    duration test call 17173 ms
    Please help me out to resolve this issue

  • Adobe Creative Cloud connectivity issue on Websense run network; Failed to send the request to server to get the response - 12002

    Hi all,
    I am able to install the Windows Adobe Creative Cloud application fine on Windows 7 box but the application fails to establish a connection with Adobe server/-s.
    We use a proxy with Websense as our network security solution. Proxy configuration script is set in Internet Options. We have not tried to whitelist anything as per http://helpx.adobe.com/creative-cloud/kb/proxy-authentication-support-creative-cloud.html as the errors suggest the application does not even connect to the proxy server/Websense at all.
    Please see below snippet from that DLM.log file that contains the error messages - please have a look. Could anybody tell me what it means or advise how to resolve this please? I don't see the Adobe Creative Cloud tool to have any options where manual proxy settings can be setup to try that.
    <snip>
    11/05/14 08:50:48:184 | [INFO] | |  |  |  |  |  | 5236 | **File download complete.**
    11/05/14 08:50:52:145 | [INFO] | |  |  |  |  |  | 3732 | **File download complete.**
    11/05/14 08:51:05:327 | [INFO] | |  |  |  |  |  | 1784 | **File download complete.**
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | The windows error code is - 12002
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | Failed to send the request to server to get the response - 12002
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | the download job (0) failed to execute. The job state is STOPPED_STATE
    11/05/14 08:51:06:992 | [INFO] | |  |  |  |  |  | 6844 | some intermittent error. Retrying now. Error code is 12002 and error type is -45
    11/05/14 08:51:11:514 | [INFO] | |  |  |  |  |  | 6844 | incrementing the thread. now the active thread count is 2
    11/05/14 08:51:12:519 | [INFO] | |  |  |  |  |  | 6648 | **File download complete.**
    11/05/14 08:51:16:541 | [INFO] | |  |  |  |  |  | 6844 | decrementing the thread count. now the active thread count is 1
    11/05/14 08:51:22:281 | [INFO] |  | |  |  |  |  | 3452 | resetting intermitent error 9 from to 1 to 0
    11/05/14 08:51:29:022 | [INFO] | |  |  |  |  |  | 1836 | **File download complete.**
    11/05/14 08:52:22:381 | [INFO] | |  |  |  |  |  | 7220 | incrementing the thread. now the active thread count is 2
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | The windows error code is - 12002
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | Failed to send the request to server to get the response - 12002
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | the download job (5) failed to execute. The job state is STOPPED_STATE
    11/05/14 08:52:27:383 | [INFO] | |  |  |  |  |  | 7220 | some intermittent error. Retrying now. Error code is 12002 and error type is -45
    11/05/14 08:52:27:663 | [INFO] |  | |  |  |  |  | 4908 | resetting intermitent error 9 from to 1 to 0
    11/05/14 08:52:28:733 | [INFO] | |  |  |  |  |  | 6064 | **File download complete.**
    11/05/14 08:52:42:810 | [INFO] | |  |  |  |  |  | 7220 | **File download complete.**
    11/05/14 08:52:45:570 | [INFO] | |  |  |  |  |  | 3788 | **File download complete.**
    </snip>
    There is also an INFO class message that talks about resetting an ‘error 9’ from 1 to 0.

    Hi all,
    I am able to install the Windows Adobe Creative Cloud application fine on Windows 7 box but the application fails to establish a connection with Adobe server/-s.
    We use a proxy with Websense as our network security solution. Proxy configuration script is set in Internet Options. We have not tried to whitelist anything as per http://helpx.adobe.com/creative-cloud/kb/proxy-authentication-support-creative-cloud.html as the errors suggest the application does not even connect to the proxy server/Websense at all.
    Please see below snippet from that DLM.log file that contains the error messages - please have a look. Could anybody tell me what it means or advise how to resolve this please? I don't see the Adobe Creative Cloud tool to have any options where manual proxy settings can be setup to try that.
    <snip>
    11/05/14 08:50:48:184 | [INFO] | |  |  |  |  |  | 5236 | **File download complete.**
    11/05/14 08:50:52:145 | [INFO] | |  |  |  |  |  | 3732 | **File download complete.**
    11/05/14 08:51:05:327 | [INFO] | |  |  |  |  |  | 1784 | **File download complete.**
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | The windows error code is - 12002
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | Failed to send the request to server to get the response - 12002
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | the download job (0) failed to execute. The job state is STOPPED_STATE
    11/05/14 08:51:06:992 | [INFO] | |  |  |  |  |  | 6844 | some intermittent error. Retrying now. Error code is 12002 and error type is -45
    11/05/14 08:51:11:514 | [INFO] | |  |  |  |  |  | 6844 | incrementing the thread. now the active thread count is 2
    11/05/14 08:51:12:519 | [INFO] | |  |  |  |  |  | 6648 | **File download complete.**
    11/05/14 08:51:16:541 | [INFO] | |  |  |  |  |  | 6844 | decrementing the thread count. now the active thread count is 1
    11/05/14 08:51:22:281 | [INFO] |  | |  |  |  |  | 3452 | resetting intermitent error 9 from to 1 to 0
    11/05/14 08:51:29:022 | [INFO] | |  |  |  |  |  | 1836 | **File download complete.**
    11/05/14 08:52:22:381 | [INFO] | |  |  |  |  |  | 7220 | incrementing the thread. now the active thread count is 2
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | The windows error code is - 12002
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | Failed to send the request to server to get the response - 12002
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | the download job (5) failed to execute. The job state is STOPPED_STATE
    11/05/14 08:52:27:383 | [INFO] | |  |  |  |  |  | 7220 | some intermittent error. Retrying now. Error code is 12002 and error type is -45
    11/05/14 08:52:27:663 | [INFO] |  | |  |  |  |  | 4908 | resetting intermitent error 9 from to 1 to 0
    11/05/14 08:52:28:733 | [INFO] | |  |  |  |  |  | 6064 | **File download complete.**
    11/05/14 08:52:42:810 | [INFO] | |  |  |  |  |  | 7220 | **File download complete.**
    11/05/14 08:52:45:570 | [INFO] | |  |  |  |  |  | 3788 | **File download complete.**
    </snip>
    There is also an INFO class message that talks about resetting an ‘error 9’ from 1 to 0.

  • Mac RDP Client (v8.0.10 on 10.10.1): HTTPEndPointException: 4, The non-proxy http connection failed to connect with the message: 404 Not Found

    My office is setting up a new gateway server.  I can connect to the old one just fine, but the new one is not allowing me to connect.  I can connect from my Windows VM, but not my Mac Client.  
    This is the log:
    2014-Nov-26 16:09:10] RDP (0): Final rdp configuration used: gatewayhostname:s:gat1.gibbscam.com
    screen mode id:i:0
    use multimon:i:0
    session bpp:i:24
    full address:s:dev-JeremyS2.gibbs.local
    audiomode:i:2
    username:s:Gibbs\JeremyS
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:1
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com"font-family:Helvetica;line-height:normal;" />redirectprinters:i:0
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Nov-26 16:09:10] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Nov-26 16:09:10] RDP (0): lo0 af=18  addr= netmask=
    [2014-Nov-26 16:09:10] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Nov-26 16:09:10] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-Nov-26 16:09:10] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:10] RDP (0): gif0 af=18  addr= netmask=
    [2014-Nov-26 16:09:10] RDP (0): stf0 af=18  addr= netmask=
    [2014-Nov-26 16:09:10] RDP (0): en0 af=18  addr= netmask=
    [2014-Nov-26 16:09:10] RDP (0): en1 af=18  addr= netmask=
    [2014-Nov-26 16:09:10] RDP (0): en1 af=30 (AF_INET6)  addr=fe80::1240:f3ff:fe97:e0b2%en1 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:10] RDP (0): en1 af=2 (AF_INET)  addr=192.168.0.5 netmask=255.255.255.0
    [2014-Nov-26 16:09:10] RDP (0): en1 af=30 (AF_INET6)  addr=2605:e000:63c2:f800:1240:f3ff:fe97:e0b2 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:10] RDP (0): en1 af=30 (AF_INET6)  addr=2605:e000:63c2:f800:65fb:7056:64eb:4363 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:10] RDP (0): fw0 af=18  addr= netmask=
    [2014-Nov-26 16:09:10] RDP (0): en2 af=18  addr= netmask=
    [2014-Nov-26 16:09:10] RDP (0): p2p0 af=18  addr= netmask=
    [2014-Nov-26 16:09:10] RDP (0): bridge0 af=18  addr= netmask=
    [2014-Nov-26 16:09:10] RDP (0): utun0 af=18  addr= netmask=
    [2014-Nov-26 16:09:10] RDP (0): utun0 af=30 (AF_INET6)  addr=fe80::ec38:250a:2a5d:3618%utun0 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:10] RDP (0): utun0 af=30 (AF_INET6)  addr=fd68:4c46:7658:e98e:ec38:250a:2a5d:3618 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:10] RDP (0): --- END INTERFACE LIST ---
    [2014-Nov-26 16:09:10] RDP (0): correlation id: d8afdeb7-ce3a-ceff-a6e8-51a5d5b40000
    [2014-Nov-26 16:09:10] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Nov-26 16:09:15] RDP (0): Exception caught: Exception in file '../../librdpclient/asiosocketendpoint.cpp' at line 521
        User Message : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote
    PC, and then try again.
    [2014-Nov-26 16:09:15] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-Nov-26 16:09:15] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Nov-26 16:09:15] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Nov-26 16:09:15] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Nov-26 16:09:15] RDP (0): lo0 af=18  addr= netmask=
    [2014-Nov-26 16:09:15] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Nov-26 16:09:15] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-Nov-26 16:09:15] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:15] RDP (0): gif0 af=18  addr= netmask=
    [2014-Nov-26 16:09:15] RDP (0): stf0 af=18  addr= netmask=
    [2014-Nov-26 16:09:15] RDP (0): en0 af=18  addr= netmask=
    [2014-Nov-26 16:09:15] RDP (0): en1 af=18  addr= netmask=
    [2014-Nov-26 16:09:15] RDP (0): en1 af=30 (AF_INET6)  addr=fe80::1240:f3ff:fe97:e0b2%en1 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:15] RDP (0): en1 af=2 (AF_INET)  addr=192.168.0.5 netmask=255.255.255.0
    [2014-Nov-26 16:09:15] RDP (0): en1 af=30 (AF_INET6)  addr=2605:e000:63c2:f800:1240:f3ff:fe97:e0b2 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:15] RDP (0): en1 af=30 (AF_INET6)  addr=2605:e000:63c2:f800:65fb:7056:64eb:4363 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:15] RDP (0): fw0 af=18  addr= netmask=
    [2014-Nov-26 16:09:15] RDP (0): en2 af=18  addr= netmask=
    [2014-Nov-26 16:09:15] RDP (0): p2p0 af=18  addr= netmask=
    [2014-Nov-26 16:09:15] RDP (0): bridge0 af=18  addr= netmask=
    [2014-Nov-26 16:09:15] RDP (0): utun0 af=18  addr= netmask=
    [2014-Nov-26 16:09:15] RDP (0): utun0 af=30 (AF_INET6)  addr=fe80::ec38:250a:2a5d:3618%utun0 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:15] RDP (0): utun0 af=30 (AF_INET6)  addr=fd68:4c46:7658:e98e:ec38:250a:2a5d:3618 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 16:09:15] RDP (0): --- END INTERFACE LIST ---
    [2014-Nov-26 16:09:15] RDP (0): correlation id: 3d81bcf6-8d0e-fba8-b75e-bd2a247c0000
    [2014-Nov-26 16:09:15] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Nov-26 16:09:15] RDP (0): Resolved 'gat1.gibbscam.com' to '12.167.61.34' using NameResolveMethod_DNS(1)
    [2014-Nov-26 16:09:15] RDP (0): Resolved 'gat1.gibbscam.com' to '12.167.61.34' using NameResolveMethod_DNS(1)
    [2014-Nov-26 16:09:15] RDP (0): Exception caught: Exception in file '../../librdp/private/httpendpoint.cpp' at line 305
        User Message : HTTPEndpointException: 4, The non-proxy http connection failed to connect with the message: 404 Not
    Found
    [2014-Nov-26 16:09:15] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-Nov-26 16:09:15] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Nov-26 16:09:16] RDP (0): ------ END ACTIVE CONNECTION ------
    And here's a log for server that I can connect to:
    [2014-Nov-26 15:52:20] RDP (0): Final rdp configuration used: gatewayhostname:s:gato.gibbscam.com
    screen mode id:i:0
    use multimon:i:1
    session bpp:i:24
    full address:s:dev-JeremyS2.gibbs.local
    audiomode:i:2
    username:s:Gibbs\JeremyS
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:1
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com"font-family:Helvetica;line-height:normal;" />redirectprinters:i:0
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Nov-26 15:52:20] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Nov-26 15:52:20] RDP (0): lo0 af=18  addr= netmask=
    [2014-Nov-26 15:52:20] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Nov-26 15:52:20] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-Nov-26 15:52:20] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:20] RDP (0): gif0 af=18  addr= netmask=
    [2014-Nov-26 15:52:20] RDP (0): stf0 af=18  addr= netmask=
    [2014-Nov-26 15:52:20] RDP (0): en0 af=18  addr= netmask=
    [2014-Nov-26 15:52:20] RDP (0): en1 af=18  addr= netmask=
    [2014-Nov-26 15:52:20] RDP (0): en1 af=30 (AF_INET6)  addr=fe80::1240:f3ff:fe97:e0b2%en1 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:20] RDP (0): en1 af=30 (AF_INET6)  addr=2605:e000:63c2:f800:1240:f3ff:fe97:e0b2 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:20] RDP (0): en1 af=30 (AF_INET6)  addr=2605:e000:63c2:f800:d111:af1b:b193:8d4e netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:20] RDP (0): en1 af=2 (AF_INET)  addr=192.168.0.5 netmask=255.255.255.0
    [2014-Nov-26 15:52:20] RDP (0): fw0 af=18  addr= netmask=
    [2014-Nov-26 15:52:20] RDP (0): en2 af=18  addr= netmask=
    [2014-Nov-26 15:52:20] RDP (0): p2p0 af=18  addr= netmask=
    [2014-Nov-26 15:52:20] RDP (0): bridge0 af=18  addr= netmask=
    [2014-Nov-26 15:52:20] RDP (0): utun0 af=18  addr= netmask=
    [2014-Nov-26 15:52:20] RDP (0): utun0 af=30 (AF_INET6)  addr=fe80::ec38:250a:2a5d:3618%utun0 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:20] RDP (0): utun0 af=30 (AF_INET6)  addr=fd68:4c46:7658:e98e:ec38:250a:2a5d:3618 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:20] RDP (0): --- END INTERFACE LIST ---
    [2014-Nov-26 15:52:20] RDP (0): correlation id: 3bea4411-4b23-c197-9b52-63f948a10000
    [2014-Nov-26 15:52:20] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Nov-26 15:52:25] RDP (0): Exception caught: Exception in file '../../librdpclient/asiosocketendpoint.cpp' at line 521
        User Message : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote
    PC, and then try again.
    [2014-Nov-26 15:52:25] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-Nov-26 15:52:25] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Nov-26 15:52:25] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Nov-26 15:52:25] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Nov-26 15:52:25] RDP (0): lo0 af=18  addr= netmask=
    [2014-Nov-26 15:52:25] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Nov-26 15:52:25] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-Nov-26 15:52:25] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:25] RDP (0): gif0 af=18  addr= netmask=
    [2014-Nov-26 15:52:25] RDP (0): stf0 af=18  addr= netmask=
    [2014-Nov-26 15:52:25] RDP (0): en0 af=18  addr= netmask=
    [2014-Nov-26 15:52:25] RDP (0): en1 af=18  addr= netmask=
    [2014-Nov-26 15:52:25] RDP (0): en1 af=30 (AF_INET6)  addr=fe80::1240:f3ff:fe97:e0b2%en1 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:25] RDP (0): en1 af=30 (AF_INET6)  addr=2605:e000:63c2:f800:1240:f3ff:fe97:e0b2 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:25] RDP (0): en1 af=30 (AF_INET6)  addr=2605:e000:63c2:f800:d111:af1b:b193:8d4e netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:25] RDP (0): en1 af=2 (AF_INET)  addr=192.168.0.5 netmask=255.255.255.0
    [2014-Nov-26 15:52:25] RDP (0): fw0 af=18  addr= netmask=
    [2014-Nov-26 15:52:25] RDP (0): en2 af=18  addr= netmask=
    [2014-Nov-26 15:52:25] RDP (0): p2p0 af=18  addr= netmask=
    [2014-Nov-26 15:52:25] RDP (0): bridge0 af=18  addr= netmask=
    [2014-Nov-26 15:52:25] RDP (0): utun0 af=18  addr= netmask=
    [2014-Nov-26 15:52:25] RDP (0): utun0 af=30 (AF_INET6)  addr=fe80::ec38:250a:2a5d:3618%utun0 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:25] RDP (0): utun0 af=30 (AF_INET6)  addr=fd68:4c46:7658:e98e:ec38:250a:2a5d:3618 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-26 15:52:25] RDP (0): --- END INTERFACE LIST ---
    [2014-Nov-26 15:52:26] RDP (0): correlation id: 509122b5-d9b1-60f0-a0ac-b75a8dc20000
    [2014-Nov-26 15:52:26] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Nov-26 15:52:26] RDP (0): Resolved 'gato.gibbscam.com' to '12.167.61.35' using NameResolveMethod_DNS(1)
    [2014-Nov-26 15:52:26] RDP (0): Resolved 'gato.gibbscam.com' to '12.167.61.35' using NameResolveMethod_DNS(1)
    [2014-Nov-26 15:52:26] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Nov-26 15:52:27] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Nov-26 15:52:27] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Nov-26 15:52:28] RDP (0): Server supports RAIL
    [2014-Nov-26 15:52:28] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Nov-26 15:52:29] RDP (0): Server hides cursor
    [2014-Nov-26 15:52:31] RDP (0): Server shows cursor
    [2014-Nov-26 15:52:35] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-Nov-26 15:52:35] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Nov-26 15:52:35] RDP (0): ------ END ACTIVE CONNECTION ------
    Any suggestions on what I can ask my IT department to change on the server so I can connect would be greatly appreciated. 

    Hi Jeremy,
    Thank you for posting in Windows Server Forum.
    From the error and other description it seems that there is some misconfiguration with setup. You need to provide the FQDN name of the server as might server name is not resolving its name properly and so facing issue. As seems from below details:
    [2014-Nov-26 15:52:20] RDP (0): Final rdp configuration used:gatewayhostname:s:gato.gibbscam.com
    screen mode id:i:0
    use multimon:i:1
    session bpp:i:24
    full address:s:dev-JeremyS2.gibbs.local
    Configuration used and full address name both appears different so please verify configuration accordingly.
    Please check the DNS record, check certificate whether it match FQDN name of the server with certificate name, also try to check to connect with IP address and see what result you can find.
    You can follow below guide to configure RD Gateway and after that verify the result.
    1. Deploying Remote Desktop Gateway RDS 2012
    2. How To Work with RD Gateway in Windows Server 2012
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • How to get the number and response time of HTTP request through Weblogic?

    hi,
    does anybody know how to get the HTTP request information through Weblogic server, such as the number of HTTP request in 1 min and the average response time of request in 5 mins ?
    Or is there anyway i can do it through monitoring and get these data then? If so, please help tell me.
    Thanks in advance
    BTW, we don't have the 3rd-party monitoring tool here.

    Hi,
    tables: usr02, usr41.
    data: OPCODE_MODE_COUNT(1) TYPE X VALUE 3,
          modes like sy-index,
          u_MODES LIKE MODES.
    select * from usr02.
      select * from usr41 where BNAME = usr02-bname.
        CALL 'ThUsrInfo' ID 'OPCODE' FIELD OPCODE_MODE_COUNT
          ID 'TID' FIELD usr41-TERMID
          ID 'MODES' FIELD MODES.
        IF SY-SUBRC = 0.
          u_MODES = u_MODES + MODES.
        ENDIF.
      endselect.
      if sy-subrc = 0.
        write:/ usr02-bname, u_MODES.
      endif.
      clear u_modes.
    endselect.

  • Hi, after installing Adobe CC I tried opening Adobe Photoshop. This failed. I get the opening window where it says installing plugins searching etc, after which PS opens in full screen. Just moments after that there's a fail warning, no code number, only

    Hi, after installing Adobe CC I tried opening Adobe Photoshop. This failed.
    I get the opening window where it says installing plugins searching etc, after which PS opens in full screen.
    Just moments after that there's a failure warning, no code number, only the warning that PS failed to open and PS will close.
    I tried downloading it for a second time, but this did'nt solve the problem.
    Befor the CC version I used a one year student version of Adobe CS6.
    What can I do?

    Regarding the Flash Player problem, disable Hardware Acceleration to circumvent driver incompatibilities.
    Regarding the Flash Pro installation problems, post in the Flash forums or http://forums.adobe.com/community/download_install_setup

  • How to get the records of the particluar day when delta laod failed (Urgent

    Hello  BW Gurus,
    We are  facing one serious issue. Here is the scenario.
    1st time the Delta was init and for next consective two  loads delta ran sucessfully... then next time delta got failed and the status is in red..... even though system started next delta loading and it has fetched the records and status is in green but not activated ,,,,,its happening  still past one month so almost there are 20 requests which are to be get activatetd.
    How to resolve this issue.
    <b>And how to get the records of the partilcular day when the delta got failed.
    </b>
    Anyone have come across with this strange issue then help me out and i will rewarrd the points.
    Urs,
    Raki.

    Hi
    Can you provide more details about your extractor and data targets.
    Are you loading delta to an ODS ??
    If you are loading to an ODS, The only solution i can see is to get the missing delta records via FULL UPDATE. Because if you delete the error request from ODS it will also delete the 20 successful requests above it.
    Cheers
    Praveen
    null

  • I am using a 2003 eMac and am running on Mac OSX  vs 10.4.11. iTunes is not recognizing music I have purchased and when I try to connect when it request me to I get the following error message:  Cannot complete i Tunes Store request. A required iTunes com

    I am using a 2003 eMac and am running on Mac OSX  vs 10.4.11. I amrunning iTunes 8.2.1 (6) and not able to upgrade iTunes on this computer. iTunes is not recognizing music I have purchased and when I try to connect when it request me to I get the following error message:
    Cannot complete  iTunes Store request. A required iTunes component is not installed (-42404)
    Please help.

    Is this music purchased back in DRM days? I don't actually have any iTunes music so I can't test with my iTunes 7.5, but I know that without iTunes 10 you cannot even connect to the store anymore.  I wouldn't think that would require an active connection to the store all the time, otherwise how could you play music on a computer in the middle of nowhere?  Did you do something to trigger iTunes suddenly wanting to connect and check on machine authorization?

  • AnyConnect - Posture Assessment Failed: Unable to get the available CSD version....

    Hello all
    I am attempting to get the HostScan posture assessment working so we can check that any device connecting to the ASA is a valid corporate asset.
    I have installed the posture module onto our test client machine (Windows 8.1) using the following software:
    anyconnect-posture-win-4.0.00061-pre-deploy-k9
    Then in ASDM under Remote Access VPN > Host Scan Image I have uploaded the following package:
    disk0:/hostscan_3.1.06073-k9.pkg
    ...and ticked the box 'Enable Host Scan/CSD'.
    Under Remote Access VPN > Secure Desktop Manager I have configured an initial simple Prelogin policy to test it working, this simply just checks that the OS is Windows 8. A success should map this user to a Group Policy I have created that is mapped to a Connection Profile. 
    So, with all that said, when I try to connect I see that the AnyConnect client going through the motions: "Posture Assessment: Checking for updates....", after which I get a pop-up and error message:
    "Posture Assessment Failed: Unable to get the available CSD version from the secure gateway"
    A bit stumped here and haven't quite found much on the web as to how to resolve this.
    Has anyone encountered this before? If so, can you advise on what I can do
    By the way I am connecting using IKEv2 (IPsec) as these are the requirements and the AC version is 4.0.00061, ASA version: 9.2(1).
    Many thanks

    Hello
    Please forgive the shameless bump. Was hoping someone could help?
    Many thanks

  • How to get the concurrent request id while running a concurrent program

    Hi All,
    I am working with oracle apps r12.
    I have created a custom report with some parameter. And i have created a parameter P_CONC_REQUEST_ID.
    And in the report i have used SRW.USER_EXIT('FND SRWEXIT'); in after report and SRW.USER_EXIT ('FND SRWINIT'); in before report trigger.
    when i ran the report from the application, I didnt get the conc request id in the parameter. It not passing the concurrent request id.
    Can any one tell me how to bring the concurrent request id.
    Thanks & regards
    Srikkanth
    Edited by: Srikkanth.M on Mar 14, 2012 1:56 PM

    Hi;
    FND_CONCURRENT_REQUESTS
    This table contains a complete history of all concurrent requests.
    FND_RUN_REQUESTS
    When a user submits a report set, this table stores information about
    the reports in the report set and the parameter values for each report.
    FND_CONC_REQUEST_ARGUMENTS
    This table records arguments passed by the concurrent manager to each program it starts running.
    FND_DUAL
    This table records when requests do not update database tables.
    FND_CONCURRENT_PROCESSES
    This table records information about Oracle Applications and operating system processes.
    FND_CONC_STAT_LIST
    This table collects runtime performance statistics for concurrent requests.
    FND_CONC_STAT_SUMMARY
    This table contains the concurrent program performance statistics generated by the Purge Concurrent Request and/or Manager Data program. The Purge concurrent Request and/or Manager Data program uses the data in FND_CONC_STAT_LIST to compute these
    Also see:
    concurrent request details
    Find history of concurrent request details
    How to determine the user who placed a certain concurrent request?
    Regard
    Helios

Maybe you are looking for

  • Why can't I access the variables in my threads?

    hello. another question about threads.. ========================== I have an inner class that implements Runnable (i.e. a thread) and has a variable in it. I want to be able to access that variable from outside the thread class so that I can set or r

  • Set timeout for completion of each thread

    i have a requirement where i need to start n threads and set timeout for completion of each thread. if the thread is not executed successfully(because of timeout ) i have to enter in audit table that it failed because of timeout if executed successfu

  • Quantity gets divided by 1000 while a BAPI is used to create a quotation...

    Hi all, I am using a BAPI "BAPI_QUOTATION_CREATEFROMDATA" to create a Quotation. I am passing the value 1000 to the REQ_QTY field and that is getting stored as 1 in the Quotation. How should we handle this situation inorder to have 1000 as the quanti

  • Calling BUS3007 from VB6 application

    Hi, i´m triing to call ARAccount.GetBalancedItems from an VB Application. But the Call always ends with "Named Parameter not found!" Sample Code: Set mObj_Buch = mobj_Bapi.GetSAPObject("BUS3007") Set mobj_LineItem = mobj_Bapi.dimas(mObj_Buch, "GetBal

  • Some apps won't launch, causing kernel_task to go crazy

    Hey, I'm not sure exactly when this first started, I guess sometime when Mavericks came out. It made me go back to Mountain Lion 10.8.5, but that didn't seem to help. The problem is that some apps (Spotify and a few more) won't launch, they just keep