Error trying to display reports in JRC

Hi,
We have written some rather complex reports using Crystal Reports 2008. The reports are working well within the report editor, but when we try to run them in a JRC web application, they both fail.
We have 2 different error messages:
Error
Invalid Join Tree node.
and
Error
Unexpected database connector error.
The datasource is a JDBC connection, and the same errors occur with MySQL and Microsoft SQLServer. We use an SQL Command in both reports, to call a stored procedure. We also use subreports. The datasource for both reports is fairly similar, so nothing to explain the different error messages.
After logging the queries in MySQL, I found out that Crystal Reports will send all the required querys, but JRC doesn't send a single SELECT query. The other difference is that JRC sends a CONNECT message multiple times, without sending a password.
32 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
33 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
34 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
35 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
36 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
37 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
38 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
39 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
40 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
41 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
42 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
43 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
44 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
45 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
46 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
47 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
48 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
49 Connect     Access denied for user 'demo'@'localhost' (using password: NO)
50 Connect     demo@localhost on demo
50 Query       SHOW VARIABLES
50 Query       SHOW COLLATION
50 Query       SET NAMES utf8
50 Query       SET character_set_results = NULL
50 Query       SET autocommit=1
We have written other reports using the same SQL Command to call the same Stored Procedure, and they work just fine. There is something special about those reports that we can't figure out.
We use the same JDBC connector for both the report editor and the JRC web application.
I have also written a quick-and-dirty Java viewer application, based on the CR Java Runtime 12.2.200, and the same problem occurs.
Same with previewing the reports in Crystal Reports For Eclipse 2.
Has anybody experienced a similar problem? Is there something obvious that we are missing?
Thank you,
JC
Edited by: Jean-Charles Boude on Mar 9, 2009 5:52 PM

Got round of the problem of multiple failed database logins now, by setting the database username and password to all subreports as well as the main report:
reportClientDocument.getDatabaseController().logon(DB_USER_NAME, DB_PASSWORD);
IStrings subreportNames = reportClientDocument.getSubreportController().getSubreportNames();
for (int i = 0; i < subreportNames.size(); i++) {
  ISubreportClientDocument subreportClientDoc = reportClientDocument.getSubreportController().getSubreport(subreportNames.getString(i));
  subreportClientDoc.getDatabaseController().logon(DB_USER_NAME, DB_PASSWORD);
However my main problem is still there, I get the same error message as before, and no query whatsoever is sent to the database:
090311 11:43:17        2635 Connect     demo@localhost on demo
             2635 Query       SHOW VARIABLES
             2635 Query       SHOW COLLATION
             2635 Query       SET NAMES utf8
             2635 Query       SET character_set_results = NULL
             2635 Query       SET autocommit=1
             2635 Quit
If anybody can make sense of the stack trace, there it is:
03-11@11:43:17 INFO  (            ?:?)     - Time to load report /D:/FullReport2.rpt took 94 ms
03-11@11:43:17 INFO  (            ?:?)     -  received request: fetchReportContents
03-11@11:43:17 INFO  (            ?:?)     -  received request: modifyParameterFieldCurrentValuesRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: modifyParameterFieldCurrentValuesRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: getPromptConnInfos
03-11@11:43:17 INFO  (            ?:?)     -  received request: fetchSubreportNames
03-11@11:43:17 INFO  (            ?:?)     -  received request: fetchSubreportContents
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: fetchSubreportContents
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: fetchSubreportContents
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: fetchSubreportContents
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: setSQLLogonInfoRequest
03-11@11:43:17 INFO  (            ?:?)     -  received request: queryServerCapabilitiesRequest
03-11@11:43:17 DEBUG (            ?:?)     - PageViewRequestHandler has been successfully created
03-11@11:43:17 INFO  (            ?:?)     -  received request: fetchReportPageRequest
03-11@11:43:17 INFO  (            ?:?)     -  attempting to send engine request
03-11@11:43:17 INFO  (            ?:?)     -  successfully sent engine request
03-11@11:43:17 DEBUG (            ?:?)     - Requesting page 1
03-11@11:43:17 DEBUG (            ?:?)     - New page formatter created with view context: ViewContext (Group Path: [])
03-11@11:43:17 ERROR (            ?:?)     -  detected an exception: Invalid Join Tree node.
     at com.crystaldecisions.reports.datafoundation.DFQuery.for(Unknown Source)
     at com.crystaldecisions.reports.datalayer.a.do(Unknown Source)
     at com.crystaldecisions.reports.datalayer.a.a(Unknown Source)
     at com.crystaldecisions.reports.dataengine.m.b(Unknown Source)
     at com.crystaldecisions.reports.dataengine.j.b(Unknown Source)
     at com.crystaldecisions.reports.dataengine.m.o(Unknown Source)
     at com.crystaldecisions.reports.dataengine.m.a(Unknown Source)
     at com.crystaldecisions.reports.dataengine.ContextNode.a(Unknown Source)
     at com.crystaldecisions.reports.dataengine.ContextNode.a(Unknown Source)
     at com.crystaldecisions.reports.dataengine.j.case(Unknown Source)
     at com.crystaldecisions.reports.dataengine.h.<init>(Unknown Source)
     at com.crystaldecisions.reports.dataengine.DataContext.a(Unknown Source)
     at com.crystaldecisions.reports.dataengine.DataProcessor2.a(Unknown Source)
     at com.crystaldecisions.reports.dataengine.DataProcessor2.a(Unknown Source)
     at com.crystaldecisions.reports.dataengine.DataProcessor2.new(Unknown Source)
     at com.crystaldecisions.reports.dataengine.DataProcessor2.try(Unknown Source)
     at com.crystaldecisions.reports.dataengine.DataProcessor2.int(Unknown Source)
     at com.crystaldecisions.reports.dataengine.DataProcessor2.I(Unknown Source)
     at com.crystaldecisions.reports.formatter.formatter.objectformatter.ObjectFormatter.fm(Unknown Source)
     at com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.if(Unknown Source)
     at com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.a(Unknown Source)
     at com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.Y(Unknown Source)
     at com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.moveToPageN(Unknown Source)
     at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.a(Unknown Source)
     at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.byte(Unknown Source)
     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(Unknown Source)
     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(Unknown Source)
     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(Unknown Source)
     at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(Unknown Source)
     at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(Unknown Source)
     at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(Unknown Source)
     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(Unknown Source)
     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(Unknown Source)
     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
     at com.businessobjects.sdk.erom.jrc.a.a(Unknown Source)
     at com.businessobjects.sdk.erom.jrc.a.execute(Unknown Source)
     at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(Unknown Source)
     at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(Unknown Source)
     at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(Unknown Source)
     at com.crystaldecisions.sdk.occa.report.application.ds.a(Unknown Source)
     at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
     at com.crystaldecisions.sdk.occa.report.application.ReportSource.getPage(Unknown Source)
     at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.getPage(Unknown Source)
     at com.businessobjects.report.web.event.s.a(Unknown Source)
     at com.businessobjects.report.web.event.s.a(Unknown Source)
     at com.businessobjects.report.web.event.bt.a(Unknown Source)
     at com.businessobjects.report.web.event.bw.broadcast(Unknown Source)
     at com.businessobjects.report.web.event.am.a(Unknown Source)
     at com.businessobjects.report.web.a.t.if(Unknown Source)
     at com.businessobjects.report.web.e.a(Unknown Source)
     at com.businessobjects.report.web.e.a(Unknown Source)
     at com.businessobjects.report.web.e.a(Unknown Source)
     at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
     at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source)
     at org.apache.jsp.CrystalReportViewer2_jsp._jspService(CrystalReportViewer2_jsp.java:103)
     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
     at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
     at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
     at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
     at java.lang.Thread.run(Unknown Source)
Not sure what to do next, I guess I'll just keep digging...

Similar Messages

  • Error trying to display a report file in FDM event script

    Hi
    I am trying to display a file (report) during an event script and receive an error "Object reference not set to an instance of an object" . The process works in version 9.3 but is generating this error during our upgrade testing on 11.1.2.2 (different hardware)
    The file (check report) is getting written correctly the \OutBox\Log directory. The file contains a standard Check Report with a file extension .pdf ( lngFileType = 31)
    We have no issues creating the file
    We try to display the file on the screen for the user using the following code which fails with the "Object reference not set to an instance of an object" error and also a message "Could not load XML file:" with the file name and path
    'Open report file in web client
    RES.PlngActionType = 4
    RES.PstrActionValue = strFileName
    Symptoms:
    We can open the same file as text with RES.PlngActionType = 1
    Everyone has rights to open/read a file in the directory
    File can be opened manually and appears correct
    Any help would be appreciated. I have not found similar issues on the forum. Support has offered no suggestions to date

    Hi and thanks for your response.
    Yes, we have tried all the various type of files ( ScriptActionTypes). The Type = 1 will open the file, but as a text stream without formatting, etc. If we try type = 3 we receive a different error message:
    Error: Invalid Report ID: 0
    Detail: Stacktrace:
    upsAppServerDM._clsAppServerDM.fPublishReport(lngReportID[Int32], lngPubFileType[Int32], strReportSQL[String], strSubReportSQL[String])
    Hyperion.FDM.Pages.ViewReportActionEvent.ExecuteReport(reportID[Int32], sqlStatement[String])
    Hyperion.FDM.Pages.ViewReportActionEvent.PreviewReport()
    Also, the Validation Report is enabled (we are using check with warnings - ID133), I have tried changing the default Web Settings from .PDF to .html and back again and tried the various other default options available under Web Settings.
    If we create a simple test text file, we can open the file as text (Type = 1)
    Here is the complete error message employing Type = 4 (XML)
    Error: Object reference not set to an instance of an object.
    Detail: Stacktrace:
    Hyperion.FDM.Pages.IntersectionSummaryCheck.FillTitleRow()
    Hyperion.FDM.Pages.IntersectionSummaryCheck.Page_Load(sender[Object], e[EventArgs])
    System.Web.UI.Control.OnLoad(e[EventArgs])
    Hyperion.FDM.Pages.BasePage.OnLoad(e[EventArgs])

  • Not properly displayed report in JRC but in CR designer

    Hi,
    The report has two XML data sources and data are displayed in a Table. Table is designed with multiple column feature. When I run this report in CR designer preview it works fine. But When I run it in JRC, data are displayed on the report. But not in the expected format. Totally different than the CR designer preview.
    We are using Crystal report 2008.
    Can you tell me the cause/ solution for this problem?
    Thanks,
    Makesh
    Edited by: Makesh on Sep 26, 2009 1:44 AM
    Edited by: Makesh on Sep 26, 2009 1:44 AM

    Is it possible for you to post the screenshots of the report viewed in CR designer and through JRC?

  • Error trying to print report to both pdf and network printer

    Hi all,
    When trying to print a report to my network printer or to pdf I get the two errors attached, one right after the other.  The resulting pdf or hard copy has almost everything in it, except for three tables which are completely missing.  When I go back into the report and open the page with the missing table, the table is no longer visible in the report and I get the second error again.  Exiting and restarting diadem brings the tables back.
    I've found several threads about pdf and other print errors and tried the solutions there to no avail; specifically the one posted here.
    I hope there is a fix to this!  These reports are intended to sell management on diadem! Thanks!
    OS Info:
    Windows 7 64 bit SP1
    18GB RAM
    DIAdem Info:
    Version: 11.3.0f4563
    USI:       1.9.1f4681
    DataFinder:  3.0.0f4681
    Script Engine:
    5,5,0,5207
    Debugger: 6,0,0,8424
    CLAD
    Solved!
    Go to Solution.
    Attachments:
    diadem print error 6-7-12.png ‏17 KB
    diadem print error two .6-7-12.png ‏15 KB

    Hello testingHotAir,
    Just to make sure, do you have administrative privileges for this machine?
    Also, you have attempted these exact steps as posted by lerman?
    Make sure that you are logged in as Windows administrator.
    Click the Windows button and click Printers.
    Right-click the Diadem pdf Export and select Properties
    Click the Ports tab, then click the Add Port button.
    Note: If the Ports tab is greyed out, right-click the Diadem Pdf Export icon and select Run as admin.
    Select Local Port and click the New Port button.
    Enter PDF1 for the new port name and click OK. Close the Printer Ports window.
    Put a checkmark in the box next to the PDF1 port if it is not already checked.
    Click on the Advanced tab.
    Select the Spool print documents radio button to make the options below it clickable.
    Clear (uncheck) the box labeled Enable advanced printing features by clicking it.
    Select the Print directly to printer radio button to make the options below not clickable.
    Click the Apply button, then click OK.
    Important: In order for the changes to take effect, you must restart your computer.
    Reboot your computer and then try to print, email, or create a pdf from Diadem.
    Regards,
    Jeff L.
    Applications Engineer | National Instruments

  • Dr. Watson error trying to generate report

    I am running Sun Java System Web Server 6.1 SP5 on Windows Server 2003 with SP1 which has been locked down using the Bastion Host server role from the Windows Server 2003 Security Guide. When I try to generate a report on the web site statistics through the Server Manager (web admin console) I get the pop-up screen which says:
    Starting analysis
    Attempting to run:
    D:/Sun/WEBSER~1/WEBSER~1.1/extras/flexanlg/flexanlg -F -n acol-prod2.acol.ca -i D:/Sun/WEBSER~1/WEBSER~1.1/HTTPS-~2/logs/access -o c:\stat.txt -c hnrfeuok -t s5m5h10 -l c+5h5 -p ctl
    This may take a bit.
    But the report does not get generated and I get the following error in the Event Viewer Application Log:
    Event Type:     Information
    Event Source:     DrWatson
    Event Category:     None
    Event ID:     4097
    Date:          2/20/2006
    Time:          9:17:06 AM
    User:          N/A
    Computer:     WEB100
    Description:
    The application, D:\Sun\WebServer\WebServer6.1\bin\https\httpadmin\bin\lganalyz.exe, generated an application error The error occurred on 02/20/2006 @ 09:17:06.313 The exception generated was c0000005 at address 77BD03BA (msvcrt!popen).
    I thought this might be a permissions problem, so I tried running the Administrator Server service as the local admin account instead of Local System Account. I get the same result either way.
    Any ideas on what might be causing the problem?
    Thanks,
    Chris

    Just a little further info. I installed Windows 2003 with SP1 and the latest updates available through Windows Updates and Sun Java System Web Server SP5 on a new server. I did not do any of the security configuration lockdown as I had done on the other server. I am still getting the Dr. Watson error when trying to generate a report, but I am also getting the following error:
    Event Type:     Error
    Event Source:     Application Error
    Event Category:     (100)
    Event ID:     1000
    Date:          2/23/2006
    Time:          1:42:16 PM
    User:          N/A
    Computer:     WEB100-TEST
    Description:
    Faulting application lganalyz.exe, version 0.0.0.0, faulting module msvcrt.dll, version 7.0.3790.1830, fault address 0x000303ba.
    Hope this helps!
    ~Chris

  • Error trying to run Reports

    When trying to run
    some reports in SCCM
    2012 R2 appears
    the error below.
    There is an error in XML document (1, 8555).
    Microsoft.ConfigurationManagement.ManagementProvider.SmsException
    There is an error in XML document (1, 8555).
    Stack Trace:
    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters()
    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport report, Collection`1 navigationParameters, IResultObject resultObject)
    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object sender, DoWorkEventArgs e)
    at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
    at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
    System.InvalidOperationException
    There is an error in XML document (1, 8555).
    Stack Trace:
    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters()
    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport report, Collection`1 navigationParameters, IResultObject resultObject)
    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object sender, DoWorkEventArgs e)
    at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
    at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
    System.Xml.XmlException
    '', hexadecimal value 0x1F, is an invalid character. Line 1, position 8555.
    Stack Trace:
    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters()
    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport report, Collection`1 navigationParameters, IResultObject resultObject)
    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object sender, DoWorkEventArgs e)
    at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
    at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)

    The output of the report most likely contains "weird" characters:
    http://social.technet.microsoft.com/Forums/en-US/home?category=systemcenter2012configurationmanager&forum=configmanagerosd%2Cconfigmanagerdeployment%2Cconfigmanagergeneral%2Cconfigmanagermigration%2Cconfigmanagersdk%2Cconfigmanagersecurity%2Cconfigmanagerapps%2Cconfigmanagermdm&sort=relevancedesc&brandIgnore=True&searchTerm=There+is+an+error+in+XML+document+
    Torsten Meringer | http://www.mssccmfaq.de

  • "SOM expression returned list when single result was expected" error trying to display form

    Any Ideas on troubleshooting this error?
    I am using ES2 SP2, on Windows.
    Here is the dump from the log, sorry for the format issue, I was unable to figure out the paste option.
    This is a new but complicated form with many nested subforms.
    It seems to render if I save the form as a PDF, and render it with the standard Process Management "Render PDF Form" service.
    If I save it as an XDP, and try to render it Reader Extended it dies like this.
    Any help or Ideas are greatly appreciated.
    Thanks
    Mark
    ALC-FRM-001-013: XMLFormFactory, PAexecute failure: "(com.adobe.document.xmlform.ReturnStatus@6c0abc13) SOM expression returned list when single result was expected"                 at com.adobe.formServer.FormServer.renderForm(FormServer.java:233)                 at com.adobe.formServer.FormServer.renderForm(FormServer.java:281)                 at com.adobe.formServer.docservice.FormsDocService.renderForm(FormsDocService.java:556)                  at com.adobe.formServer.docservice.FormsDocService.renderForm(FormsDocService.java:470)                  at com.adobe.formServer.docservice.FormsDocService.renderPDFFormCommonCaller(FormsDocService .java:164)                 at com.adobe.formServer.docservice.FormsDocService.renderPDFForm(FormsDocService.java:130)                  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)                 at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)                 at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doRequired(Ej bTransactionCMTAdapterBean.java:274)                 at sun.reflect.GeneratedMethodAccessor294.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at org.jboss.invocation.Invocation.performCall(Invocation.java:359)                 at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)                 at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)                 at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)                 at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)                  at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)                  at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:350)                  at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)                 at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)                  at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)                 at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)                 at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)                 at org.jboss.ejb.Container.invoke(Container.java:960)                 at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)                  at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)                  at $Proxy173.doRequired(Unknown Source)                 at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:129)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:188)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)                  at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)                  at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)                 at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:22 5)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)                 at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)                 at com.adobe.workflow.engine.PEUtil.invokeAction(PEUtil.java:885)                 at com.adobe.idp.workflow.dsc.invoker.WorkflowDSCInvoker.transientInvoke(WorkflowDSCInvoker. java:347)                 at com.adobe.idp.workflow.dsc.invoker.WorkflowDSCInvoker.invoke(WorkflowDSCInvoker.java:158)                  at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doRequiresNew (EjbTransactionCMTAdapterBean.java:299)                 at sun.reflect.GeneratedMethodAccessor251.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at org.jboss.invocation.Invocation.performCall(Invocation.java:359)                 at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)                 at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)                 at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)                 at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)                  at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)                  at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:404)                  at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)                 at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)                  at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)                 at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)                 at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)                 at org.jboss.ejb.Container.invoke(Container.java:960)                 at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)                  at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)                  at $Proxy173.doRequiresNew(Unknown Source)                 at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:143)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:188)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)                  at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)                  at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)                 at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:22 5)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)                 at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)                 at com.adobe.idp.taskmanager.dsc.service.TaskManagerServiceImpl.renderForm(TaskManagerServic eImpl.java:4646)                 at sun.reflect.GeneratedMethodAccessor12148.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)                 at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doRequiresNew (EjbTransactionCMTAdapterBean.java:299)                 at sun.reflect.GeneratedMethodAccessor251.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at org.jboss.invocation.Invocation.performCall(Invocation.java:359)                 at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)                 at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)                 at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)                 at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)                  at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)                  at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:404)                  at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)                 at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)                  at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)                 at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)                 at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)                 at org.jboss.ejb.Container.invoke(Container.java:960)                 at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)                  at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)                  at $Proxy173.doRequiresNew(Unknown Source)                 at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:143)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:165)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)                  at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)                  at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)                 at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:19 8)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)                 at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)                 at com.adobe.idp.taskmanager.dsc.client.TypedTaskManagerService.invokeWithRetry2(TypedTaskMa nagerService.java:159)                 at com.adobe.idp.taskmanager.dsc.client.TypedTaskManagerService.invokeWithRetry(TypedTaskMan agerService.java:147)                 at com.adobe.idp.taskmanager.dsc.client.TypedTaskManagerService.callRenderService(TypedTaskM anagerService.java:1441)                 at com.adobe.workspace.tasks.TaskActions.render(TaskActions.java:768)                 at sun.reflect.GeneratedMethodAccessor1264.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at flex.messaging.services.remoting.adapters.JavaAdapter.invoke(JavaAdapter.java:421)                  at flex.messaging.services.RemotingService.serviceMessage(RemotingService.java:183)                  at flex.messaging.MessageBroker.routeMessageToService(MessageBroker.java:1406)                  at flex.messaging.AsyncMessageBroker.routeMessageToService(AsyncMessageBroker.java:571)                  at flex.messaging.endpoints.AbstractEndpoint.serviceMessage(AbstractEndpoint.java:1005)                  at flex.messaging.endpoints.amf.MessageBrokerFilter.invoke(MessageBrokerFilter.java:103)                  at flex.messaging.endpoints.amf.LegacyFilter.invoke(LegacyFilter.java:158)                 at flex.messaging.endpoints.amf.SessionFilter.invoke(SessionFilter.java:44)                 at flex.messaging.endpoints.amf.BatchProcessFilter.invoke(BatchProcessFilter.java:67)                  at flex.messaging.endpoints.amf.SerializationFilter.invoke(SerializationFilter.java:165)                  at flex.messaging.endpoints.BaseHTTPEndpoint.service(BaseHTTPEndpoint.java:293)                  at flex.messaging.MessageBrokerServlet.service(MessageBrokerServlet.java:364)                  at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)                 at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:290)                 at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)                  at com.adobe.workspace.events.RemoteEventClientLifeCycle.doFilter(RemoteEventClientLifeCycle .java:152)                 at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:235)                 at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)                  at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)                  at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:235)                 at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)                  at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)                  at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)                  at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.ja va:179)                 at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)                  at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)                  at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)                  at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java: 157)                 at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)                  at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)                  at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)                  at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.ja va:580)                 at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)                 at java.lang.Thread.run(Unknown Source) 2012-01-09 14:58:17,178 INFO  [STDOUT] [LCDS][ERROR] Exception when invoking service 'remoting-service': flex.messaging.MessageException: ALC-WKS-005-028: A problem occurred in the Render Service for Task "8258".  Please review the render orchestration for this process.   incomingMessage: Flex Message (flex.messaging.messages.RemotingMessage)     operation = render     parameters = [44F8A32C-A8D6-102E-B9D6-00000A3085AB, 8258, 0, ASObject(242517833){acrobatVersion=10.0., acroClientType=}]     clientId = D3292091-580B-C7E7-38E3-8E9ECB817F50     destination = task-actions     messageId = 590434A1-5953-17C9-55C4-C443A2F281A3     timestamp = 1326142694104     timeToLive = 0     body = null     hdr(DSId) = D30D08B0-BD1F-B9A8-DCF0-9414276B403E     hdr(DSEndpoint) = workspace-polling-amf   Exception: flex.messaging.MessageException: ALC-WKS-005-028: A problem occurred in the Render Service for Task "8258".  Please review the render orchestration for this process.                 at com.adobe.workspace.AssemblerUtility.createMessageException(AssemblerUtility.java:412)                  at com.adobe.workspace.tasks.TaskActions.render(TaskActions.java:822)                 at sun.reflect.GeneratedMethodAccessor1264.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at flex.messaging.services.remoting.adapters.JavaAdapter.invoke(JavaAdapter.java:421)                  at flex.messaging.services.RemotingService.serviceMessage(RemotingService.java:183)                  at flex.messaging.MessageBroker.routeMessageToService(MessageBroker.java:1406)                  at flex.messaging.AsyncMessageBroker.routeMessageToService(AsyncMessageBroker.java:571)                  at flex.messaging.endpoints.AbstractEndpoint.serviceMessage(AbstractEndpoint.java:1005)                  at flex.messaging.endpoints.amf.MessageBrokerFilter.invoke(MessageBrokerFilter.java:103)                  at flex.messaging.endpoints.amf.LegacyFilter.invoke(LegacyFilter.java:158)                 at flex.messaging.endpoints.amf.SessionFilter.invoke(SessionFilter.java:44)                 at flex.messaging.endpoints.amf.BatchProcessFilter.invoke(BatchProcessFilter.java:67)                  at flex.messaging.endpoints.amf.SerializationFilter.invoke(SerializationFilter.java:165)                  at flex.messaging.endpoints.BaseHTTPEndpoint.service(BaseHTTPEndpoint.java:293)                  at flex.messaging.MessageBrokerServlet.service(MessageBrokerServlet.java:364)                  at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)                 at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:290)                 at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)                  at com.adobe.workspace.events.RemoteEventClientLifeCycle.doFilter(RemoteEventClientLifeCycle .java:152)                 at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:235)                 at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)                  at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)                  at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:235)                 at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)                  at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)                  at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)                  at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.ja va:179)                 at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)                  at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)                  at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)                  at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java: 157)                 at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)                  at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)                  at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)                  at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.ja va:580)                 at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)                 at java.lang.Thread.run(Unknown Source) Caused by: com.adobe.idp.taskmanager.dsc.client.task.TaskManagerException: Error Invoking render Operation For (taskId, formId):(8258 ,0).  Error Message is: ALC-FRM-001-013: XMLFormFactory, PAexecute failure: "(com.adobe.document.xmlform.ReturnStatus@6c0abc13) SOM expression returned list when single result was expected"                 at com.adobe.formServer.FormServer.renderForm(FormServer.java:233)                 at com.adobe.formServer.FormServer.renderForm(FormServer.java:281)                 at com.adobe.formServer.docservice.FormsDocService.renderForm(FormsDocService.java:556)                  at com.adobe.formServer.docservice.FormsDocService.renderForm(FormsDocService.java:470)                  at com.adobe.formServer.docservice.FormsDocService.renderPDFFormCommonCaller(FormsDocService .java:164)                 at com.adobe.formServer.docservice.FormsDocService.renderPDFForm(FormsDocService.java:130)                  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)                 at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)                 at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doRequired(Ej bTransactionCMTAdapterBean.java:274)                 at sun.reflect.GeneratedMethodAccessor294.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at org.jboss.invocation.Invocation.performCall(Invocation.java:359)                 at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)                 at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)                 at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)                 at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)                  at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)                  at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:350)                  at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)                 at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)                  at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)                 at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)                 at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)                 at org.jboss.ejb.Container.invoke(Container.java:960)                 at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)                  at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)                  at $Proxy173.doRequired(Unknown Source)                 at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:129)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:188)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)                  at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)                  at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)                 at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:22 5)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)                 at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)                 at com.adobe.workflow.engine.PEUtil.invokeAction(PEUtil.java:885)                 at com.adobe.idp.workflow.dsc.invoker.WorkflowDSCInvoker.transientInvoke(WorkflowDSCInvoker. java:347)                 at com.adobe.idp.workflow.dsc.invoker.WorkflowDSCInvoker.invoke(WorkflowDSCInvoker.java:158)                  at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doRequiresNew (EjbTransactionCMTAdapterBean.java:299)                 at sun.reflect.GeneratedMethodAccessor251.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at org.jboss.invocation.Invocation.performCall(Invocation.java:359)                 at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)                 at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)                 at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)                 at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)                  at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)                  at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:404)                  at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)                 at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)                  at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)                 at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)                 at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)                 at org.jboss.ejb.Container.invoke(Container.java:960)                 at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)                  at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)                  at $Proxy173.doRequiresNew(Unknown Source)                 at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:143)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:188)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)                  at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)                  at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)                 at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:22 5)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)                 at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)                 at com.adobe.idp.taskmanager.dsc.service.TaskManagerServiceImpl.renderForm(TaskManagerServic eImpl.java:4646)                 at sun.reflect.GeneratedMethodAccessor12148.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)                 at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)                 at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doRequiresNew (EjbTransactionCMTAdapterBean.java:299)                 at sun.reflect.GeneratedMethodAccessor251.invoke(Unknown Source)                 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)                 at java.lang.reflect.Method.invoke(Unknown Source)                 at org.jboss.invocation.Invocation.performCall(Invocation.java:359)                 at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)                 at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)                 at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)                 at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)                  at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)                  at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:404)                  at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)                 at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)                  at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)                 at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)                 at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)                 at org.jboss.ejb.Container.invoke(Container.java:960)                 at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)                  at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)                  at $Proxy173.doRequiresNew(Unknown Source)                 at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:143)                 at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:165)                 at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)                  at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)                 at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)                  at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)                 at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:19 8)                 at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)                 at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)                 at com.adobe.idp.taskmanager.dsc.client.TypedTaskManagerService.invokeWithRetry2(TypedTaskMa nagerService.java:159)                 at com.adobe.idp.taskmanager.dsc.client.TypedTaskManagerService.invokeWithRetry(TypedTaskMan agerService.java:147)                 at com.adobe.idp.taskmanager.dsc.client.TypedTaskManagerService.callRenderService(TypedTaskM anagerService.java:1441)                 at com.adobe.workspace.tasks.TaskActions.render(TaskActions.java:768)                 ... 37 more

    It appears the form had incorrect bindings for a list object that resulted in recursion.
    Once the bindings were corrected the form works properly
    F.Y.I.
    Mark

  • Error when trying to display a Webi report through the Folder iView

    Hi all
    I am getting the following error when Im trying to display a Webi report through the SAP Portal. We have installed the SAP Integration Kit and are able to see the content of the Infoview. However when we click on a Webi report, we receive the following error:
    Could not get page number. (Error: RWI 00223) (Error: INF)
    Have anyone else encountered this problem? Please assist! Any help will be rewarded.
    (We are running XI Rel 2).
    Addition from trace file (tomcat):
    com.businessobjects.rebean.wi.CommunicationException: Could not get page number. (Error: RWI 00223)
         at com.businessobjects.rebean.wi.occa.OccaReportComAdapter.setBlobKey(OccaReportComAdapter.java:542)
         at com.businessobjects.rebean.wi.occa.OccaReportComAdapter.getView(OccaReportComAdapter.java:376)
         at com.businessobjects.rebean.wi.occa.OccaReportComAdapter.getView(OccaReportComAdapter.java:297)
         at com.businessobjects.rebean.wi.ReportImpl.getView(ReportImpl.java:384)
         at com.businessobjects.rebean.wi.ReportImpl.getView(ReportImpl.java:407)
         at org.apache.jsp.viewers.cdz_005fadv.viewReport_jsp._jspService(viewReport_jsp.java:1182)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:704)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:474)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:409)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
         at org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:670)
         at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:637)
         at org.apache.jsp.viewers.cdz_005fadv.report_jsp._jspService(report_jsp.java:325)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    Furthermore I'd like to see an example of the cms_name entry. The documentation states: In addition, specify the Application Parameter for each iView. For this property, enter cms_name=[cms] for the fully qualified server name., but I have doubts as to what format to use.
    Kind regards,
    Martin Søgaard

    Hi Jim Ji
    The report can be displayed from the java infoview, no doubt, so the report itself works.
    But the report cannot be seen from the "SAP Infoview" (:/businessobjects/enterprise115/sap) which is the infoview, I reference from the Folder iView (through the system in the SAP portal). And since the SAP Portal Integration Kit seems very old - the Folder iView was created 12-08-2004 by Ingo Hilgefort - there might be an old version of the jar-files somewhere in the installation.
    I guess I should check the version of the jar-files in WEB-INF/lib of our web application (Tomcat) folder, and see if they have been overwritten by the SAP Portal Integration Installation or are an older version of the files in Program FilesBusiness Objectscommon3.5javalib? And also check if somewhere in the .../sap installation there are some old jar-files?
    Kind regards,
    Martin Søgaard

  • Error when trying to display a report

    Hi,
    when trying to display a report in Forms 11g 11.1.1.4 the window do not shows anything, the weblogic 10.3.4 is installed on Windows Server 2008 R2
    The logs i saw are these, what could be the reason of the error, what should i do to fix it ??
    rwserver_diagnostic.log
    [2012-11-13T06:10:13.861-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.server] [tid: 15] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    [2012-11-13T06:10:13.861-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.server] [tid: 15] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    rwservlet_diagnostic.log
    [2012-11-13T06:10:10.272-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.servlet] [tid: 11] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,1:29117] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    [2012-11-13T06:10:10.288-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.servlet] [tid: 11] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,1:29117] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    [2012-11-13T06:10:13.689-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.servlet] [tid: 11] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,1:29117] [APP: reports#11.1.1.2.0] RWClient:startInProcessServer  start inprocess server rep_wls_reports_srvweblogic_asinst_1
    [2012-11-13T06:10:14.656-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.servlet] [tid: 15] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    [2012-11-13T06:10:14.656-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.servlet] [tid: 15] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    WLS_REPORTS-diagnostic.log
    [2012-11-09T13:44:41.421-08:00] [WLS_REPORTS] [NOTIFICATION] [] [oracle.reports.adminlogconfig] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <WLS Kernel>] [ecid: 0000Jfb8SNZ4YrWFLziOOA1GbN_0000002,0] [APP: reports#11.1.1.2.0] LogConfig.load: logging.xml
    [2012-11-13T06:10:14.032-08:00] [WLS_REPORTS] [NOTIFICATION] [] [oracle.security.oes.util.logging.Log4jConfigurator] [tid: Thread-36] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] Could not find log4j configuration for MicroSM.
    [2012-11-13T06:10:14.235-08:00] [WLS_REPORTS] [NOTIFICATION] [JPS-03258] [oracle.jps.authorization.provider] [tid: Thread-36] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] Initializing UserUtils; mbean: com.bea.security.providers.authorization.asi.ASIAuthorizationProviderMBeanImpl@f6467a1e([ASI Authorization Provider]), instance: null
    [2012-11-13T06:10:14.235-08:00] [WLS_REPORTS] [NOTIFICATION] [JPS-03258] [oracle.jps.authorization.provider] [tid: Thread-36] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] Initializing UserUtils; using directory: RootOrg!AdminDir, anonymous user: anonymousRegards
    Carlos

    This is not really the correct forum to be posting Reports issues. However, if I were to guess, your issue is likely related to the known issues related to installing FMw11R1 on machines which had IPv6 enabled. In most cases, disabling IPv6 would correct the problem, however some issues were not resolved even after disabling IPv6 post-install. I would recommend patching to WLS 10.3.6 and FMw 11.1.1.6 as these versions include fixes for all of those issues as far as I recall.
    Consider referring to this MyOracleSupport document if you have access:
    Steps to Maintain Oracle Fusion Middleware 11g Release 1 (11.1.1) (Doc ID 1073776.1)

  • Error When Displaying report Crystal Reports 10

    <p>Hi There.</p><p>When trying to display a report onto a jsp, Im getting the error shown below:</p><p><strong>java.lang.NoClassDefFoundError<br />    com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory.createReportSource(Unknown Source)<br />    org.apache.jsp.jsp.struggling_jsp._jspService(struggling_jsp.java:61)<br />    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)<br />    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br />    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)<br />    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)<br />    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)<br />    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)</strong></p><p> </p><p>The jsp code looks as follows:<br /><strong><font color="#0033ff"><br />IReportSourceFactory2 rptSrcFactory = new JPEReportSourceFactory();<br /><br />String report = "em_k_rpt_written_premium_web.rpt";<br />IReportSource reportSource = (IReportSource) rptSrcFactory.createReportSource(report, request.getLocale());<br /><br />CrystalReportViewer viewer = new CrystalReportViewer();<br /><br />viewer.setReportSource(reportSource);<br /><br />viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);</font></strong><br /><br /></p><p>I already configured a JNDI datasource in my application server (Tomcat 5); so dont really know what might be happening and all SDK .jars are included in mi /lib application folder.<br /></p><p> Thanks very much in advance. <br /></p>

    <p>This kind of thing can be tuff to solve on a forum.  I&#39;ll give you my best guess advice.</p><p>1. Call Support - You may not want to do this if you don&#39;t already have a support contract.</p><p>2. You mentioned that there isn&#39;t alot of documentation on this.  I would have to agree, to a point.  </p><p>A little history - Crytal Reports 10 is the first version of the JRC.  In that version you use the JPE Report Source object model.  This object model was very basic.  In version 11 we also made the RAS object model available.  This is where you will find most of the documentation.</p><p>If you move to Crystal Reports for Eclipse for Free this is the object model that you will see in the documentation.</p><p>I would almost suggest that you download Crystal Reports for Eclipse and see if it works out for you.</p><p>3. Try Tomcat 4.x I don&#39;t believe that JRC 10 was tested on Tomcat 5.  We have seen XML serialation JAR issues in the past with different versions of Tomcat.</p><p>4. Try this kbase: <a href="http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=c2014756&sliceId=&dialogID=11500056&stateId=1%200%2011498785">JRC WAR file ver 10</a></p><p>Good luck I hope you get this one solved </p><p>Rob Horne</p><p><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • Error in displaying report

    I am geting the following error while displaying report-
    <b>Internal error (-101) occured [Message 131-183]</b>
    The reports are geting displayed on other pcs but not on my pc.I tried unistalling and re-installing sap but the error was not solved.

    Daan,
           The printer was not installed on my pc.After installing printer, the reports are visible.Thanks for u r help.
                                                                                    Regards,
                                                                                    Dilip Kumbhar

  • Error while displaying report

    I am getting following error while displaying report in sap business one-
    <b>Internal error (-101) occured [Message 131-183]</b>
    I tried resintalling sap but it did not solved the problem.The reports are getting displayed on other pc's but not on my pc.

    Hi Yogesh,
           I haven't installed any patch on my client machine.
                                                                                    Regards,
                                                                                    Dilip Kumbhar

  • Display Error Message in BW Report based on Customer Exit Variable

    Hi
    I need to display an error message in the BW report based on the value of a customer exit variable - i was able to do this successfully in BW3.5 using the below code.
      WHEN 'ZUPN'. "Here ZUPN is the customer exit variable
        IF i_step = 1.
          <check for condition -- if successful, variable flag = 1, else variable flag = 0>
          IF flag = 0.
            MESSAGE e157(00). "Error Message
          ENDIF.
        ENDIF.
    I have upgraded my system to BI 7.0 now. Whenever the variable check is not successful, it displays a blank screen instead of the error message in the report. Please advice if we need to change the code and how ??

    Bhanu,
      Thanks for u r reply.This warning message appears every time i execute the report through portal.
    Any idea ?
    Regards
    Mano

  • Error trying to create a Power View report against a Multi Dimensional SSAS cube

    Hi all,
    We have installed the Power View For Multidimensional Models CTP, released last November 27 on our Analysis Server instances.  I am now trying to create a Power View report in SharePoint that is connected to a Multi-Dimensional cube.
    I have followed the instructions diligently:
    1. Install the CTP
    2. Created a data connection of type "Microsoft BI Semantic Model for Power View" (see attachment #1)
    3. Tested that the connection was valid (all is good here!)
    I then select the "Create Power View Report" option from the data connection that I created above.
    The Power View GUI appears, and then throws an error:
    Error text:
    "An error occurred while loading the model for the item or data source 'http://server/site/SalesVarianceAnalysis_MDX.rsds'. Verify that the connection information is correct and that you have permissions to access the data source."
    The details of the error are:
    <detail><ErrorCode xmlns="rsCannotRetrieveModel</ErrorCode><HttpStatus">http://www.microsoft.com/sql/reportingservices">rsCannotRetrieveModel</ErrorCode><HttpStatus
    xmlns="400</HttpStatus><Message">http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message xmlns="An">http://www.microsoft.com/sql/reportingservices">An
    error occurred while loading the model for the item or data source 'http://hubtest/sites/broadcasting/thewowzone/Data Connections/SalesVarianceAnalysis_MDX.rsds'. Verify that the connection information is correct and that you have permissions to access the
    data source.</Message><HelpLink xmlns="http://go.microsoft.com/fwlink/?LinkId=20476&EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&EvtID=rsCannotRetrieveModel&ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&ProdVer=11.0.3000.0</HelpLink><ProductName">http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3000.0</HelpLink><ProductName
    xmlns="Microsoft">http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName><ProductVersion xmlns="11.0.3000.0</ProductVersion><ProductLocaleId">http://www.microsoft.com/sql/reportingservices">11.0.3000.0</ProductVersion><ProductLocaleId
    xmlns="127</ProductLocaleId><OperatingSystem">http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem xmlns="OsIndependent</OperatingSystem><CountryLocaleId">http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId
    xmlns="1033</CountryLocaleId><MoreInformation">http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation xmlns="<Source>ReportingServicesLibrary</Source><Message">http://www.microsoft.com/sql/reportingservices"><Source>ReportingServicesLibrary</Source><Message
    msrs:ErrorCode="rsCannotRetrieveModel" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3000.0"
    xmlns:msrs="An">http://www.microsoft.com/sql/reportingservices">An error occurred while loading the model for the item or data source '<omitted for security purposes>.
    Verify that the connection information is correct and that you have permissions to access the data source.</Message><MoreInformation><Source></Source><Message>For more information about this error navigate to the report server
    on the local server machine, or enable remote errors</Message></MoreInformation></MoreInformation><Warnings xmlns="http://www.microsoft.com/sql/reportingservices" /></detail>
    So, I can connect with the connection, but I get an error when connecting with Power View. 
    Any suggestions are appreciated.
    Thanks...
    /Peter
    Peter

    Hi Peter - are you specifying the cube name in the connection string?
    Data Source=[server];Initial Catalog=AdventureWorksDW-MD;Cube='Adventure Works'
    Check out
    http://blogs.msdn.com/b/analysisservices/archive/2012/12/09/power-view-for-multidimensional-models-feature-drill-down.aspx

  • Error while trying to retrieve reports

    Hi ,
    I am getting the below error while trying to retrieve reports.
    "5203:ADM Error proceessing results from query:The dataform grid is invalid. Verify that all members selected are in Essbase. "
    Can any one help me know the cause of this error and how to get rid of it?
    Thanks in advance

    It sounds like you have a grid (visible or hidden) with an invalid member name in it. IT could be caused by the member being hard coded into a row or column and then the member being deleted or renamed in the outline. The only way to fix it is to check each member anme in the grids and determine what changed.

Maybe you are looking for