Web Pass Error

Hi All,
I have installed the Identity Server with OID, and Webpass with Standalone HTTP server 10.1.3.1 version.
After installing the Webpass, the Http Server opmnctl process never starts..
I tried setting the LD_ASSUME_KERNEL=2.4.19 in opmn.xml for runtime .. but still i get the same below error...
/app/oracle_as/product/StandaloneHttp/10.1.3.1/Apache/Apache/bin/apachectl startssl: execing httpd
Env variable LD_ASSUME_KERNEL not set to 2.4.19 in Webpass
Any other suggestions if any one have ... please help..
Regards,
Pdev

Hi..
No LUCK... again the same error..
/app/oracle_as/product/StandaloneHttp/10.1.3.1/Apache/Apache/bin/apachectl startssl: execing httpd
Env variable LD_ASSUME_KERNEL not set to 2.4.19 in Webpass
Did the below changes.. as mentioned..
<ias-component id="HTTP_Server">
<process-type id="HTTP_Server" module-id="OHS">
<environment>
<variable id="LD_ASSUME_KERNEL" value="2.4.19"/>
</environment>
<module-data>
<category id="start-parameters">
<data id="start-mode" value="ssl-disabled"/>
Any other suggestions please help..
There are no much hits in metalink also for this..
Regards,
Pdev..

Similar Messages

  • Oracle web pass error

    hi i'm having this error after web pass installation :
    Syntax error on line 1141 of d:/orahome_2/apache/apache/conf/httpd.conf:
    Cannot load c:/program files/netpoint/webcomponent/identity/oblix/apps/webpass/bin/webpass_ohs22.dll into server: (126) The specified module could not be found:
    please help

    Hi Aditya,
    Are using OHS-64bits?
    I know what issue are you facing now. I got this issue when I tried to install a production environment:
    WebPass is 32-bit only. You need to use the OHS 32-bit version to make it happen.
    I hope this helps.
    Thiago Leoncio Guimaraes

  • Outlook web browsing error occured

    Greetings
    I am using the page view web part template under the media and content folder to create a web part to that allowed SP users to view and edit an Exchange 2007 public folder.  I am able to view the Public Folder
    calendar, however when I browse or change views I can an Outlook web browsing error.  Here are the details.
    Client Information
    User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3)
    CPU Class: x86
    Platform: Win32
    System Language: en-US
    User Language: en-US
    CookieEnabled: true
    Mime Types:
    Exception Details
    Date: Tue Apr 22 17:20:02 PDT 2014
    Message: Access is denied.
    Url: https://owa.domain/owa/8.3.342.1/scripts/premium/cdayvw.js
    Line: 30
    Call Stack
    Dump Event
     recordset = null
     type = error
     fromElement = null
     toElement = null
     altLeft = false
     keyCode = 0
     repeat = false
     reason = 0
     data =
     behaviorCookie = 0
     source = null
     contentOverflow = false
     behaviorPart = 0
     url =
     dataTransfer = null
     ctrlKey = false
     shiftLeft = false
     dataFld =
     returnValue = undefined
     qualifier =
     wheelDelta = 0
     bookmarks = null
     actionURL =
     button = 0
     srcFilter = null
     nextPage =
     cancelBubble = false
     x = 0
     y = 0
     buttonID = 0
     srcElement = null
     screenX = 218
     screenY = 409
     srcUrn =
     origin =
     boundElements = [object]
     clientX = 43
     clientY = 70
     propertyName =
     shiftKey = false
     ctrlLeft = false
     offsetX = 0
     offsetY = 0
     altKey = false
     errorMessage = Access is denied.
     errorUrl =
    https://owa.domian/owa/8.3.342.1/scripts/premium/cdayvw.js
     errorLine = 30
     errorCharacter = 64
     errorCode = 0
    The Share Point server is running SP 2010 SP2 and the Exchange server is EX 2007 SP 3 I am not sure what roll up. it looks like their is a permissions issue.  But could it be permissions with in SP or EX?  You help is greatly appreciated. 
    Thanks in advance!

    Hi  ,
    Towards the public folder permission issue, there are two permissions included, one is for the server side permission; the other one is for the client side permission.
    There are some links for your reference:
    Title: Managing Public Folders
    URL: http://technet.microsoft.com/en-us/library/bb124411.aspx
    Title: Outlook folder permissions
    URL: http://office.microsoft.com/en-us/outlook-help/outlook-folder-permissions-HP005242287.aspx
    To use Outlook Web App Web Parts, you must, at a minimum, be delegated "Reviewer" access to the content that you're opening. If you've embedded an Outlook Web App Web Part that requires authentication into
    an application, you must pass authentication information through together with the request for the Web Part.
    For more information, you can refer to the article:
    http://office.microsoft.com/en-in/sharepoint-foundation-help/working-with-outlook-web-access-web-parts-HA101810215.aspx#_Toc296081842
    http://technet.microsoft.com/en-us/library/bb232199.aspx
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • Export PDF as JPEG fails with Adobe Save for Web AI Error

    Hello,
    We have an Illustrator Javascript program to convert a PDF file to a JPEG.  It does some adjustments along the way, but I have boiled the script down so it just opens the PDF file, then uses the export method to export it to a JPEG file.  The problem is the JPEG conversion is failing.  When I run with user interaction layer set to DONTDISPLAYALERTS, as I normally do, it silently fails and continues; I do not get an exception, and the export method does not have another way to return an error.  When I do display alerts, I get a dialog box saying:
    Adobe Save for Web AI Error
    Could not complete this operation. An unknown error has occurred.
    It looks like this:
    What's weird is if I open the same PDF file in Illustrator and select File / Export it works fine.  I do get this error though if I select File / Save for Web & Devices.  I'm not sure why the export method would do a Save for Web though.
    The code looks basically like this:
    // Set filename, docName, destFolder
    file = new File(filename);
    sourceDoc = app.open(file);
    var fileSpec = new File( destFolder + "/" + docName +"_LARGE");
    var exportOptions = new ExportOptionsJPEG();
    var type = ExportType.JPEG;
    app.activeDocument.exportFile( fileSpec, type );
    For testing purposes, I have shortened the code so it is that, with the variable setting code above.
    Any help is very much appreciated.
    Thanks!
    ------Scott.

    I have not tested exporting without passing any options. You have however created a variable to an empty options object but not passed it.
    did you also try…
    app.activeDocument.exportFile( fileSpec, type, exportOptions );

  • Modidy the Web Dispatcher Error message

    Hi,
    Where do we modify the web dispatcher error message "500 Dispatching error" to a cutome message on the J2EE?
    Thank you.

    note says:
    Customization of 500 Internal Server Error
    This response code is returned when there is a problem with the application or the server. Any not handled Exception or Error triggers the return of response with code 500.
    To return different content on error occurance, you need to handle the error by inserting the appropriate declaration in web.xml.
    Sample declaration for handling of test.MyApplicationException occurances in the application scope:
      <error-page>
        <exception-type>test.MyApplicationException< /exception-type>
        <location>/customerrors/MyApplicationException.jsp</location>
      </error-page>
               Note1: For each error condition you need to handle (application exception use a separate error page. For all other exceptions use a global error handling definition for java.lang.Throwable.
    However you must be aware of the following:
    In case java.lang.OutOfMemoryError appears the subsequent behaviour of the JVM is undefined and this may lead to unpredicatable effects. Therefore the webcontainer will not pass such error to the error page for handling.
    If the following general definition
      <error-page>
        <exception-type>java.lang.Throwable< /exception-type>
        <location>/customerrors/WhateverProblem.jsp</location>
      </error-page>
    is in place, then the error handler resource is responsible for logging the error condition.
    This means the resource handling general problems if such is declared must be dynamic (a JSP page or a servlet not HTML page)
               Note2: Exceptions are searched in order of appearance in web. xml and not determining closest in class hierarchy.
               This is true for all patchlevels of J2EE Engine 6.20 and versions of J2EE Engine 6.40 lower than SP11.
    Therefore if test.ChildException extends test.ParentException extends java.lang.Exception and
    <error-page>
       <exception-type>test.ParentException</exception-type>
      <location>/customerrors/ParentException.jsp</location>
    </error-page>
    <error-page>
      <exception-type>test.ChildException</exception-type>
      <location>/customerrors/ChildException.jsp</location>
    </error-page>
    is specified in the web.xml of the application as exceptions are searched in order of appearance regardless if ChildException or ParentException is thrown, the call will be directed to /Customerrors/ParentException.jsp because ChildException is a subclass of ParentException..
    Working mapping would be :
    <error-page>
      <exception-type>test.ChildException</exception-type>
      <location>/customerrors/ChildException.jsp</location>
    </error-page>
    <error-page>
      <exception-type>test.ParentException</exception-type>
      <location>/customerrors/ParentException.jsp</location>
    </error-page>
    so you need to switch the declarations in the web.xml (effective on next start of the application).
    BR, Oliver

  • Java Web Start Error in through codebase url with SSL

    I have created one Java web-start plugin application in swing which is launched from PHP site at browser plugin.
    All things were working fine, but when we implemented SSL in our site it stopped working. And when we try to start the application from browser it thorws error like:
    Unable to launch Application.
    In Java console it puts following log:
    JNLP Ref (...): NULL !
    #### Java Web Start Error:
    #### null
    Following is my JNLP file:
    <jnlp spec="1.0+" codebase="https://<<server_domain>>/MyPlugin/">
      <information>
        <title>Test Plugin</title>
        <vendor>The Java(tm) Tutorial</vendor>
        <homepage href="null"/>
        <description>Test Plugin</description>
        <description kind="short">Test Plugin</description>
        <offline-allowed/>
      </information>
      <security>
        <all-permissions/>
      </security>
      <update check="timeout" policy="always"/>
      <resources>
        <java version="1.7+"/>
        <jar href="http://<<server_domain>>/MyPluginJar.jar" download="eager" main="false"/>
      </resources>
      <application-desc>
        <argument>test</argument>
        <argument>test</argument>
        <argument>test</argument>
        <argument>test</argument>
        <argument>test</argument>
      </application-desc>
    </jnlp>
    The issue started only after implementation of SSL in our site. Please provide any solution for this. Many thanks in advance.
    P.S. My Jar file is signed by third party authorized certificate.

    Have you tried using Rosetta?

  • SAP Web Service error text : The database returned a value containing an error , type  CX_SY_OPEN_SQL_DB

    Hello Guru's,
    we are creating sales order in SAP from a quote created in .NET,  through Web Service created in SAP, and consumed in .NET.
    When ever a order is created in SAP for a given quote, SAP returns the sales order number to .NET.
    Orders are getting created as expected, but once in a while we are getting the following error from webservice :
    Web service processing error; more details in the web service error log on provider side (UTC timestamp 20140609173429; Transaction ID 4DFCEFE33301F1EBB5CE00155D0B4530)
    But the problem is order is getting created in SAP for the perticular quote for which we are getting the above error and this order number is not getting returned to .NET.
    Upon analysis in TCODE  SRT_UTIL for the above transaction ID, has the following details , which are hardly help full to resolve the error.
    ----TYPE                                  CX_SY_OPEN_SQL_DB
    ----ERROR_TEXT                   The database returned a value containing an error
    ----CX_SY_NO_HANDLER
    -----CLASSNAME                     CX_SY_OPEN_SQL_DB
    This Exception raised by Web Service application
    Could you please help in resolving this issue or alteast provide an approach for the same.
    Thank you,
    Suresh.

    Thank you Bhaskar,
    How can we clarify whether the error is from SAP or Web part.
    I have checked ST22, but there is not entry for the perticular  exception transaction ID
    My exception time stamp is
    -------------------START-------------6/9/2014 1:34:33 PM
    Error :Web service processing error; more details in the web service error log on provider side (UTC timestamp 20140609173429; Transaction ID 4DFCEFE33301F1EBB5CE00155D0B4530)
    -------------------END-------------6/9/2014 1:34:33 PM
    In al11, i found the following for the perticular exception time stamp
    **** Trace file opened at 20140609 133431 Eastern Daylight Time, by disp+work
    **** Versions SAP-REL 720,0,500 RFC-VER U 3 1442251 MT-SL
    XRFC> Begin of user trace
    XRFC> ---------------------------------------------------------------------
    XRFC>                                                                     <
    XRFC> TRACE SOAP RUNTIME - header                                         <
    XRFC>                                                                     <
    XRFC> ------------------------------------------------------------------  <
    XRFC> REQ_SIZE   : 2685                                                   <
    XRFC> RESP_SIZE  : 0                                                      <
    XRFC> PARENT_ID  : ROOT_CALL_ID                                           <
    XRFC> TRC_KEY    : 40FCEFE3BD6EF184B5CE00155D0B4530                       <
    XRFC> REQ_BASED  :                                                        <
    XRFC> SESSION_ID : 0003925540FCEFE3BD6EF17DB5CE00155D0B4530               <
    XRFC> TS_CALL    : 20140609173408.2880000                                 <
    XRFC> SY_UNAME   :                                            <
    XRFC> HOSTNAME   :                                              <
    XRFC> SY_SID     : PRD                                                    <
    XRFC> SY_MANDT   : 300                                                    <
    XRFC> SYS_NR     : 19                                                     <
    XRFC> APPLSERVER :                                      <
    XRFC> ISPRESCHED : X                                                      <
    XRFC> DURATION   : 21810                                                  <
    XRFC> NETHDRTIME : 21810                                                  <
    XRFC> CALL_STATE : 2                                                      <
    XRFC> ERRORTYPE  : APPLFAIL                                               <
    XRFC> ERRORAREA  : APPL                                                   <
    XRFC> CTXDP_TYPE : SOAP_RUNTIME                                           <
    XRFC> SYNC_ASYNC : S                                                      <
    XRFC> LOCATION   : P                                                      <
    XRFC> DIRECTION  : I                                                      <
    XRFC> REQ_ID     : 91C57815916E421CA9F3D652FFACE9C7                       <
    XRFC> RESP_ID    : 00155D0B45301EE3BBFF89A0267EB5CE                       <
    XRFC> MSG_STATE  : 114                                                    <
    XRFC> IF_NAME_I  : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> IF_NS_E    : urn:sap-com:document:sap:soap:functions:mc-style       <
    XRFC> IF_NAME_E  : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> ISSHORTCUT :                                                        <
    XRFC> TRC_PATT   : WSTEST                                                 <
    XRFC> TRC_SSID   : PRD_19                                                 <
    XRFC> TRC_USER   :                                           <
    XRFC> TRC_TS     : 20140609173409                                         <
    XRFC> TRC_COUNT  : 99                                                     <
    XRFC> TRC_EXT    :                                                        <
    XRFC> COMPLETE   : OK                                                     <
    XRFC> CALLEDPROG : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> SOAP_APPLI : urn:sap-com:soap:runtime:application:rfc:710           <
    XRFC> CONF_ID    : 00155D0B45301EE3AEFDAD78756555CE                       <
    XRFC> BIND_ID    : 00155D0B45301EE3AEFDAD787565B5CE                       <
    XRFC> OP_NAME    : ZsdCsCreateSalesorder                                  <
    XRFC> COMM_PATRN : Method:ZsdCsCreateSalesorder                           <
    XRFC> OP_NS      : urn:sap-com:document:sap:soap:functions:mc-style       <
    XRFC> REMADDRESS : 172.16.11.43                                           <
    XRFC> DT_OBJ     : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> MEMCONSUMP : 296291                                                 <
    XRFC> WSHOST     :                                                        <
    XRFC> WSPORT     :                                                        <
    XRFC> WSPROT     :                                                        <
    XRFC> WSCLIENT   :                                                        <
    XRFC> WSPATH     :                                                        <
    XRFC> PXYHOST    :                                                        <
    XRFC> PXYPORT    :                                                        <
    XRFC> USEDRFCDES :                                                        <
    XRFC> BONAME     :                                                        <
    XRFC> PROCCOMP   :                                                        <
    XRFC> DEPLOYUNIT :                                                        <
    XRFC> ------------------------------------------------------------------  <
    XRFC>                                                                     <
    XRFC> TRACE SOAP RUNTIME - trace records                                  <
    XRFC>                                                                     <
    XRFC> ------------------------------------------------------------------  <
    XRFC> E SOAP_RUNTIME 20140609173429.7400000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING Exception handling for IF "ZSD_CS_CREATE       <
    XRFC> _SALESORDER_SERVI" OP name "ZsdCsCreateSalesorder" MSG ID           <
    XRFC> "91C57815916E421CA9F3D652FFACE9C7" user "STULZWEBSERV"              <
    XRFC>                                                                     <
    XRFC>                                                                     <
    XRFC> E SOAP_RUNTIME 20140609173429.7240000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING CX_SOAP_ROOT : An exception has occurred. |    <
    XRFC> program: CL_SOAP_RUNTIME_ROOT==========CP include: CL_SOAP          <
    XRFC> _RUNTIME_ROOT==========CM004 line: 120                              <
    XRFC>                                                                     <
    XRFC>                                                                     <
    XRFC> E SOAP_RUNTIME 20140609173429.7400000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING CX_SY_NO_HANDLER : An exception with the type  <
    XRFC> CX_SY_OPEN_SQL_DB occurred, but was neither handled locally, nor    <
    XRFC> declared in a RAISING clause | program: SAPLSTXD include: LSTXDFDB  <
    XRFC> line: 200                                                           <
    XRFC>                                                                     <
    XRFC>                                                                     <
    XRFC> E SOAP_RUNTIME 20140609173429.7400000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING CX_SY_OPEN_SQL_DB : The database returned a    <
    XRFC> value containing an error | program: SAPLSTXD include: LSTXDFDB     <
    XRFC> line: 227                                                           <
    XRFC>                                                                     <
    XRFC> ---------------------------------------------------------------------
    XRFC> End of user trace

  • BO Rampup 4.0 WEBI strange error

    Dear All.
    We are currently using BI 4.0 Rampup and trying to develop our application on it.
    while creating an query when i add measure objects in the report it gives the Error "The DSL service return an error (WIS 00000)
    if i remove the columns the report run without issue this error is not because of wrong defination of measure object in business layer because i check to change the measure objects and the error repeat with almost any combination of objects.
    i have check the Query in Business Layer by adding all the measure objects and same filter and it runs without any issue, but in WEBI giving error.
    if some body face this issue in WEBI 4.0 kindly please let me know.
    In between i have checked when i remove some columns this error not came is this because of sub queries limitations, cause all the measures are restricted i.e. along with the where clause with diffrent parameters.
    here is the complete exception.
    com.businessobjects.sdk.core.server.CommunicationException$UnexpectedServerException: The DSL Service returned an error
         at com.businessobjects.sdk.core.exception.ExceptionBuilder.make(ExceptionBuilder.java:144)
         at com.businessobjects.sdk.core.exception.ExceptionBuilder.make(ExceptionBuilder.java:101)
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.afterProcessing(CommonRequestHandler.java:122)
         at com.businessobjects.sdk.core.server.internal.AbstractServer.processIt(AbstractServer.java:178)
         at com.businessobjects.sdk.core.server.internal.AbstractServer.process(AbstractServer.java:133)
         at com.businessobjects.sdk.core.server.internal.InstanceServer.process(InstanceServer.java:93)
         at com.sap.sl.sdk.services.util.ServerRequestProcessor.processServerRequest(ServerRequestProcessor.java:49)
         at com.sap.sl.sdk.dataprovider.service.DataProviderServiceImpl.processDataProviderCommand(DataProviderServiceImpl.java:366)
         at com.sap.sl.sdk.dataprovider.service.DataProviderServiceImpl.prepare(DataProviderServiceImpl.java:205)
         at com.sap.sl.sdk.dataprovider.service.DataProviderServiceImpl.prepare(DataProviderServiceImpl.java:113)
         at com.sap.webi.ui.tasks.workflows.PrepareDataProviderTask.doIt(PrepareDataProviderTask.java:86)
         at com.sap.webi.ui.tasks.workflows.PrepareDataProviderTask.doIt(PrepareDataProviderTask.java:15)
         at com.sap.webi.toolkit.ui.tasks.WebITask.doInBackground(WebITask.java:109)
         at javax.swing.SwingWorker$1.call(SwingWorker.java:278)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
         at java.util.concurrent.FutureTask.run(FutureTask.java:138)
         at javax.swing.SwingWorker.run(SwingWorker.java:317)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: com.businessobjects.sdk.core.server.ServerException: The DSL Service returned an error
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.newServerException(CommonRequestHandler.java:237)
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.createAllServerExceptions(CommonRequestHandler.java:215)
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.afterProcessing(CommonRequestHandler.java:118)
         ... 17 more
    Edited by: Syed Zeeshan Haider on Jun 15, 2011 11:47 AM

    Hi Syed,
    I found the whole thing in WEBI for this BO4 is so unstable. Whenever you changed something of the underlying BEx Query and specially that involved Variable, the WEBI has always caused issues. You can't even determine what exactly caused the issue - and thanks to the Error message which is so unhelpful.
    So far, from my own experience - anything to do with BEx Query that involves Structures and Variables (incl. User Exit Variable), you just have to be very careful with the impact to the WEBI reports.
    I actually found the way to copy from W1 to W2 based on a copy from Q1 to Q2. You do this via "Change Source" in Design tab or Data tab. Once you copied the Webi, change the source query. So in this case, once you have W2 change the source from Q1 to Q2. Again, you have to be very careful with changes of the BEx query after you generate the WEBI report.
    Cheers,
    Andy

  • Web Part Error: This page has encountered a critical error. Contact your system administrator if this problem persists

    Hi there,
    I am getting the following error in SharePoint 2007 site.
    Web Part Error: This page has encountered a critical error. Contact your system administrator if this problem persists.
    Show Error Details
    Hide Error Details
    [WebPartPageUserException: This page has encountered a critical error. Contact your system administrator if this problem persists.]
      at Microsoft.SharePoint.ApplicationRuntime.SafeControls.RethrowExceptionIfNeeded()
      at Microsoft.SharePoint.ApplicationRuntime.SafeControls.GetTypeFromGuid(Guid guid)
      at Microsoft.SharePoint.WebPartPages.SPWebPartManager.CreateWebPartsFromRowSetData(Boolean onlyInitializeClosedWebParts)
    There is no event logged related to this error. I have checked ULS log and nothing much I can find over there.
    Any help would be highly appreciated.
    Thanks,
    Puli
    Puli Bala

    It is not only because of unsafe controls. Please refer the articles below.
    http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2008/09/24/safe-mode-did-not-start-successfully-request-failed.aspx
    http://blogs.edwardwilde.com/2009/12/22/safe-mode-did-not-start-successfully-could-not-load-file-or-assembly/
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/6d81f7b0-33c5-482b-b7aa-9f639c784dea/what-reason-can-cause-the-errorerror-failure-in-loading-assembly-microsoftsharepoint?forum=sharepointadminlegacy
    https://paulsiu.wordpress.com/2008/07/24/sharepoint-loading-assembly-error-in-the-event-log/
    Puli Bala

  • Error: BeX-Web Application Error

    Hi All,
                            while running the dashboard which is integrated with Enterprise portal, we are getting the below error.These dashboards consumes data from the BEX query  directly using the SAP Netweaver connection Type.
      Error Desc:   BeX-Web Application Error
    Please find the more details in the attached sheet. can any one help me out to resolve this issue

    Hi
    Check weather BO system is up or not

  • How do i solve - cannot access web server - error message when creating a project in 4.5 with PHP

    How do i solve - cannot access web server - error message when creating a project in 4.5 with PHP

    Screenshot of how it looks when i try to show a ms access form inside a iframe:
    http://oi58.tinypic.com/2vj4ish.jpg

  • Web form Error Number:-2147467259

    Dears,
    i'm facing the below error when running a web form
    Error Number:-2147467259
    Error Description:Unspecified error
    Error Source:msxml6.dll
    Page On which Error Occurred:/hfm/data/webformgenerated.asp
    would you please adivse.
    Thanks.

    The response buffer size of IIS Server has to be increased. Execute the below steps in HFM Web server:
    - Go to Start > All Programs > Oracle EPM System > Foundation Services > EPM system Configuration.
    - Select Configure Web Server under Financial Management > Configure IIS for Financial management Web Application > Click on Advanced Options.
    - Change the "Response Buffer Size to 1073741824 > OK > Next > Finish the configuration.

  • CS5 Photoshop - Adobe Save for Web & Devices Error

    Hi folks,
    I know similar threads exists, but this one is different. For some reason, out of the blue, I can't use 'Save for Web' anymore. When I choose 'save for web', it opens the preview dialog nicely, up until I save & get this error:
    "Adobe Save for Web & Devices Error
    Could not complete this operation. An unknown operating system error has occurred."
    Cleared all my settings, and the error remains.
    I uninstalled PS CS5, installed it again... still get this error.
    Hope someone knows how to fix it!
    Tx!
    MacBookPro3,1, running all the latest updates (OSX 10.6.4), CS5 Master Collection.
    Luckily still have CS4 Master Collection installed (and Flash CS3).
    (I've just got to get this off my chest, CS5 has so much issues that I stopped using it, I'm not getting paid for playing crashtestdummie. Please don't rush any future CS collections and try fixing bugs instead. )

    Hi Wade,
    Tx, but 99% of my time, I work on my local system (scratch disk also). Already had problems working with the company's network (files get locked or corrupted while trying to save), so we've learned the hard way not to use the network.
    I guess that's somewhat expected if you work with a Mac, in a professional Windows environment.
    Meanwhile, I'm a step closer in finding a solution myself. A colleague gave me a great tip, if you create an extra user account on the system, you start with a clean library. On my second account, PS CS5 is working just fine. So clearly, something went wrong in my library. Maybe permissions like you've said. At this point, I could try to fix it by copying files from the one user to the other. But I would like to wait for that connect session so they can see what's wrong.

  • Passing error message from login module to login page

    Hello,
    we have a custom login module to authenticate user in ldap and to grant application roles stored in db.
    Is it possible to pass error catched in login module to the user (display the error message on login screen)? We think it is helpful to see correct reason why the user couln't be logged in.
    Notes:
    Jdev version is 10.1.3.1. Custom login module was written using Frank Nimphius guidelines and examples.
    Rado

    Hi,
    if you followed this example then it is configured for container managed authentication, in which case the error message cannot be propagated to the view.
    There was a similar discussion on the J2EE forum and the answer was that the OC4J team will put this on a list of enahncements they track. The technical reason appears to be that the J2EE spec does not foresee to tell users about the "why" authentication fails - which clearly is a limitation of the Spec.
    Frank

  • Web Part Error From build-in "Contacts" App

    My SP 2013 Foundations has been functioning normally for the past few months until this week. I added the built-in "Contacts" app back when the site was built. This week for some reason when I go to click "Add", I receive the following
    error:
    "Web Part Error: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe. Correlation ID: f590159c-dcb7-a0f5-9dc9-76bb9b18c79e."
    I can click "edit" on that list and make changes fine.
    Attempted to Google this one but for the most part my search has turned up nothing. This error seems to be experienced most times by individuals who built their own custom web parts and did not add Safe Controls to the web.config file. How could I get an
    error like this with the default/built-in app?
    I don't see anything helpful in the logs ( %SystemDrive%\inetpub\logs\LogFiles ) as it just shows the point where I get the error, without displaying any more info: 2013-04-26 14:55:03 192.168.0.67 GET /Lists/Company+Directory/Contact/newifs.aspx
    If you need any more information, please let me know! Thanks

    Went to the log folder here:
    I can see this in the log files when I try to click "New":
    04/30/2013 13:28:21.87 w3wp.exe (0x1D70) 0x200C SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (PostResolveRequestCacheHandler). Execution Time=28.0750765809621 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.88 w3wp.exe (0x1D70) 0x200C SharePoint Foundation Web Parts ajpj6 High UnsafeControlException: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe. 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.88 w3wp.exe (0x1D70) 0x200C SharePoint Foundation General ajlz0 High Getting Error Message for Exception Microsoft.SharePoint.ApplicationRuntime.SafeControls+UnsafeControlException: A Web Part or Web Form Control on this Page cannot be
    displayed or imported. The type could not be found or it is not registered as safe. at Microsoft.SharePoint.ApplicationRuntime.SafeControls.GetTypeFromGuid(Boolean isAppWeb, Guid guid, Guid solutionId, Nullable`1 solutionWebId, String assemblyFullName, String
    typeFullName, Boolean throwIfNotSafe) at Microsoft.SharePoint.WebPartPages.SPWebPartManager.CreateWebPartsFromRowSetData(Boolean onlyInitializeClosedWebParts) 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.88 w3wp.exe (0x1D70) 0x200C SharePoint Foundation Web Parts 7935 Information http://(redacted)/Lists/Company Directory/Contact/newifs.aspx - An unexpected error has been encountered in this Web Part. Error: A Web Part or Web Form Control
    on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe. 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.92 w3wp.exe (0x1D70) 0x200C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Render Ribbon.). Parent SharePointForm Control Render 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.92 w3wp.exe (0x1D70) 0x200C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Render Ribbon.). Execution Time=4.37541642862431 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc
    04/30/2013 13:28:21.93 w3wp.exe (0x1D70) 0x200C SharePoint Server Search Query dn4s High FetchDataFromURL start at(outside if): 1 param: start 0be6169c-bc0c-a0f5-9dc9-70ab1e3484cc

Maybe you are looking for

  • HT1766 trying to back up iphone to icloud

    I keep trying to manually back up my iphone to icloud but it starts then it says could not be completed- can anyone help? My iphone has never been backed up.

  • Why can't we backup (with Time Machine) our Airport hosted 1TB HD from our iMac (hosting a 2TB HD)?

    With an iMac (one year old), we are using Time Machine to backup the iMac and one small external HD to a 2TB HD (USB). The iMac is on a small wired network along with an Airport Extreme hosting a 1TB HD for shared iPhoto Libraries, 2 printers and a r

  • Error occured in document posting

    Hi, I create cash account 200100, but when i was post the document i got this error like "the account 200100 was not assigned to Bil" Chart of account is BIL Moderator: Follow the instructions from SAP and assign G/L account to CoA

  • HT2473 missing image files

    what is the best way to reconcile the iphoto, aperture, and lightroom catalogues, to ensure that no files have been lost? my macbook pro (2008) quit on me recently and i think that i am missing image files now. also i should say that i am backing up

  • Clear screen between frames in "slide show"

    I'm creating a simple flash document that is like a slide show.  Each frame is a "slide". Right now each new slide is being drawn on top of the previous and after a few frames the screen is a mess... How can I clear the screen between frames? Mike