JHS 10.1.3 Internal Server Error - Page when a view raises an exception

I have a view with some logic (based on a table function) and created: entity object, view object and (jhs) an advanced search page. When the view raises an exception an "500 Internal Server Error"-page is showed, but I expected the error would be showed in de messages-component.
I created a test case: a view on employees-table with in the select a function that raises an exception when last_name starts with "L". On this view an entity obejct, a view object and application module.
I generated with JHS a page : layout: table and only advanced search.
The first time the page is loaded (with auto query) some records are showed and the exception is showed as expected in the message-component. When I do a search (without criteria) the "500 Internal Server Error" pages is showed.
When I create manual a search page, the behavior is as expected.
(see below for error stack)
Greetings, Frank
"500 Internal Server Error"-page :
javax.faces.FacesException: #{searchVEmps.advancedSearch}: javax.faces.el.EvaluationException: oracle.jbo.RowNotFoundException: JBO-25060: Er is een onverwachte fout opgetreden bij het ophalen van de volgende rij uit JDBC ResultSet voor verzameling VEmps.
     at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:78)
     at oracle.adf.view.faces.component.UIXCommand.broadcast(UIXCommand.java:211)
     at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
     at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
     at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
     at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
     at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
     at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
     at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
     at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:595)
Caused by: javax.faces.el.EvaluationException: oracle.jbo.RowNotFoundException: JBO-25060: Er is een onverwachte fout opgetreden bij het ophalen van de volgende rij uit JDBC ResultSet voor verzameling VEmps.
     at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:130)
     at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
     ... 27 more
Caused by: oracle.jbo.RowNotFoundException: JBO-25060: Er is een onverwachte fout opgetreden bij het ophalen van de volgende rij uit JDBC ResultSet voor verzameling VEmps.
     at oracle.jbo.server.QueryCollection.hasNextInResultSet(QueryCollection.java:3103)
     at oracle.jbo.server.ViewObjectImpl.hasNextForCollection(ViewObjectImpl.java:3650)
     at oracle.jbo.server.QueryCollection.hasNext(QueryCollection.java:2992)
     at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:2207)
     at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:2088)
     at oracle.jbo.server.QueryCollection.getRowCount(QueryCollection.java:1821)
     at oracle.jbo.server.ViewRowSetImpl.getRowCount(ViewRowSetImpl.java:1933)
     at oracle.jbo.server.ViewObjectImpl.getRowCount(ViewObjectImpl.java:5918)
     at oracle.jheadstart.controller.jsf.bean.JhsSearchBean.executeAdvancedSearchBinding(JhsSearchBean.java:326)
     at oracle.jheadstart.controller.jsf.bean.JhsSearchBean.advancedSearch(JhsSearchBean.java:214)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
     ... 28 more

Could you send your testcase to [email protected]? Rename extension .zip to something else (.zipped for example)
Thanks,
Steven Davelaar,
JHeadstart Team

Similar Messages

  • SAP BPC 5.1 SP2 Http 500 internal server error - page can not be displayed

    When our Sysadmin service account are restricted to the app server and the database server ( as they should be in a secured environment) no client
    could reach the web site to even use the Osoft directory . We get a Http 500 internal server error - page can not be displayed . This is for a new multiserver install. Is there a problem on the website security or .net configuration?

    Yes the install was done by the SAP install consultant but now we are getting an error when we restrict the Sysadmin ID. Server diagnostics and other tests on Appshell passed as well.

  • 500 Internal Server Error while trying to view report from portal page

    Hello guys,
    We are using BI7. while accessing the queries for the reports, its displaying  the 500 Internal Server Error. The error message is:
    500 Internal Server Error
    Failed to process request; contact your system administrator
    BEx Web Application " I_Qnc()2ex.........(etc) does not exist.The application was either ended by a timout or an error occured.
    Need your help on this..
    Thanks in Advance,
    Yogesh.

    In which environment are you running this query? Is it Dev. system or Quality/testing or Production ?
    1.Generally in most of the cases this will be a TimeOut Error, but not necessarily just that,500 Error applies to variety of problems within the server.
    Try and restrict the query to populate less amount of data and check if you get teh same error, if so the check for latest OSS note, have a look at your SP level as well before  applying the oss note if relevant.
    2. If this doesnt solve,then  recheck the query.
    Due to large amounts of data in production the OLAP  and front -end might require more amount of time than assigned, though not recommended, you can check by changing the waiting time just for thsi query to make sure that this is the problem and not something else which requires basis assistance.
    Regards,
    Ray

  • 500 Internal Server Error message with youtube viewing

    Ok. Here's the issue. Many-but-not-every-time I'm using Safari and go to youtube to view videos I click on to view and this message comes up instead of the video: 500 Internal Server Error and then a page full of computer code.
    This has just started to do this. How do I correct this problem?

    I read about these reports often...
    http://forums.techguy.org/multimedia/671802-youtube-500-internal-server-error.ht ml
    http://www.worldlawdirect.com/forum/off-topic-messages/41075-youtube-google-serv er-down-07-14-10-500-internal-server-error.html
    http://www.google.com/support/forum/p/youtube/thread?tid=5a6d067942a4e123&hl=en
    Still, if you think it might be on your end, I think you should get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, reboot holding down CMD+s, (+s), then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 6 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Trash old Log files.
    First reboot will be slower, sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files!
    Disconnect the USB cable from any UPS so the system doesn't shut down in the middle of the process.
    Then... Try putting these numbers in Network>TCP/IP>DNS Servers, for the Interface you connect with...
    208.67.222.222
    208.67.220.220
    Then Apply
    DNS Servers are a bit like Phone books where you look up a name and it gives you the phone number, in our case, you put in apple.com and it comes back with 17.149.160.49 behind the scenes.
    These Servers have been patched to guard against DNS poisoning, and are faster/more reliable than most ISP's DNS Servers.

  • Internal Server error coming when accessing MSDN forum

    Hi.
    I keep getting below error when accessing forum or refreshing forum pages. I can see from
    this thread that such issue was there couple of years back
    This error is coming again.  And is very frequent but when same page is refreshed couple of times page loads properly.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

    I am getting Internal Server Error very frequently since the last two days. Almost 1 refresh on 2 ends with the Internal Server Error message.
    I am using Google Chrome (Up-to-date) and I am connecting from France. Hope that helps.
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Get Active Directory User Last Logon
    Create an Active Directory test domain similar to the production one
    Management of test accounts in an Active Directory production domain - Part I
    Management of test accounts in an Active Directory production domain - Part II
    Management of test accounts in an Active Directory production domain - Part III
    Reset Active Directory user password

  • Why does the message '500 internal server error' appear when I use any search engine?

    I am able to type a web address and use the internet successfully but when using ANY search engine I get the '500 internal server error' message. This appears if I type in a word to search '''bold text'''and the result is the error message. I have recently uninstalled rapport and hitman pro. Please help.

    Did you check your security software (firewall)?
    Which security software (firewall) do you have?
    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    See:
    * [[Server not found]]
    * [[Firewalls]]

  • Internal Server Error (NullPointerException) when invoking a Web Service

    I'm using SOA suite 10.1.3.3 (incl the latest patch set) on Windows XP.
    I've created 3 web services using the wizard interface out of 3 existing WSDL files. The Java code inside the web services is just dummy code.
    I'm testing the web services using the Test Web Service functionality in Oracle Enterprise Manager's Application Server Control.
    The moment I fill in the data and press invoke, I get back the following fault:
    <env:Body>
    <env:Fault>
    <faultcode>env:Server</faultcode>
    <faultstring>Internal Server Error (Caught exception while handling request: java.lang.NullPointerException)</faultstring>
    </env:Fault>
    </env:Body>
    I know that control never reaches inside the services themselves.
    I've even followed the online demo that shows users how to create, deploy and test a Web Service in JDeveloper to make sure that I wasn't doing anything silly.
    What could be wrong? Please help.
    Thanks in advance.

    Seems to be a problem in serialization??? What do I do?
    When I invoke the web service from a web proxy client, this is the stack trace:
    QueryGDSAsiaPackage.SearchAirline_fault: java.lang.NullPointerException
         at QueryGDSAsiaPackage.runtime.SearchAirline_fault__LiteralSerializer.doDeserialize(SearchAirline_fault__LiteralSerializer.java:71)
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.internalDeserialize(LiteralObjectSerializerBase.java:250)
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.deserialize(LiteralObjectSerializerBase.java:159)
         at QueryGDSAsiaPackage.runtime.QueryGDS_Asia_PortType_searchAirline_Fault_SOAPSerializer.deserializeDetail(QueryGDS_Asia_PortType_searchAirline_Fault_SOAPSerializer.java:56)
         at oracle.j2ee.ws.common.encoding.SOAPFaultInfoSerializer.doDeserializeSOAP11(SOAPFaultInfoSerializer.java:132)
         at oracle.j2ee.ws.common.encoding.SOAPFaultInfoSerializer.doDeserialize(SOAPFaultInfoSerializer.java:94)
         at oracle.j2ee.ws.common.encoding.ObjectSerializerBase.deserialize(ObjectSerializerBase.java:180)
         at oracle.j2ee.ws.common.encoding.ReferenceableSerializerImpl.deserialize(ReferenceableSerializerImpl.java:147)
         at oracleesb.QueryGDA_Asia_proxy.runtime.QueryGDS_AsiaSOAP_Stub._readBodyFaultElement(QueryGDS_AsiaSOAP_Stub.java:346)
         at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:321)
         at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:112)
         at oracleesb.QueryGDA_Asia_proxy.runtime.QueryGDS_AsiaSOAP_Stub.searchAirline(QueryGDS_AsiaSOAP_Stub.java:155)
         at QueryGDSAsiaPackage.QueryGDS_AsiaSOAPClient.searchAirline(QueryGDS_AsiaSOAPClient.java:43)
         at QueryGDSAsiaPackage.QueryGDS_AsiaSOAPClient.main(QueryGDS_AsiaSOAPClient.java:30)
    Process exited with exit code 0.

  • Why do I receive internal server error (#IS6532) when I Get Messages?

    When I "Get Messages" in TB, I receive one of three messages:
    ● Sending of password for user [email protected] did not succeed. Mail server pop.mail.yahoo.com responded: internal server error (#IS6532)
    ● The mail server responded: From address not verified - see http://help.yahoo.com/l/us/yahoo/mail/original/manage/sendfrom-07.html. Please verify that your email address is correct in your Mail preferences and try again.
    ● From address not verified - see http://help.yahoo.com/l/us/yahoo/mail/original/manage/sendfrom-07.html. Please verify that your email address is correct in your Mail preferences and try again.
    This has started recently with no changes on my part. I have Yahoo set up to forward a copy to an alternate email address.
    Thank you for your help,
    Major Howland

    The error code seems to be a recurrent Yahoo! issue, viz:
    http://codeverge.com/mozilla.support.thunderbird/internal-server-error-is6532/1531508
    http://www.dslreports.com/forum/r28485957-Intermittent-snd-rcv-error-when-with-Yahoo-Mail-and-POP3
    This guy proposes a solution, but since this was some time ago, it's hard to see that it is relevant today. However, it would be good to check you're using the recommended settings.
    http://www.emailquestions.com/isp-free-email-support-forums/9255-fix-err-sys-temp-internal-server-error-is6532.html
    Given Yahoo's somewhat spotty record, it seems likely that your two other errors are also part of the general unreliability of Yahoo's service. :-(

  • 500 internal server error - OWA when trying to open options - Exchange 2010

    Hello,
    I have been in the process of setting up our new exchange 2010 server and have found the following issue.  I can log into the secure OWA site without issue and can send and receive emails fine.  When i attempt to select any "option" such
    as set automatic replies or see all options  I receive the following error message -
    "500 internal server error there is a problem with the resource you are looking for, and cannot be displayed".
    I have verified that all required exchange servicesare running.
    I am running exchange 2010 sp3 on server 2012.
    I think it may an issue within IIS but i'm not sure
    Any help would be appreciated.
    Thanks

    Hi,
    According to your description, there is a 500 internal server error when you select any Option in your OWA.
    Based on my research, we can try the following steps:
    1.  Check whether Virtual Directories Authentication configured properly. Enable the ECP Virtual Directory with Anonymous and Basic Authentication.
    2.  Check on the Application Pools to view whether ECP Application Pool is running on .NET Framework v4.0. It maybe the incompletely installation of Framework that causes this error.
    If so, We can try to run the following command as Administrator:
    %windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i
    Or change the MSExchangeECPAppPool from .NET Framework from v4.0 to v2.0. Then restart IIS.
    If you have any question, please do not hesitate to tell me.
    Hope it helps.
    Thanks,
    Winnie Liang

  • Get 500 Internal Server Error message when attempting to open Firefox.

    Firefox working fine until last week. Cannot connect. Only receive error message. Uninstalled & re-installed. Same error message. Windows 7, Zone Alarm. Explorer 8.

    Hi,
    According to your description, there is a 500 internal server error when you select any Option in your OWA.
    Based on my research, we can try the following steps:
    1.  Check whether Virtual Directories Authentication configured properly. Enable the ECP Virtual Directory with Anonymous and Basic Authentication.
    2.  Check on the Application Pools to view whether ECP Application Pool is running on .NET Framework v4.0. It maybe the incompletely installation of Framework that causes this error.
    If so, We can try to run the following command as Administrator:
    %windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i
    Or change the MSExchangeECPAppPool from .NET Framework from v4.0 to v2.0. Then restart IIS.
    If you have any question, please do not hesitate to tell me.
    Hope it helps.
    Thanks,
    Winnie Liang

  • I get an internal server error (500) when I try to download.

    How do I upgrade on the several computers I have.  I was able to download to two.  If I have to pay, fine, but let me do so.

    While we all have MacBooks in this forum most of us don’t have Lion. There's a Lion Support Community where everybody has Lion. You should also post this question there. https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion

  • HTTP 500 Internal Server Error for developer sample page

    Hi All,
    Getting the HTTP 500 Internal Server Error Page when I click on Developer Sample link on http://10.4.80.238:8080/portal/dt page.
    Find the below error log for more details:
    [#|2009-07-29T10:25:36.767+0530|FINEST|SJS Portal Server|debug.com.sun.portal.desktop.context|ThreadID=19; ClassName=com.sun.portal.desktop.context.PSContainerProviderContext; MethodName=getContent; |PSDT_CSPDC0028 : PSContainerProviderContext.getContent(): getting fresh content for channel: JSPTabContainer|#]
    [#|2009-07-29T10:25:36.768+0530|FINE|SJS Portal Server|debug.com.sun.portal.desktop.context|ThreadID=19; ClassName=com.sun.portal.desktop.context.AuthlessSessionContext; MethodName=getCookieSupportMode; |PSDT_CSPDC0002 : Cookie support mode = 0|#]
    [#|2009-07-29T10:25:36.768+0530|SEVERE|SJS Portal Server|debug.com.sun.portal.desktop|ThreadID=19; ClassName=com.sun.portal.desktop.DesktopServlet; MethodName=handleException; |PSDT_CSPD0022: Internal server error null root cause is java.lang.NullPointerException|#]
    [#|2009-07-29T10:25:36.768+0530|SEVERE|SJS Portal Server|debug.com.sun.portal.desktop|ThreadID=19; ClassName=com.sun.portal.desktop.DesktopServlet; MethodName=handleException; |PSDT_CSPD0023: Primary Exception
    java.lang.ClassCastException: java.lang.NullPointerException
         at com.sun.portal.providers.error.ErrorProvider.getContent(Unknown Source)
         at com.sun.portal.desktop.DesktopServlet.handleException(Unknown Source)
         at com.sun.portal.desktop.DesktopServlet.doGetPost(Unknown Source)
         at com.sun.portal.desktop.DesktopServlet.handleNoSessionRequest(Unknown Source)
         at com.sun.portal.desktop.DesktopServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         at sun.reflect.GeneratedMethodAccessor159.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
         at com.sun.enterprise.web.connector.httpservice.HttpServiceProcessor.process(HttpServiceProcessor.java:235)
         at com.sun.enterprise.web.HttpServiceWebContainer.service(HttpServiceWebContainer.java:2114)
    |#]
    [#|2009-07-29T10:25:36.769+0530|SEVERE|SJS Portal Server|debug.com.sun.portal.desktop|ThreadID=19; ClassName=com.sun.portal.desktop.DesktopServlet; MethodName=handleException; |PSDT_CSPD0024: Root cause
    java.lang.NullPointerException
         at com.sun.portal.providers.containers.jsp.tab.util.Tab.create(Unknown Source)
         at com.sun.portal.providers.containers.jsp.tab.util.Tab.<init>(Unknown Source)
         at com.sun.portal.providers.containers.jsp.tab.util.TabFactory.createUnmodifiable(Unknown Source)
         at com.sun.portal.providers.containers.jsp.tab.util.TabData.getAvailableTabs(Unknown Source)
         at com.sun.portal.providers.containers.jsp.tab.JSPTabContainerProvider.getSelectedTab(Unknown Source)
         at com.sun.portal.desktop.context.PSContainerProviderContext.createVisiblePortletsList(Unknown Source)
         at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(Unknown Source)
         at com.sun.portal.desktop.context.PSDesktopContext.getContent(Unknown Source)
         at com.sun.portal.desktop.DesktopServlet.doGetPost(Unknown Source)
         at com.sun.portal.desktop.DesktopServlet.handleNoSessionRequest(Unknown Source)
         at com.sun.portal.desktop.DesktopServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         at sun.reflect.GeneratedMethodAccessor159.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
         at com.sun.enterprise.web.connector.httpservice.HttpServiceProcessor.process(HttpServiceProcessor.java:235)
         at com.sun.enterprise.web.HttpServiceWebContainer.service(HttpServiceWebContainer.java:2114)
    |#]
    [#|2009-07-29T10:25:36.770+0530|SEVERE|SJS Portal Server|debug.com.sun.portal.desktop.mfwk|ThreadID=19; ClassName=com.sun.portal.desktop.mfwk.MfwkPSServiceAdaptor; MethodName=stopTransaction; |PSDT_CSPDMF0003: Mfwk Stop transaction error: Invalid transition for this transaction|#]
    Please provide me the solution to solve it.
    Thanks in advance.

    By the wat what version of application server are you running and how is your portal deployed, i.e portal deployed on seprate machine and access manager on another?
    To disable security login into your application server console e.g https://localhost:4848
    -> Click configurations on the left to expand it
    -> click arrow on the server instance configuration to expand it (this is the instance you used to deploy portal server e.g "server" )
    -> click JVM Settings on the right you will see four tabs
    -> click JVM options, a list of values is displayed
    -> tick "-Djava.security.manager" and "-Djava.security.policy=${com.sun.aas.instanceRoot}/config/server.policy" and click delete
    -> restart the server and try accessing the developer sample.
    Send me the error message if any after doing this and If this does not wok, add back the values.
    regards

  • Report printing with BI pubisher - 500 Internal server error

    Hi,
    I was having problems using BI publisher to print with. I thought we didn't have it at first, however since found we do have BI Publisher Enterprise edition.
    When I put the settings into APEX, reports don't display as expected. I get
    report error:
    ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified.Now if I navigate to the URL in my web browser, http://[server]:[port]/xmlpserver/convert, I get a 500 - Internal Server Error page. The requets is definitely hitting something because if I change "convert" to say "convert1" then I get 404 (as expected). So it seems as if convert is found but then a problem occurs.
    If I navigate to just http://[server]:[port]/xmlpserver/ then I see the BI publisher enterprise login screen.
    Any ideas what might be causing this or what I could do to resovle it?
    Our APEX instance is on a unix box and BI on a M$ box if that matters (long story)?
    Thanks

    Ignacio Cobos wrote:
    Hello
    >
    > I get this error when i try to access to Bex Analyzer
    >
    > ERROR: URL used, "http://sesue:50300", is not fully qualified.
    > A fully-qualified URL has a schema with the format "<protocol>://server.company.com:<port>". URLs with the format "<protocol>://server:<port>" or "<protocol>://<ip address>:<port>" are not fully qualified.
    > See SAP Notes 581329 (Not possible to implement) , 596698 (Not possible to implement) and 654326 (Not yet released)
    >
    > Can anybody say me any idea how to solve the problem?
    >
    > Thanks in advance
    Dear Cobos, For FQDN related issues : Set profile param "icm/host_name_full" with corresponding FQDN via RZ10 transaction. Also check login/create_sso2_ticket & /accept_sso2_ticket parameters in the profile you have created.  Instead of "http://sesue:50300" you may to have the URL like "http://sesue.domain.com:50300//SAP/BW/BEX/". Please refer this #scn article for more details : http://goo.gl/QPlrx Similar Issues : http://goo.gl/mRCh0 Hope it helps. Thanks.

  • Internal Server Error after implemeting a Merged Appl_top

    Hi folks,
    I have been plagued by an issue since a long time. I'm implementing a merged appltop on sun solaris (5.10) on 11.5.10.2
    Basically its a clone of two nodes into a single node. After merging, the services are coming up good. Apache is running well. But when opening the AppsLogin page, it is blowing up saying Internal Server Error.
    When looked into the mod_jserv.log, it shows the below error.
    [07/02/2012 10:28:28:718] (ERROR) ajp12: Servlet Error: OracleJSP: oracle.jsp.provider.JspCompileException: Errors compiling:/d05/ufindev/ufindevcomn1/_pages/_oa__html//_AppsLocalLogin.java<TABLE BORDER=1 WIDTH=100%><TR><TH>Line #</TH><TH>Error</TH></TR><TR><TD WIDTH=7% VALIGN=TOP>259<TD> isRtl(java.lang.String) has protected access in oracle.apps.fnd.sso.SessionMgr if (SessionMgr.isRtl(langCode)) {                                 </TD></TR></TABLE>
    [07/02/2012 10:28:28:718] (ERROR) an error returned handling request via protocol "ajpv12"
    [07/02/2012 10:28:28:718] (INFO) balance: continuing to u64findev.motel6.com:16440
    [07/02/2012 10:28:28:719] (ERROR) balance: 10297 internal servlet error in server u64findev.motel6.com:16440
    [07/02/2012 10:28:28:719] (ERROR) an error returned handling request via protocol "balance"
    Any idea whats going wrong?
    Thanks,
    Lakshman.
    Edited by: 912983 on Feb 7, 2012 1:54 PM

    Have you completed all the steps in (Cloning Oracle Applications Release 11i with Rapid Clone [ID 230672.1] -- Reducing the number of Nodes of a Multi-Node System (merge APPL_TOP)) and (Sharing the Application Tier File System in Oracle Applications Release 11i [ID 233428.1] -- Section 4: Merging existing APPL_TOPs into a single APPL_TOP) with no errors?
    Can you find any errors in the database log file?
    Was AutoConfig completed successfully?
    Please clear the server cache as per (How To Clear Server Cache and Bounce Apache (Web Server)? [ID 295484.1]) and check then.
    Also, please see these docs.
    Insternal server error After Patch9578141 CPU PATCH FOR JULY 2010 [ID 1221603.1]
    Accessing web pages, randomly get Internal Server Error [ID 1374874.1]
    Internal Server Error When Trying To Enter The Processed Date In The Adjust Form [ID 549511.1]
    Thanks,
    Hussein

  • Http code 500 internal server error

    Hi all!
    I hope someone can help me out.
    A few days ago Windows crashed (some Explorer failure) and I had to restore Vista back on my pc. I also had to reinstall DW CS3. It all used to work fine but now I get an '500 internal server error'. When I fill in the data in the 'manage sites' and I test my connections (both remote and testing server) it connects fine. When I make a new recordset and test it, I get the error:
    Has anybody had this problem? I do not know what to do anymore.
    Thanks in advance, with the best regards from Holland,
    Martijn

    Hi,
    Yes, I'm referring to the DSN's setup on the remote server.
    I'm getting fed up with this bug....
    Martin
    Date: Wed, 8 Jul 2009 15:08:24 -0600
    From: [email protected]
    To: [email address deleted by Moderator]
    Subject: Dreamweaver Application Development http code 500 internal server error
    I'm also getting an HTTP 500 error from the server, even though the recordset tested successfully,
    and the records were displayed in Live View. The server can process ASP, it displays pages created
    with ASPMaker. In your reply, are you referring to the DSN's set up on the remote server?
    Thanks.
    Joe
    >

Maybe you are looking for

  • Has anyone fixed problems with OIS after upgrading to iOS 8.3?

    MY camera worked absolutely fine on my 6 Plus until I upgraded to 8.3 at which point my rear camera won't focus. I Can't downgrade to the previous version so how do I fix it?

  • I need to change the size of the view for easier reading.  Is there a way to make the page view larger without affecting the form?

    Hi Guys, good product beginning however it's not as good as many of the other Adobe product's workspaces.  I cannot change the size of the view during form design work, so it's a visual strain to work in Forms Central.  Is there a way to modify the v

  • Cell border on one side only

    I'm using CS3. I have an htm file with multiple rows and cells. I want to put borders around the cells so that they appear only on three sides, leaving the interior border white or empty or non-existant. This will make it appear that the border goes

  • Problem with accessing database

    Hi everybody I try to execute some wars included with the J2EE tutorial final version and I follow all the steps in building and deploying the specified wars, some of those wars is a punch of JSP pages and Servlet that make access to database. When I

  • Capping dev_ms trace file size

    hi - i'm wondering if anyone knows a way to help.  we have been asked by SAP to run our msg server at an elevated trace level (trace level 3 - we set it from SMMS).  this writes out a huge amt of data to the dev_ms trace file. the default trace file