Intermittent delays in request getting from WSM OHS to WSM/ESB

Intermittently, we are experiencing a lag of several minutes between the time a request appears in WSM OHS logs and when it
finally appears in the WSM gateway.log. Then it gets to the ESB, gets processed, and a response is sent back to the client.
The problem is that our user's client times-out and disconnects by the time ESB processes the request and therefore they never receive the response.
Our environment is HA with WSM/ESB v10.1.3.4.
When this happens, around the time a request is sent we see time-out/connection errors in WSM OHS Apache error logs:
[Thu Sep 23 15:07:48 2010] [warn] [client 65.199.126.4] oc4j_socket_recvfull timed out
[Thu Sep 23 15:07:48 2010] [error] [client 65.199.126.4] [ecid: 1285254167:10.77.177.66:11013:0:1280,0] mod_oc4j: request to OC4J oas61.pw.cccis.com:12586 failed: Connect failed
In access_log, there is HTTP 500 error:
65.199.126.4 - "-" [23/Sep/2010:15:07:48 +0000] "POST /gateway/services/ExternalAssignmentWS HTTP/1.0" 500 0 "-" "Axis/1.2.1" 301
Thanks.
Tatyana.

Can you try changing the port to 80 while creating connection.

Similar Messages

  • .MSG files. Problem with getting requested values from crawled properites

    Hi
    I have a lot of msg files on my file server. I use SharePoint Enterprise Serach engine to crawl all these MSGs.
    I would like to get extra managed properties out of these files. I am most interested in getting Mail:5(text) / Mail:12(Date and Time) / Mail:53(Date and Time) from MAIL category in Managed Properties.
    This thread is very similar to one already posted by SpinnerUp:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/82d69df0-5cb2-4e51-a485-34209e111f4b/problem-with-crawling-msg-files-doesnt-seem-to-return-requested-values-from-crawled-property
    Please be aware that I do not use Public Folders. These MSGs are exproted from Outlook and are stored on File Server not Exchange.
    I tried to link Crawled Properties to new property however I cannot get any results back.
    Thank you for you help.
    Regards, Marcin (Please mark as helpful or answered if it helps)

    Thank you for your replay.
    However I am not keen to write custom connector at this stage.
    Is it possible to simply get "Subject", "Sent", "Received" info from msg file and then map it to managed properties.
    Does SharePoint create any crawled properties which contain information about let's say "Subject" which then can be used to create managed properties?
    I tried playing with "MAIL" properties however I cannot get them to work. I guess this is because the file is a msg file rather than mail which is stored in Exchange Public Folder.
    Regards, Marcin (Please mark as helpful or answered if it helps)

  • How to get Request Offering from given Service Offering using Service Manager SDK?

    Recently, I am working on application where I have to fetch all Request Offering from given Service Offering. 
    I can retrieve all Request Offering using following method of SM SDK : 
    var requestOfferings = group.Extensions.Retrieve<RequestOffering>();// group is Management Group
    But I am unable to get request Offering from given Service Offering as I am new to this platform. I have searched in web but can not find solution to this problem.
    It would be great if someone guide for this problem or give me any suggestion related to this problem.
    Thanks in advance.

    RequestOfferings are handled a little differently in the SDK, but fortunately, they're still backed by standard EnterpriseManagementObjects..it just takes a little work to get them.
    There are a few ways you can go about getting a request offering's related service offerings. I'm going to show you the relationship route, but you could also use a type projection to achieve the same goal.
    In your original post, you're simply retrieving _all_ request offerings..that's fine. If you wanted to retrieve a single request offering (as I do in my example) you need to find the request offering's identifier. This identifier is a pipe delimited string
    of various values. The quickest way to find it, in my opinion, is to query the MT_System$RequestOffering table in the database, but you can also find it by looping through all the RequestOfferings returned by group.Extensions.Retrieve<RequestOffering>();
    Anyway, for the following example to work, you only need your request offering's Identifier and your management server name. (Again, you could simply loop through all of your request offerings and retrieve the service offerings for all of them)
    The comments inline with this example should guide you through the steps.
    //Connect to the management group and prepare the class and relationship types that we'll need.
    String strMySCSMServer = "your server";
    EnterpriseManagementGroup emg = new EnterpriseManagementGroup(strMySCSMServer);
    ManagementPackClass mpcRO = emg.EntityTypes.GetClass(new Guid("8FC1CD4A-B39E-2879-2BA8-B7036F9D8EE7")); //System.RequestOffering
    ManagementPackRelationship relSORelatesToRO = emg.EntityTypes.GetRelationshipClass(new Guid("BE417A55-6622-0FC3-FCEA-90CD23E0FC23")); //System.ServiceOfferingRelatesToRequestOffering
    //An example of an extension identifier looks like this:
    //1|My.RO.MP|1.0.0.0|Offeringc921c4feujhoi8cdsjloiz352d7gf3k0|3|RequestOffering
    String strRequestOfferingIdentifier = "your request offering identifier";
    //Retrieve the request offering using an Extension Identifier.
    ExtensionIdentifier ei = null;
    ExtensionIdentifier.TryParse(strRequestOfferingIdentifier, out ei);
    RequestOffering ro = emg.Extensions.Retrieve<RequestOffering>(ei);
    //Using the request offering's Identifier, retrieve the enterprise management object that it represents
    EnterpriseManagementObjectCriteria emocRO = new EnterpriseManagementObjectCriteria("ID = '" + ro.Identifier + "'", mpcRO);
    IObjectReader<EnterpriseManagementObject> orROs = emg.EntityObjects.GetObjectReader<EnterpriseManagementObject>(emocRO, ObjectQueryOptions.Default);
    //Since we queried for only a single Request Offering, the object reader should contain 0 or 1 elements.
    EnterpriseManagementObject emoRO = null;
    if (orROs.Count > 0)
    emoRO = orROs.ElementAt(0);
    else
    Console.WriteLine("No Request Offering found");
    //Now, using the relationship type "System.ServiceOfferingRelatesToRequestOffering", get all Service Offering's related to our request offering
    IList<EnterpriseManagementRelationshipObject<EnterpriseManagementObject>> lstEMROs = emg.EntityObjects.GetRelationshipObjectsWhereTarget<EnterpriseManagementObject>(emoRO.Id, relSORelatesToRO, DerivedClassTraversalDepth.None, TraversalDepth.OneLevel, ObjectQueryOptions.Default);
    //The GetRelationshipObjectsWhereTarget method returns a list of EnterpriseManagementObjectRelationships..These objects represent that relationship between two objects.
    //Thus, these relationship objects have two properties of interest; TargetObject and SourceObject. In this case, service offerings are the source of this relationship type and
    //so, you can access the service offering object itself by using the relationship object's SourceObject property (which is nothing more than an EnterpriseManagementObject)
    foreach (EnterpriseManagementRelationshipObject<EnterpriseManagementObject> emro in lstEMROs)
    //emro.SourceObject is your Service Offering object. You can use it for whatever you need from here on out. In this example, i'm just writing out the DisplayName
    EnterpriseManagementObject emoServiceOffering = emro.SourceObject;
    Console.WriteLine(emoServiceOffering[null, "DisplayName"].Value);
    Give it a try, let me know if you have any questions :)

  • Getting error while passing implicit request object from JSP to JavaBean

    Hi,
    I am getting error while passing implicit object ie( request object)
    from within JSP to JavaBean.
    Following is source for JSP, JavaBean and Error message I am getting.
    vaLookup.jsp Source
    <jsp:useBean id="db" class="advisorinsight.javabeans.DisplayPages"
    scope="request">
    <jsp:setProperty name="db" property="request" value="<%= request %>"
    />
    </jsp:useBean>
    <jsp:getProperty name="db" property="totalrecords" />
    JAVABEAN DisplayPages.java source
    package javabeans;
    import java.io.Serializable;
    import javax.servlet.http.HttpServletRequest;
    public final class DisplayPages implements Serializable {
    private String totalrecords;
    private HttpServletRequest request;
    public void setRequest(HttpServletRequest req){
    this.request = req;
    public java.lang.String getTotalrecords()
    this.totalrecords =
    this.request.getParameter("totalrecords");
    return this.totalrecords;
    public DisplayPages(){
    totalrecords = "";
    request = null;
    error after executing vaLookup.jsp
    [30/Nov/2001 11:56:04:5] info: EXTMGR-006: GXExtensionManager: Extension
    service JavaExtData successfully loaded
    [30/Nov/2001 11:56:04:5] info: EXTMGR-006: GXExtensionManager: Extension
    service LockManager successfully loaded
    [30/Nov/2001 11:56:04:5] info: EXTMGR-006: GXExtensionManager: Extension
    service RLOPManager successfully loaded
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:5] info: REQ-012: thread add
    [30/Nov/2001 11:56:04:7] info: ENGINE-ready: ready: 10819
    [30/Nov/2001 11:56:46:0] info: --------------------------------------
    [30/Nov/2001 11:56:46:0] info: JSPRunnerSticky: init
    [30/Nov/2001 11:56:46:0] info: --------------------------------------
    [30/Nov/2001 11:56:51:7] error: Exception: SERVLET-compile_failed:
    Failed in compiling template: /va/valookup.jsp, javac error:
    c:\iplanet\ias6\ias\APPS\variabl
    S\va\valookup.java:76: Undefined variable: JSP_8
    db.setRequest(_JSP__8);
    ^
    1 error
    Exception Stack Trace:
    java.lang.Exception: javac error:
    c:\iplanet\ias6\ias\APPS\variableannuity\va\WEB-INF\compiled_jsp\jsp\APPS\va\valookup.java:76:
    Undefined variable: JSP_8
    db.setRequest(_JSP__8);
    ^
    1 error
    at
    com.netscape.server.servlet.jsp.JSPCompiler.compileJSP(Unknown Source)
    at
    com.netscape.server.servlet.jsp.JSPCompiler.compileOrLoadJSP(Unknown
    Source)
    at
    com.netscape.server.servlet.jsp.JSPCompiler.compileInstance(Unknown
    Source)
    at
    com.netscape.server.servlet.jsp.JSPCompiler.compileInstance(Unknown
    Source)
    at
    com.netscape.server.servlet.platformhttp.PlatformHttpServletResponse.callJspCompiler(Unknown
    Source)
    at
    com.netscape.server.servlet.platformhttp.PlatformHttpServletResponse.callUri(Unknown
    Source)
    at
    com.netscape.server.servlet.platformhttp.PlatformHttpServletResponse.callUriRestrictOutput(Unknown
    Source)
    at
    com.netscape.server.servlet.platformhttp.PlatformRequestDispatcher.forward(Unknown
    Source)
    at com.netscape.server.servlet.jsp.JSPRunner.service(Unknown
    Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unknown
    Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)

    The only thing that I see that looks funny to me is when you pass the request object into the method using <%=request%>, Im not sure whats going to happen here because that is suppose to print the results. Have you tried simply using <%request%>?

  • Get IP of server where request came from

    Here's the scenario:
    User is browsing website A, hosted in server A.
    He clicks on a link that opens website B, hosted in server B.
    Server B should "skip" authentication only if the request came from server A.
    My question is, from the code in website B, how do I retrieve the IP or hostname where the request came from? Basically I need to find out if the request came from server A (not some other server).
    Any help will be appreciated. Thank you.

    If you want to use programmatic security, then this might work in servlet/jsp:
    //i think this returns the full url.
    String refText = request.getHeader("referer");
    String ip = null;
    if(refText != null){
         java.net.URL url = new java.net.URL(refText);
         String host = url.getHostname();
         ip = java.net.InetAddress.getByName(host).toString();
    }

  • SharePoint Search is failed when request comes from one front end server

    Hello colleagues!
    I have a SharePoint 2013 farm with 3 server: batch, wfe 1, wfe 2
    Search topology includes batch and wfe 1 servers.
    So when search request comes from wfe 1 search service works fine. When search request comes from wfe 2 search service is failed.
    In logs there is an error:
    A failure was reported when trying to invoke a service application: EndpointFailure Process Name: w3wp Process ID: 16556 AppDomain Name: /LM/W3SVC/234569039/ROOT-4-130544984716198913 AppDomain ID: 6 Service Application Uri: urn:schemas-microsoft-com:sharepoint:service:9d3cd1b87fc848c0b7bbbfb95a7fd7a0#authority=urn:uuid:08a793bc71b54dfcb7f0cf2d6cc35c4f&authority=https://wfe2:32844/Topology/topology.svc
    Active Endpoints: 1 Failed Endpoints:1 Affected Endpoint:
    http://batch:32843/9d3cd1b87fc848c0b7bbbfb95a7fd7a0/SearchService.svc
    I have gone through the link
    http://batch:32843/9d3cd1b87fc848c0b7bbbfb95a7fd7a0/SearchService.svc It works from any server and any workstation except wf2
    When I open the link on server wfe2 I get:
    HTTP Error 503. The service is unavailable.
    Please help to understand what is wrong.
    Thank you for your help

    Hi Anna,
    Is this issue resolved?
    Is there anything update about this issue?
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Re: [iPlanet-JATO] Re: onBeforeRequest(); Finding requested view from requestContext

    If you want to stop a JATO request in its tracks, you have a little black
    magic at your disposal: you can throw a CompleteRequestException. This
    indicates to the JATO infrastructure that it should immeditately stop
    handling the request, but not generate an error, as the develper has taken
    full control. You can generally throw this error from anywhere, at any
    point--it is a RuntimeException, and is "tunneled" through other exception
    handlers where appropriate.
    In your scenario, you want to check if the user is logged in, and if not,
    save the target URL using the parsePathInfo() method. Then, forward to the
    login page and then throw a CompleteRequestException.
    Todd
    ----- Original Message -----
    From: "nickmalthus" <nickmalthus@h...>
    Sent: Monday, January 07, 2002 3:05 PM
    Subject: [iPlanet-JATO] Re: onBeforeRequest(); Finding requested view from
    requestContext
    I guess what I am thinking about doing is capturing the requested URL,
    i.e. /appname/modulename/RequestName. In the onBeforeRequest(). I
    would then check to see if the user is logged in, and if not, set the
    URL in the session(or page session of the Login bean) and forward to
    the Login viewbean using the viewbean manager. Inside the login view
    in the handleSubmit() method I would authenticate the user and then
    get the URL out of the session (or pagesession). I would then
    magically get the ViewBean/Command object for the URL or otherwise
    "forward the request" as if the user had typed in
    /appname/modulename/RequestName, which is the behavior I am trying to
    acheive.
    It turns out I cannot forward in the onBeforeRequest() as it will
    output the viewbean and then continue to process the request which in
    turn trys to do a RequestDispatcher().forward after data has been
    written to the stream which does not bode well with the servlet
    container. Thus, it appears I have no control of the request in the
    onBeforeRequest() method. Is this correct?
    In light of this new observation I am now going to create a base view
    class that all views will extend from and override the
    onSecurityCheck() method to forward to my login bean. If I can't find
    any other way, I will get the URL from the page session and do a
    response.sendRedirect() to the URL.
    Thanks for the help!
    --- In iPlanet-JATO@y..., "Craig V. Conover" <craig.conover@s...> wrote:
    The problem is that you don't know what the target view is until it has
    been forwarded to.
    Think about it... the request handling view bean (or command object)has
    the request handler that has the code that will ultimately forward to
    another view bean. This is code that you have written. So, until that
    forwardTo() is invoked, there is no notion of a "target page".
    What you do know is which "page" (view bean) the request is coming from
    (the handling view bean or command class). You can get this from the
    HttpServletRequest. The attribute name is "viewBean".
    So you can get the view bean name by doing the following inonBeforeRequest:
    <HttpServletRequest>.getAttribute("viewBean");
    But I suspect this is not going to solve your current issue.
    You could add the target page name to the page session. If there ismore
    than one possible target page, it might get a little more involved.
    Let me know if the use of page session needs further explanation.
    c
    For more information about JATO, including download information, pleasevisit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    If you want to stop a JATO request in its tracks, you have a little black
    magic at your disposal: you can throw a CompleteRequestException. This
    indicates to the JATO infrastructure that it should immeditately stop
    handling the request, but not generate an error, as the develper has taken
    full control. You can generally throw this error from anywhere, at any
    point--it is a RuntimeException, and is "tunneled" through other exception
    handlers where appropriate.
    In your scenario, you want to check if the user is logged in, and if not,
    save the target URL using the parsePathInfo() method. Then, forward to the
    login page and then throw a CompleteRequestException.
    Todd
    ----- Original Message -----
    From: "nickmalthus" <nickmalthus@h...>
    Sent: Monday, January 07, 2002 3:05 PM
    Subject: [iPlanet-JATO] Re: onBeforeRequest(); Finding requested view from
    requestContext
    I guess what I am thinking about doing is capturing the requested URL,
    i.e. /appname/modulename/RequestName. In the onBeforeRequest(). I
    would then check to see if the user is logged in, and if not, set the
    URL in the session(or page session of the Login bean) and forward to
    the Login viewbean using the viewbean manager. Inside the login view
    in the handleSubmit() method I would authenticate the user and then
    get the URL out of the session (or pagesession). I would then
    magically get the ViewBean/Command object for the URL or otherwise
    "forward the request" as if the user had typed in
    /appname/modulename/RequestName, which is the behavior I am trying to
    acheive.
    It turns out I cannot forward in the onBeforeRequest() as it will
    output the viewbean and then continue to process the request which in
    turn trys to do a RequestDispatcher().forward after data has been
    written to the stream which does not bode well with the servlet
    container. Thus, it appears I have no control of the request in the
    onBeforeRequest() method. Is this correct?
    In light of this new observation I am now going to create a base view
    class that all views will extend from and override the
    onSecurityCheck() method to forward to my login bean. If I can't find
    any other way, I will get the URL from the page session and do a
    response.sendRedirect() to the URL.
    Thanks for the help!
    --- In iPlanet-JATO@y..., "Craig V. Conover" <craig.conover@s...> wrote:
    The problem is that you don't know what the target view is until it has
    been forwarded to.
    Think about it... the request handling view bean (or command object)has
    the request handler that has the code that will ultimately forward to
    another view bean. This is code that you have written. So, until that
    forwardTo() is invoked, there is no notion of a "target page".
    What you do know is which "page" (view bean) the request is coming from
    (the handling view bean or command class). You can get this from the
    HttpServletRequest. The attribute name is "viewBean".
    So you can get the view bean name by doing the following inonBeforeRequest:
    <HttpServletRequest>.getAttribute("viewBean");
    But I suspect this is not going to solve your current issue.
    You could add the target page name to the page session. If there ismore
    than one possible target page, it might get a little more involved.
    Let me know if the use of page session needs further explanation.
    c
    For more information about JATO, including download information, pleasevisit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

  • Error in submiting request set from Daily Business Intelligence Administrat

    I am getting the following error when submitting "ADS Incremental Financials Request Group" request set from "Daily Business Intelligence Administrator" responsibility in vision R12 instance :
    APP-FND-01564: ORACLE error -1116 in SUBMIT: others
    Cause: SUBMIT: others failed due to ORA-01116: error in opening database file 11
    ORA-01110: data file 11: '<path>.dbf'
    ORA-27041: unable to open file
    SVR4 Error: 24: Too many open files
    Additional information: 3.
    The SQL statement being executed at the time of the error was: &SQLSTMT and was executed for the file &ERRFILE.
    OS is Solaris 10.5
    in a document it was suggested to increase the ulimit -n equal to ulimit -Hn and in solaris for R12 nofiles (descriptors) = 65536. Both ulimit -n and ulimit -Hn have been set to 65536 but still the error is showing.
    Plz Helppp

    Check Note: 549806.1 - ADS Incremental Financials Request Group errors out with APP-FND-00806
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=549806.1

  • How to create a standard SOAP request message from a given WSDL file?

    Hello,
    If I have a WSDL file (either from a .net web service or from the famous Amazon web services), what is the best way to generate a SOAP compliant request message?
    I am having trouble understanding the role of WSDL file in a given web service.
    Question 1:
    If I have a web service that is implemented using jaxm, how do I create/publish a WSDL file that describes the web service?
    Assuming I can generate a wsdl file, can I recreate the SOAP request message from the WSDL file automatically (that matches the original request, which is hand build by me?)
    Question 2:
    If I have a web service that is implemented using JAX-RPC, based on the WSDL file, can I simply generate a valid SOAP message (by some JAVA api) and get the response message directly?
    thanks...

    I have the same question ("Assuming I can generate a wsdl file, can I recreate the SOAP request message from the WSDL file automatically (that matches the original request, which is hand build by me?)")
    Have you already found an answer to this?

  • Requesting pages from the index page cause the the webserver to hang

    Whenever I request pages from the main osx server page(ie my page or wikis) it cause the web server to hang for a minute or so before giving me the page. It also stops the server from sending pages to anyone else.
    If I go directly to any of the wikis by typing the address into the navbar I get no problems.
    here is the info from the log file.
    oxy_http.c(1920): proxy: HTTP: serving URL http://127.0.0.1:8086/
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(1991): proxy: HTTP: has acquired connection for (127.0.0.1)
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(2047): proxy: connecting http://127.0.0.1:8086/ to 127.0.0.1:8086
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(2145): proxy: connected / to 127.0.0.1:8086
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(2300): proxy: HTTP: fam 2 socket created to connect to 127.0.0.1
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(2406): proxy: HTTP: connection complete to 127.0.0.1:8086 (127.0.0.1)
    [Wed Sep 16 15:58:59 2009] [debug] modproxyhttp.c(1703): proxy: start body send
    [Wed Sep 16 15:58:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:58:59 2009] [debug] modproxyhttp.c(1796): proxy: end body send
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(2009): proxy: HTTP: has released connection for (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(56): proxy: HTTP: canonicalising URL //127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(1489): [client 192.168.0.103] proxy: http: found worker http://127.0.0.1:8086 for http://127.0.0.1:8086/, referer: http://wiki.intraecdpm.org/groups/cwwE/
    [Wed Sep 16 15:59:29 2009] [debug] mod_proxy.c(993): Running scheme http handler (attempt 0)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1920): proxy: HTTP: serving URL http://127.0.0.1:8086/
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(1991): proxy: HTTP: has acquired connection for (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2047): proxy: connecting http://127.0.0.1:8086/ to 127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2145): proxy: connected / to 127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2300): proxy: HTTP: fam 2 socket created to connect to 127.0.0.1
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2406): proxy: HTTP: connection complete to 127.0.0.1:8086 (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1703): proxy: start body send
    [Wed Sep 16 15:59:29 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1796): proxy: end body send
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2009): proxy: HTTP: has released connection for (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(56): proxy: HTTP: canonicalising URL //127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(1489): [client 192.168.0.103] proxy: http: found worker http://127.0.0.1:8086 for http://127.0.0.1:8086/, referer: http://wiki.intraecdpm.org/groups/ictstaff/
    [Wed Sep 16 15:59:29 2009] [debug] mod_proxy.c(993): Running scheme http handler (attempt 0)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1920): proxy: HTTP: serving URL http://127.0.0.1:8086/
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(1991): proxy: HTTP: has acquired connection for (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2047): proxy: connecting http://127.0.0.1:8086/ to 127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2145): proxy: connected / to 127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2300): proxy: HTTP: fam 2 socket created to connect to 127.0.0.1
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2406): proxy: HTTP: connection complete to 127.0.0.1:8086 (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1703): proxy: start body send
    [Wed Sep 16 15:59:29 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1796): proxy: end body send
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2009): proxy: HTTP: has released connection for (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(56): proxy: HTTP: canonicalising URL //127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(1489): [client 192.168.0.103] proxy: http: found worker http://127.0.0.1:8086 for http://127.0.0.1:8086/, referer: http://wiki.intraecdpm.org/groups/cwwE/
    [Wed Sep 16 15:59:59 2009] [debug] mod_proxy.c(993): Running scheme http handler (attempt 0)
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(1920): proxy: HTTP: serving URL http://127.0.0.1:8086/
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(1991): proxy: HTTP: has acquired connection for (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2047): proxy: connecting http://127.0.0.1:8086/ to 127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2145): proxy: connected / to 127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2300): proxy: HTTP: fam 2 socket created to connect to 127.0.0.1
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2406): proxy: HTTP: connection complete to 127.0.0.1:8086 (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(1703): proxy: start body send
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(1796): proxy: end body send
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2009): proxy: HTTP: has released connection for (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(56): proxy: HTTP: canonicalising URL //127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(1489): [client 192.168.0.103] proxy: http: found worker http://127.0.0.1:8086 for http://127.0.0.1:8086/, referer: http://wiki.intraecdpm.org/groups/ictstaff/
    [Wed Sep 16 15:59:59 2009] [debug] mod_proxy.c(993): Running scheme http handler (attempt 0)
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(1920): proxy: HTTP: serving URL http://127.0.0.1:8086/
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(1991): proxy: HTTP: has acquired connection for (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2047): proxy: connecting http://127.0.0.1:8086/ to 127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2145): proxy: connected / to 127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2300): proxy: HTTP: fam 2 socket created to connect to 127.0.0.1
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2406): proxy: HTTP: connection complete to 127.0.0.1:8086 (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [error] [client 192.168.0.103] (54)Connection reset by peer: proxy: error reading status line from remote server 127.0.0.1, referer: http://wiki.intraecdpm.org/groups/ictstaff/
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(1432): [client 192.168.0.103] proxy: NOT Closing connection to client although reading from backend server 127.0.0.1 failed., referer: http://wiki.intraecdpm.org/groups/ictstaff/
    [Wed Sep 16 15:59:59 2009] [error] [client 192.168.0.103] proxy: Error reading from remote server returned by /RPC2, referer: http://wiki.intraecdpm.org/groups/ictstaff/
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2009): proxy: HTTP: has released connection for (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] mod_cache.c(131): Adding CACHE_SAVE filter for /error/HTTPBADGATEWAY.html.var
    [Wed Sep 16 15:59:59 2009] [debug] mod_cache.c(138): Adding CACHEREMOVEURL filter for /error/HTTPBADGATEWAY.html.var
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [debug] mod_cache.c(528): cache: /error/HTTPBADGATEWAY.html.var not cached. Reason: Response status 502
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [notice] Graceful restart requested, doing restart
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [notice] Apache/2.2.11 (Unix) PHP/5.3.0 configured -- resuming normal operations
    [Wed Sep 16 16:00:04 2009] [notice] caught SIGTERM, shutting down
    [Wed Sep 16 16:00:15 2009] [notice] Apache/2.2.11 (Unix) PHP/5.3.0 configured -- resuming normal operations
    As far as I can tell it's refusing a connection from itself but what module is causing it I have no Idea. It's also mention proxy but I'm not running it. Help Please!

    I now believe maybe I'm missing files can someone tell me what the contents of the directory /Library/WebServer/Documents/collaboration-availability/ should be please ?
    I'm let to believe this from these entries.
    [Wed Sep 16 16:52:52 2009] [notice] caught SIGTERM, shutting down
    [Wed Sep 16 16:54:09 2009] [notice] Apache/2.2.11 (Unix) PHP/5.3.0 configured -- resuming normal operations
    [Wed Sep 16 16:54:20 2009] [error] [client 192.168.0.103] File does not exist: /Library/WebServer/Documents/collaboration-availability/webcal/, referer: http://wiki.intraecdpm.org/
    [Wed Sep 16 16:54:20 2009] [error] [client 192.168.0.103] Attempt to serve directory: /Library/WebServer/Documents/collaboration-availability/changepassword/, referer: http://wiki.intraecdpm.org/
    [Wed Sep 16 16:54:20 2009] [error] [client 192.168.0.103] Attempt to serve directory: /Library/WebServer/Documents/collaboration-availability/webmail/, referer: http://wiki.intraecdpm.org/
    [Wed Sep 16 16:54:20 2009] [error] (61)Connection refused: proxy: HTTP: attempt to connect to 127.0.0.1:8171 (*) failed
    [Wed Sep 16 16:54:20 2009] [error] [client 192.168.0.103] Attempt to serve directory: /Library/WebServer/Documents/collaboration-availability/emailrules/, referer: http://wiki.intraecdpm.org/
    [Wed Sep 16 16:55:22 2009] [error] [client 192.168.0.103] Attempt to serve directory: /Library/WebServer/Documents/collaboration-availability/webmail/, referer: http://wiki.intraecdpm.org/groups/
    [Wed Sep 16 16:55:22 2009] [error] [client 192.168.0.103] File does not exist: /Library/WebServer/Documents/collaboration-availability/webcal/, referer: http://wiki.intraecdpm.org/groups/

  • Agent cannot change to the requested state from current state

    Hi all,
    I have a new setup using uccx 8 and ccme 8.1 . Everything seems fine exept from randomly agents stuck to a not ready state. When trying to go to a ready state we get the following error "cannot change to the requested state from your current state" . The only option is to log out the agent and then log back in.
    Any ideas?

    Hi there,
    I did the downgrade but no good. After a long search i found what finally the problem is.
    The lines are stuck when there is a trasfer from a non icd dn to an icd dn. Believe it or not this is not supported when the setup uses ccme
    You cannot transfer a call from a common dn to a uccx extension.
    All unsupported features are listed below
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_8_0/release/notes/uccx_802_rn.pdf
    Thanks for your time.
    Yannis

  • How to call a Request Set from OAF

    How we can call a Request set from OAF page .

    Hi Sumit ,
    Thanx for your responce.
    I tried to call the below code in OAF AM method but i am getting error as : Invalid Column Type.
    Please help me on this.
    IS i am doing it in right way or not?
    public void handleLaunchReconProg()
    String sqlStatement = "BEGIN :1 := FND_SUBMIT.SET_REQUEST_SET (:2,:3); END;";
    OADBTransaction txn = (OADBTransaction)getDBTransaction();
    CallableStatement cStmt = txn.createCallableStatement(sqlStatement,1);
    try
    cStmt.registerOutParameter(1, Types.BOOLEAN);
    cStmt.setString(2,"XXDIS");
    cStmt.setString(3,"XXDIS_RECON_SUPP_BKLG");
    cStmt.execute();
    catch (Exception e)
    throw OAException.wrapperException(e);
    finally
    try
    cStmt.close();
    catch (Exception e)
    throw OAException.wrapperException(e);
    }

  • Facing issue on request submission from Self user registration with workflow.

    HI Everyone,
    We have a use case where in User Registration process has a two stage workflow.
    In the first stage approver(Common admin) would open the request and approve it updating the organization to which the user belongs to and the the work flow should be routed to the selected organization admin in the second stage based on the org selected in the first level of approval.
    For this we have devloped a workflow and applied the same and now facing the issue once the request moves to Second level for approval.
    Request gets failed.
    Below is the exception found on clicking Request status from Track Requests.
    Can you kindly let me know any possible resolution to resolve this.

    Error log :
    IAM-2050126 : Invalid outcome com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.oracle.com/bpel/extension}runtimeFault} messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage} parts: {{ summary=<summary>oracle/iam/platform/OIMClient</summary> ,detail=<detail>java.lang.NoClassDefFoundError: oracle/iam/platform/OIMClient
    at orabpel.approvalprocess.ExecLetBxExe0.execute(ExecLetBxExe0.java:195)
    at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELxExecWMP.__executeStatements(BPELxExecWMP.java:47) 
    at com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform(BaseBPELActivityWMP.java:173) 
    at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:2718)
    at com.collaxa.cube.engine.CubeEngine._handleWorkItem(CubeEngine.java:1197)
    at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1100)
    at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:76) 
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:251) 
    at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:330) 
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4652)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4583)
    at com.collaxa.cube.engine.CubeEngine._createAndInvoke(CubeEngine.java:714)
    at com.collaxa.cube.engine.CubeEngineSecurityManager$2.run(CubeEngineSecurityManager.java:101) 
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
    at oracle.security.jps.internal.jaas.AccActionExecutor.execute(AccActionExecutor.java:74) 
    at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242) 
    at oracle.security.jps.internal.jaas.CascadeActionExecutor$SubjectPrivilegedExceptionAction.run(CascadeActionExecutor.java:83) 
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363) 
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146) 
    at weblogic.security.Security.runAs(Security.java:61)
    at oracle.security.jps.wls.jaas.WlsActionExecutor.execute(WlsActionExecutor.java:51) 
    at oracle.security.jps.internal.jaas.CascadeActionExecutor.execute(CascadeActionExecutor.java:56) 
    at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242) 
    at com.collaxa.cube.engine.CubeEngineSecurityManager.performActionAsSubject(CubeEngineSecurityManager.java:79) 
    at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:555)
    at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:531) 
    at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleInvoke(CubeDeliveryBean.java:319) 
    at sun.reflect.GeneratedMethodAccessor4136.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
    at java.lang.reflect.Method.invoke(Method.java:606)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310) 
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182) 
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149) 
    at com.oracle.pitchfork.intercept.MethodInvocationInvocationContext.proceed(MethodInvocationInvocationContext.java:103) 
    at oracle.security.jps.ee.ejb.JpsAbsInterceptor$1.run(JpsAbsInterceptor.java:113) 
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460) 
    at oracle.security.jps.ee.ejb.JpsAbsInterceptor.runJaasMode(JpsAbsInterceptor.java:100) 
    at oracle.security.jps.ee.ejb.JpsAbsInterceptor.intercept(JpsAbsInterceptor.java:154) 
    at oracle.security.jps.ee.ejb.JpsInterceptor.intercept(JpsInterceptor.java:113) 
    at sun.reflect.GeneratedMethodAccessor1077.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
    at java.lang.reflect.Method.invoke(Method.java:606)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310) 
    at com.oracle.pitchfork.intercept.JeeInterceptorInterceptor.invoke(JeeInterceptorInterceptor.java:68) 
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) 
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131) 
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119) 
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) 
    at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34) 
    at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54) 
    at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42) 
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) 
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) 
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) 
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131) 
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119) 
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) 
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204) 
    at com.sun.proxy.$Proxy330.handleInvoke(Unknown Source)
    at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:39) 
    at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.handleInvoke(Unknown Source)
    at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(InvokeInstanceMessageHandler.java:30) 
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:141) 
    at com.collaxa.cube.engine.dispatch.BaseDispatchTask.process(BaseDispatchTask.java:89) 
    at com.collaxa.cube.engine.dispatch.BaseDispatchTask.run(BaseDispatchTask.java:65) 
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) 
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) 
    at com.collaxa.cube.engine.dispatch.Dispatcher$ContextCapturingThreadFactory$2.run(Dispatcher.java:933) 
    at java.lang.Thread.run(Thread.java:745) </detail> ,code=<code>java.lang.NoClassDefFoundError</code>} cause: {oracle/iam/platform/OIMClient} received from SOA for the request id 214.

  • How do I get from Oracle Database 8.1.7.0.0 to 8.1.7.2?

    How do I get from Oracle Database 8.1.7.0.0 to 8.1.7.2? There is a patchset that fixes a bug in 8.1.7 for memory leaks that I need installed. I am currently running on a WindowsNT Server with a Oracle Database version of 8.1.7.0.0. Is going to 8.1.7.2 a complete release upgrade, or is there a smaller upgrade to get there, and how do I get the files required>
    Thanks,

    Hi,
    Sorry for my english
    For Windows NT, the last big patchset is 8.1.7.4.x. I advice you to use the last patchset. A patchet is not a upgrade or a migrate. the installation is in two phase. Phase One:Patch the files in the oracle home with Oracle Universal Installer (Oui) and Phase Two: execute sql files on the dictionnary of each database. There is a readme with the patch.
    you can get files on metalink if you have a account (metalink.oracle.com).
    List bug for Memory Corruption
    8174 1748759 Client memory corruption / dump (eg: in ttcfopr) using pre-fetch
    8174 1859905 Intermittent dump / client memory corruption
    8174 1964934 Memory corruption possible using INSERT /*+ APPEND */ over DBLINK
    8174 2126096 Session heap corruption from LIKE :bind ESCAPE '/' if :bind ends in the escape character
    8174 2152752 Memory corruption / OERI:17182 possible fetching CHAR from DB2 over HS
    8174 2217159 13 byte PGA corruption possible using SQL over DBLINKS from PLSQL with MTS to V7 database
    8174 2248904 Memory corrupt possible during optimization of distributed query
    8173 1836101+ Memory Corruption from distributed query / query with binds (OERI:17114/17xxx/dump in kkecdn/kgh*/kke*)
    8173 1542218 Heap corruption (OERI:17182/dump in kghfrf) using very large collections
    8173 1661786 OERI:12261 / single byte memory corruption possible for CALL type triggers
    8173 1711803 DBW & users may CRASH under heavy load on multi-CPU system with FAST_START_IO_TARGET set > 0
    8173 1744786 Cursor work heap corruption from CONNECT BY PRIOR
    8173 1752554 OERI:17182 selecting DB2 DATA TYPE of CHAR over HS
    8173 1791258 CONNECT BY on IOT can cause SGA memory corruption
    8173 1810829 Lightwieght sessions (via proxy connect) may dump / corrupt shadow memory if users have >1 ROLE
    8173 1847583 Client memory corruption/dump using large value_sz for OCIDefineByPos with OCI_DYNAMIC_FETCH
    8173 1968635 OERI:KCOAPL_BLKCHK / buffer cache corruption from CR rollback
    8173 1987654 Compiling a PLSQL block with an INDICATOR clause can corrupt memory
    8173 1995026 OERI:17112 / heap corruption from Oracle Trace with MTS & Large Pool
    8173 2002799 Wrong results / heap corruption from PQ with aggregates in inline view
    8173 2048336 OERI:150 / Memory corruption from interrupted STAR TRANSFORMATION
    8173 2065386 Mem. Corruption / OERI:KGHFRE2 / OERI:17172 possible using bitmap indexes
    8172 1365873 OERI:17182 / CGA corruption with CURSOR_SHARING=FORCE
    8172 1373920 Memory corruption from PLSQL ORA-6502 errors
    8172 1447610 DBMS_SQL.BIND_ARRAY may dump / report private memory corruption type errors
    8172 1679690 Buffer cache in memory corruption (OERI:2032) can lead to permanent data/index mismatch (OERI:12700)
    8172 1732885 oeri:[KDIBR2R2R BITMAP] / memory corruption possible from BITMAP AND
    8172 1763408 RPC between 9i <-> 8i with CHAR data can corrupt memory
    8171 1227384 SGA heap corruption using DBMS_SQL under heavy load (Rare)
    8171 1364542 Buffer Cache corruption possible (rare)
    8171 1394565 PROBE: Callheap corruption printing a RAW in PLSQL debugger
    Bye !!!
    Cordialement
    XsTiaN

  • I cant't verify my icloud account, never received verification email, i did requested it from system preference menu

    i cant't verify my icloud account, never received verification email, i did requested it from system preference menu

    Welcome to the Apple Community.
    Put in a request for another verification e-mail to be sent to you.
    Start here, change your country if necessary and go to manage your account.
    Also check your Mail rules and filtering, the verification mail may be going to a junk folder or even being deleted altogether. You may also wish to contact your mail provider to see if their spam filters are removing the email before it gets to you.

Maybe you are looking for

  • PB G4 Battery only charges for 5 mins at a time

    I am using a replacement battery for my PB (http://www.amazon.co.uk/Battery-PowerBook-15-inch-Aluminium-M9756GA/dp/B001EUSKC 0). It worked fine for about 1 month. Now the 'Full Charge Capacity' is reporting incorrectly (as 65,000 rather than 4,400) &

  • Need suggestion on a Design Decision.

    Hi All, One of customer that has a more than 100,000 employee for a leave management solution. If every employee would apply around 26 leaves yearly it means Custom List would have at least 2600,000 items . I am wondering should I propose solution si

  • What is the exact problem with this file?

    Hi all, There is an old form , which was not in use from many days. Now when we tried to run the form, i got the error saying "FRM-40734:Internal Error:Pl/SQL error occured.", in the login form. When i tried to open the fmb file in Oracle Forms Build

  • Blackberry maps does not show map just a location

    Blackberry maps does not show map just a location on att with 10.0.10.822 os and software 10.0.10.116 http://forums.crackberry.com/blackberry-z10-f254/blackberry-maps-not-working-818297/ Solved! Go to Solution.

  • Passing values w/special characters in URL into an interactive report

    Hello, I have a problem and Ive been all over these forums and reading/trying everything I can to get something to work. I have a page that has a field called Name Search. The field is a TextField with autocomplete type. If I select a company name th