Accessing Crystal Reports 12 report from a CF7/8 Web Application

Beside exporting the Crystal Reports 12 report to PDF, HTML,
or some other doc format, does anybody have any experience with
accessing a Crystal Reports 12 report in its native .rpt format?
I've tried using cfreport, but with no success!?

 >>>However when accessed remotely from a client PC the report is not displayed >>>as
the user is not authenticated by SSRS.
Does that mean the user (a workstation) is not member of the domain?
>>>I need to control access to the reports and can't have anonymous access to the >>>reports. 
If that is within a domain you need just create a local group on the host server (SSRS) and those users
into...
Best Regards,Uri Dimant SQL Server MVP,
http://sqlblog.com/blogs/uri_dimant/
MS SQL optimization: MS SQL Development and Optimization
MS SQL Consulting:
Large scale of database and data cleansing
Remote DBA Services:
Improves MS SQL Database Performance
SQL Server Integration Services:
Business Intelligence

Similar Messages

  • Calling IPC from a third party web application

    ISA, IPC experts,
    We have CRM 4.0 with IPC 4.0. We are developing an in house web application  in jsp/java for dealer orders. Our office staff uses CRM Online for Order Entry.
    We want to use the existing pricing procedures in the IPC to derive the pricing for the web project so our user can see the price for a given product prior to placing the order in CRM.
    How can we call IPC from a third party order software in java? prefereably without installing a standalone IPC (heard that IPC 5.0 may not support standalone mode)?
    Can you help us with ways to call the IPC from our in house web application, or point us to some documentation about the ipc client layer?
    Your help in this regard is highly appreciated.
    Yanhui Yu

    Hi Yanjui,
    if you have a CRM installation, an IPC is part of that installation. Connect your web application to that IPC. The IPC comes with its own web applications, which base on a package com.sap.spc.remote.client.object. These are APIs that you might consider using in your web application. The package should be documented with the API docs that come with your web apps, but I'm not sure about how this is delivered (sorry).
    Concerning upgradability to CRM 5.0: The IPC there does not come as its own server anymore, but offers ABAP RFC functions that are actually implemented in Java using new Netweaver technology. The 5.0 RFCs are similar, but not identical to the old IPC commands / RFCs, so an upgrade is no problem, but some changes are required. The same applies for com.sap.spc.remote.client.object, which has changed a bit as a result of the changes in the IPC APIs below.
    Alternatively to using com.sap.spc.remote.client.object, you might also try to directly call the RFC functions of the IPC server. Finding out what the various parameters that you have to pass do is not too tricky:
    - in your IPC installation, a file <ipc>/lib/properties/servercommands.xml contains all RFCs that the IPC knows.
    - for the RFC you want to use check the respective javaname in that file.
    - for that javaname check class com.sap.spc.remote.server.command.<javaname> in the javadoc API Documentation that is part of your IPC installation. This will contain rather technical details on how to call the RFCs.
    Please be aware that it's not an easy job providing all the data that IPC needs to do pricing.
    I would recommend using the E-Commerce application which has done this job for you already.
    Best regards,
    Karlheinz

  • Crystal Reports Viewer Control  - Visual Studio 2008 WEB Application

    My question is this:  Has ANYONE on this planet been able to get the ASP .NET CR Viewer control to actually work?
    Why does this editor NOT recognize End-of-line or CR characters or any whitespace??
    I have developed a Crystal Reports "Viewer" web application in VS2008 using C#.
    It's a simple app, in that it's a single page with a treeview control (containing the grouped names of the reports to which the user has access) and the CR Viewer control.
    The report files live on a network share, and permissions to them is controlled via a SQL Server database, which, for each report, stores the UserID and Logion for the oracle database, as well as any required parameter values.
    The reports themselves are all hititng an Oracle 10g database.
    I managed to do this in a Windows desktop applcation using Visual Studio 2005 and VB .net, but now, upon trying to make this a web application in VS2008, I have completely failed. The application works when run locally, but when deployed to the web server, I experience database login prompts when I should not, (the dreaded "Report requires further information" message) even thought the setdatabaselogin has already been set. I have tried saving the reportdocument in viewstate and re-assigning the viewer Datasource property to it, that also fails. However, it only does it on some reports, and not others. (admittedly, the reports may have been created using different CR versions)
    The viewer also displays data it should not be displaying when I attempt to scroll, when I do manage to get a report to run.
    I am setting parameters dynamically at run time, whose values are stored in the SQL database.
    Code Sample:
    protected void ShowReport(int ReportID)
            SQLDataPortal2005.Common sql = new SQLDataPortal2005.Common();
            Hashtable outParms = new Hashtable();
            string sAccess;
            IDataReader dr;
            CrystalDecisions.CrystalReports.Engine.ReportDocument rptDocument = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
            System.Security.Principal.WindowsPrincipal p = System.Threading.Thread.CurrentPrincipal as System.Security.Principal.WindowsPrincipal;
            sAccess = p.Identity.Name;
            int j = 0;
            int i = -1;
            if (!IsAdmin())
                sql.ExecNonQuery("CrystalReports", outParms, "proc_CRM_Check_Permissions", sAccess, Convert.ToInt32(TreeView1.SelectedNode.Value));
                if (outParms["@Allow"].ToString() != "True")
                   Response.Redirect("ErrorPage.aspx");  // redirect to  error page
            string sPath = System.Configuration.ConfigurationManager.AppSettings["WareHouse"].ToString();
            sPath = sPath + TreeView1.SelectedNode.Text.Trim() + ".rpt";      
            rptDocument.Load(sPath);
            dr = sql.GetDataReader("CrystalReports", "proc_CRM_Get_Report", Convert.ToInt32(TreeView1.SelectedNode.Value));
            while (dr.Read() == true)
                j += 1;
                if (j < 2)
                    rptDocument.SetDatabaseLogon(dr["DB_Login"].ToString(), dr["DB_Pwd"].ToString(), "PLAW", "LAWDB", true);
                    pList = dr["ParmList"].ToString().Split(',');
            dr.Close();
            dr.Dispose();
            if (pList.Length > 0 && pList[0].ToString().Trim() != "")
                foreach (CrystalDecisions.Shared.ParameterField x in rptDocument.ParameterFields)
                    i++;
                    switch (x.ParameterValueType)
                        case CrystalDecisions.Shared.ParameterValueKind.BooleanParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToBoolean(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.CurrencyParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToDouble(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.DateParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToDateTime(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.DateTimeParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToDateTime(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.NumberParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToInt32(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.StringParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToString(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.TimeParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToDateTime(pList<i>));
                            break;
            Session["CReport"] = rptDocument;
            CRV1.ReportSource = rptDocument;
            CRV1.DisplayGroupTree = false;
            CRV1.HasRefreshButton = true;
            CRV1.ShowFirstPage();
    Is there a better/different way of accomplishing this very simply process? All I need this application to do is to view a report, while setting it's parmeters (if required) dynamically at run time. I don't EVER want the user to be prompted for DB LOGIN INFO.
    Edited by: RichardK on May 10, 2010 4:14 PM
    Edited by: RichardK on May 10, 2010 4:14 PM
    Edited by: RichardK on May 10, 2010 4:16 PM
    Edited by: RichardK on May 10, 2010 4:18 PM
    Edited by: RichardK on May 10, 2010 4:22 PM
    Edited by: RichardK on May 10, 2010 4:23 PM

    To answer you question; Yes, I suspect that most of the users in this community have managed to successfully create web apps. And this is the tiniest of sampling of the developers out there...
    A few suggestions;
    1) Keep the posts to under 1200 characters. Otherwise, the formatting is lost which makes it difficult to read.
    2) Try out a few sample apps from here:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    Suggest; csharp_web_simplelogonengine.zip, csharp_web_simplelogonviewer.zip and csharp_web_subreport_logon.zip.
    3) Start simple; one table, one field, no subreports. Hard code the database logon parameters. Convince your self that this does work. Increase the complexity - add fields, tables, subreports. Do not mix connection methods (e.g.; if ODBC for main, than ODBC for sub is a good idea, though not a requirement).
    4) See the article [Troubleshooting Guide to Database Connectivity Issues with Crystal Reports in Visual Studio .NET Applications|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b0225775-88c4-2c10-bd80-8298769293de].
    5) See  [this|http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/d05b3bb7-0f28-2c10-4ea3-84dbdc4e414e?quicklink=index&overridelayout=true] article.
    6) Consider creating a phone case here:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300
    Ludek
    Follow us on Twitter
    http://twitter.com/SAPCRNetSup

  • How to use Crystal report viewer in a portlet based web application

    I am using JRC to view crystal reports in porlet based web application. Following is the code in JSP
    <%@ page import="com.crystaldecisions.report.web.viewer.CrystalReportViewer,
    com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,
    com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase" %>
    <portlet:defineObjects />
    <%
         // This sample code calls methods from the CRJavaHelper class, which
         // contains examples of how to use the BusinessObjects APIs. You are free to
         // modify and distribute the source code contained in the CRJavaHelper class.
         try {
              String reportName = "ProactiveEventsSummaryData.rpt";
              ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
              if (clientDoc == null) {
                   // Report can be opened from the relative location specified in the CRConfig.xml, or the report location
                   // tag can be removed to open the reports as Java resources or using an absolute path
                   // (absolute path not recommended for Web applications).
                   clientDoc = new ReportClientDocument();
                   //clientDoc.setReportAppServer(ReportClientDocument.inprocConnectionString);
                                  clientDoc.setReportAppServer("inproc:jrc");
                   // Open report
                   clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
                   // Store the report document in session
                   session.setAttribute(reportName, clientDoc);
              // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
                   // Create the CrystalReportViewer object
                   CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
                   String reportSourceSessionKey = reportName+"ReportSource";
                   Object reportSource = session.getAttribute(reportSourceSessionKey);
                   if (reportSource == null)
                        reportSource = clientDoc.getReportSource();
                        session.setAttribute(reportSourceSessionKey, reportSource);
                   //     set the reportsource property of the viewer
                   crystalReportPageViewer.setReportSource(reportSource);
                   // Apply the viewer preference attributes
                   // Process the report
                   crystalReportPageViewer.processHttpRequest(request, response, application, null);
              // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************          
         } catch (ReportSDKExceptionBase e) {
             out.println(e);
    %>
    With this code , report gets displayed in the portlet but none of the actions on thre report like next page click , search button , opening subreport , clicking on drill-downs are working . The error in the explorer console is as shown below
    Error: CrystalViewerCrystalEvent is not defined
    javascript:CrystalViewerCrystalEvent('CrystalViewer',%20'tb=next')
    PageSource of the web page shows the CrystalViewerCrystalEvent javascript function defined but for somereason its not recognized by the portlet. Has anyone worked on displaying crystalreports in a portlet ?

    Code attached
    <%@ page import="com.crystaldecisions.report.web.viewer.CrystalReportViewer,
    com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,
    com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase" %>
    <portlet:defineObjects />
    <%
         // This sample code calls methods from the CRJavaHelper class, which
         // contains examples of how to use the BusinessObjects APIs. You are free to
         // modify and distribute the source code contained in the CRJavaHelper class.
         try {
              String reportName = "ProactiveEventsSummaryData.rpt";
              ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
              if (clientDoc == null) {
                   // Report can be opened from the relative location specified in the CRConfig.xml, or the report location
                   // tag can be removed to open the reports as Java resources or using an absolute path
                   // (absolute path not recommended for Web applications).
                   clientDoc = new ReportClientDocument();
                   //clientDoc.setReportAppServer(ReportClientDocument.inprocConnectionString);
                                  clientDoc.setReportAppServer("inproc:jrc");
                   // Open report
                   clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
                   // Store the report document in session
                   session.setAttribute(reportName, clientDoc);
              // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
                   // Create the CrystalReportViewer object
                   CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
                   String reportSourceSessionKey = reportName+"ReportSource";
                   Object reportSource = session.getAttribute(reportSourceSessionKey);
                   if (reportSource == null)
                        reportSource = clientDoc.getReportSource();
                        session.setAttribute(reportSourceSessionKey, reportSource);
                   //     set the reportsource property of the viewer
                   crystalReportPageViewer.setReportSource(reportSource);
                   // Apply the viewer preference attributes
                   // Process the report
                   crystalReportPageViewer.processHttpRequest(request, response, application, null);
              // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************          
         } catch (ReportSDKExceptionBase e) {
             out.println(e);
    %>
    Edited by: teethoma on Nov 30, 2009 10:06 AM

  • Faults in BPEL when invoked from a Custom built Web Application

    Hello there,
    I have developed a BPEL flow for a HealthCare demo and it works fine and all is well when it is invoked from the BPEL Console's initiate screen.
    I developed a webapplication to invoke the same (using the regular com.collaxa api for invokation of any BPEL process). It invokes the BPEL successfully and I can see the whole Payload in the 'receiveInput' section of the BPEL Flow. But the very First 'Assign' in which i just assign a text string as a default value to an input element faults out stating that the 'to' field is a 'zero node'... The assign stage also shows the payload with all values in it. But it errors out...
    here is the payload in the 'receiveInput' stage:
    <inputVariable>
    <part name="payload" >
    <HealthCareWorkFlowProcessRequest>
    <enduser_name>pavan</enduser_name>
    <enduser_phone_number>08046521345</enduser_phone_number>
    <enduser_username>pkvedam</enduser_username>
    <enduser_email_id>[email protected]</enduser_email_id>
    <problem_desc>cancer</problem_desc>
    <prob_relates_to>onchology</prob_relates_to>
    <doctor_assigned/>
    <doctor_assigned_email_id/>
    <proposed_date>13-10-2006</proposed_date>
    <proposed_time>09:00</proposed_time>
    <proposed_duration>01:00</proposed_duration>
    <patient_comments>swelling in the arm pit</patient_comments>
    <receptionist_comments/>
    <doctor_comments/>
    <receptionist_username>employee</receptionist_username>
    <receptionist_email_id>[email protected]</receptionist_email_id>
    </HealthCareWorkFlowProcessRequest>
    </part>
    </inputVariable>
    Here is the ASSIGN stage errors out (copied to clipboard):
    [2006/10/14 10:44:54]
    Error in <assign> expression: <to> value is empty at line "46". The XPath expression:
    "/child::client:HealthCareWorkFlowProcessRequedst/child::client:receptionist_username"
    returns zero node, when applied to document shown below:
    <HealthCareWorkFlowProcessRequest>
    <enduser_name>pavan</enduser_name>
    <enduser_phone_number>08046521345</enduser_phone_number>
    <enduser_username>pkvedam</enduser_username>
    <enduser_email_id>[email protected]</enduser_email_id>
    <problem_desc>cancer</problem_desc>
    <prob_relates_to>onchology</prob_relates_to>
    <doctor_assigned/>
    <doctor_assigned_email_id/>
    <proposed_date>13-10-2006</proposed_date>
    <proposed_time>09:00</proposed_time>
    <proposed_duration>01:00</proposed_duration>
    <patient_comments>swelling in the arm pit</patient_comments>
    <receptionist_comments/>
    <doctor_comments/>
    <receptionist_username>employee</receptionist_username>
    <receptionist_email_id>[email protected]</receptionist_email_id>
    </HealthCareWorkFlowProcessRequest>
    <selectionFailure>
    <part name="summary" >
    <summary>XPath query string returns zero node. According to BPEL4WS spec 1.1 section 14.3, The assign activity &lt;to&gt; part query should not return zero node. Please check the BPEL source at line number "46" and verify the &lt;to&gt; part xpath query. </summary>
    </part>
    </selectionFailure>

    oops... sorry... I had typed it in as there is no way to copy that 'error message' on to the clipboard from the BPEL FLOW depiction.
    it must have read 'HealthCareWorkFlowProcessRequest'...
    the problem is not with the typo... :(
    Am not able to find the root cause... but the flow fails when invoked from my web application...

  • How can print the data from notepad into the web application.

    Hi,
    I am Buntty, I want to read the data from the notepad and print into text area of web application, I have written the code to invoke the file and store data in temporary buffer, then I want to Print that data, but while printing the data 1st line replaces when the 2nd line prints, java code is below.
    BufferedReader bin=new BufferedReader(new FileReader("mydata.txt"));
    while((credit_number=bin.readLine())!=null)
         selenium.type("inputString", credit_number);
    Please help me to print all the lines in the text area of web application.
    Any method to print the all the data in the notepad at a time into the text area on web application.
    Thanks
    Buntty
    Edited by: Buntty on Nov 15, 2008 4:24 PM
    Edited by: Buntty on Nov 15, 2008 4:37 PM

    Try this:
    BufferedReader bin=new BufferedReader(new FileReader("mydata.txt"));
    String tempString = "";
    while((credit_number=bin.readLine())!=null)
    tempString = tempString + credit_number;
    selenium.type("inputString", tempString); Hope this helps.
    All the best

  • How can I use web service call for edit a report with SSRS in Java Struts2 web application

    Hello im new in SSRS technologie and I would like make web service call at my SSRS server. Is sombody can help me ?
    - What API should I import in my project ? I use Maven can I found this API on Maven repository ?
    - I would like have an sample of code which initialize the ReportingService, do the call and process result.
    We use the SQL Server ReportingService 2008 R2 and currently we made HTTP call like this : http://<ssr_server>/ReportServer/Pages/ReportViewer.aspx?%2fSSRS_OMB%2fMyReport&rs:Command=Render&MyParam=<value>
    Regards

    Hi ombinte,
    SQL Server Reporting Services provides access to the full functionality of the report server through the Report Server Web service. Because the Report Server Web service is an XML Web service which uses Simple Object Access Protocol (SOAP) over Hypertext Transfer
    Protocol (HTTP), any SOAP-aware application or development tool can communicate with the SSRS web service.
    There are three primary ways to develop Reporting Services applications based on the Web service, please see:
    Develop applications using Microsoft Visual Studio and the Microsoft .NET Framework SDK.
    Develop applications using the rs utility (RS.exe), the Reporting Services script environment.
    Develop applications using any SOAP-enabled set of development tools.
    For more information about Report Server Web Service, you can refer to the following document:
    http://technet.microsoft.com/en-us/library/ms152787.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to print formatted data / report on user's printer in Web Application

    Hi All
    I want to print some formatted data/report ( it might be 1000 pages) on user's printer.
    application is web based and tech. used are Java - jsp - servlets
    now prob. is ...
    how i will transfer all data to client (web browser) from the server and how i can print that data on user's printer ...??
    there is requirement that I can not use applet for this purpose.
    if any one done or have idea then let me know.
    thanks
    Shailesh Koradiya

    Hi
    Its simple, first of all break ur data in terms of pages. Write the logic in one JSP.
    suppose i have jsp PrintReport.jsp , for page 1 url will PrintReport.jsp?page=0 ... so on
    get the page parameter in JSP
    String page="";
    if(request.getParameter("page")!=null)
    page=request.getParameter("page");
    get the rowcount from the Result and assume records per page is 100
    if u have 1000 rows then 10 pages u have to serve
    StartRowNumber=page*recordsPerPage
    EndRowNumber=StartRowNumber+recordsPerPage
    Execute a SQL query , select * from table where rownum between
    StartRowNumber and EndRowNumber
    Provide google like pageNumbers in ur HTML page
    ie 1 2 3 4 5 6 ..10
    Regarding printing , Create HTML button called 'print' and add Javascript ' window.print()' on clicking it.
    Hope it would solve ur problem
    Cheers
    Rajendra Bandi

  • Crash within libt2k.so. Jasper Reports is being used in a web application running within Tomcat

    # A fatal error has been detected by the Java Runtime Environment:
    #  SIGSEGV (0xb) at pc=0x00007faa87704a83, pid=22740, tid=140370523805440
    # JRE version: Java(TM) SE Runtime Environment (7.0_51-b13) (build 1.7.0_51-b13)
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (24.51-b03 mixed mode linux-amd64 compressed oops)
    # Problematic frame:
    # C  [libt2k.so+0x32a83]  tsi_EmergencyShutDown+0x13
    # Core dump written. Default location: /web/appmanagementscripts/tomcatscripts/core or core.22740
    # If you would like to submit a bug report, please visit:
    #   http://bugreport.sun.com/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    ---------------  T H R E A D  ---------------
    Current thread (0x000000000cf38800):  JavaThread "ajp-bio-41009-exec-89" daemon [_thread_in_native, id=29211, stack(0x00007faa8f255000,0x00007faa8f356000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=128 (), si_addr=0x0000000000000000
    Registers:
    RAX=0x00007faaa2fd9a7f, RBX=0x00007faa8f350834, RCX=0x0000000000000000, RDX=0x00007faa8f350920
    RSP=0x00007faa8f3507d0, RBP=0x00007faa8f3507f0, RSI=0x0000000000002727, RDI=0x8949ff8b49c86d89
    R8 =0x00007faa8f350800, R9 =0x00007faa8f350810, R10=0x00007faa8f350cb0, R11=0x0000003b3820e080
    R12=0x000000000470ec98, R13=0x000000000470cc38, R14=0x8949ff8b49c86d89, R15=0x0000000004343050
    RIP=0x00007faa87704a83, EFLAGS=0x0000000000010282, CSGSFS=0x0000000000000033, ERR=0x0000000000000000
      TRAPNO=0x000000000000000d
    Top of Stack: (sp=0x00007faa8f3507d0)
    0x00007faa8f3507d0:   00007faa8f350834 000000000470ec98
    0x00007faa8f3507e0:   000000000470cc38 000000000cf389e8
    0x00007faa8f3507f0:   00007faa8f350810 00007faa87700110
    0x00007faa8f350800:   00007faa8f350920 00007faaa2fd9a7f
    0x00007faa8f350810:   00007faaa2fc2310 00000006e88a48f8
    0x00007faa8f350820:   000000000cf38800 00007faa8f350850
    0x00007faa8f350830:   00000006e88a48f8 000000000cf38800
    0x00007faa8f350840:   00007faa8f3508a8 00007faaa2fc3058
    0x00007faa8f350850:   000000000cf38800 00007faaa2fc3058
    0x00007faa8f350860:   00000007bb109fd8 00007faa8f350868
    0x00007faa8f350870:   00000006e57f45e9 00007faa8f3508b8
    0x00007faa8f350880:   00000006e57f5928 0000000000000000
    0x00007faa8f350890:   00000006e57f4608 0000000000000000
    0x00007faa8f3508a0:   00007faa8f3508b8 00007faa8f350900
    0x00007faa8f3508b0:   00007faaa2fc3058 00000007bb109fd8
    0x00007faa8f3508c0:   00007faa8f3508c0 00000006e88a3a79
    0x00007faa8f3508d0:   00007faa8f350910 00000006e88a4bb0
    0x00007faa8f3508e0:   0000000000000000 00000006e88a3a88
    0x00007faa8f3508f0:   0000000000000000 00007faa8f350910
    0x00007faa8f350900:   00007faa8f350970 00007faaa2fc3058
    0x00007faa8f350910:   00000007bb109fd8 00000007bb109fd8
    0x00007faa8f350920:   0000000000002727 0000000000000000
    0x00007faa8f350930:   00007faa8f350920 00000006e57f480b
    0x00007faa8f350940:   00007faa8f350978 00000006e57f5928
    0x00007faa8f350950:   0000000000000000 00000006e57f4818
    0x00007faa8f350960:   0000000000000000 00007faa8f350980
    0x00007faa8f350970:   00007faa8f3509d8 00000007bb109fd8
    0x00007faa8f350980:   000000070a9ede40 0000000000000009
    0x00007faa8f350990:   0000000000000000 00007faa8f350988
    0x00007faa8f3509a0:   00000006e5427cd9 00007faa8f350a08
    0x00007faa8f3509b0:   00000006e542dc98 0000000000000000
    0x00007faa8f3509c0:   00000006e5427cf0 0000000000000000
    Instructions: (pc=0x00007faa87704a83)
    0x00007faa87704a63:   4c 8b 74 24 18 c9 e9 a2 cf ff ff 90 90 55 48 85
    0x00007faa87704a73:   ff 48 89 e5 41 56 49 89 fe 41 55 41 54 53 74 4d
    0x00007faa87704a83:   44 8b 6f 08 4c 8b 67 10 45 85 ed 7e 1f 31 db 66
    0x00007faa87704a93:   0f 1f 44 00 00 49 8b 3c dc 48 85 ff 74 05 e8 8a
    Register to memory mapping:
    RAX=0x00007faaa2fd9a7f is at code_begin+95 in an Interpreter codelet
    getstatic  178 getstatic  [0x00007faaa2fd9a20, 0x00007faaa2fd9be0]  448 bytes
    RBX=0x00007faa8f350834 is pointing into the stack for thread: 0x000000000cf38800
    RCX=0x0000000000000000 is an unknown value
    RDX=0x00007faa8f350920 is pointing into the stack for thread: 0x000000000cf38800
    RSP=0x00007faa8f3507d0 is pointing into the stack for thread: 0x000000000cf38800
    RBP=0x00007faa8f3507f0 is pointing into the stack for thread: 0x000000000cf38800
    RSI=0x0000000000002727 is an unknown value
    RDI=0x8949ff8b49c86d89 is an unknown value
    R8 =0x00007faa8f350800 is pointing into the stack for thread: 0x000000000cf38800
    R9 =0x00007faa8f350810 is pointing into the stack for thread: 0x000000000cf38800
    R10=0x00007faa8f350cb0 is pointing into the stack for thread: 0x000000000cf38800
    R11=0x0000003b3820e080: siglongjmp+0 in /lib64/libpthread.so.0 at 0x0000003b38200000
    R12=0x000000000470ec98 is an unknown value
    R13=0x000000000470cc38 is an unknown value
    R14=0x8949ff8b49c86d89 is an unknown value
    R15=0x0000000004343050 is an unknown value
    Stack: [0x00007faa8f255000,0x00007faa8f356000],  sp=0x00007faa8f3507d0,  free space=1005k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [libt2k.so+0x32a83]  tsi_EmergencyShutDown+0x13
    C  [libt2k.so+0x2e110]  Delete_InputStream+0x70
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  sun.font.T2KFontScaler.getGlyphImageNative(Lsun/font/Font2D;JJI)J+0
    j  sun.font.T2KFontScaler.getGlyphImage(JI)J+26
    J  sun.font.FileFontStrike.getGlyphImagePtr(I)J
    J  sun.font.FileFontStrike.getGlyphMetrics(I)Ljava/awt/geom/Point2D$Float;
    v  ~StubRoutines::call_stub
    J  sun.font.SunLayoutEngine.nativeLayout(Lsun/font/Font2D;Lsun/font/FontStrike;[FII[CIIIIIIILjava/awt/geom/Point2D$Float;Lsun/font/GlyphLayout$GVData;JJ)V
    J  sun.font.SunLayoutEngine.layout(Lsun/font/FontStrikeDesc;[FIILsun/font/TextRecord;ILjava/awt/geom/Point2D$Float;Lsun/font/GlyphLayout$GVData;)V
    J  sun.font.GlyphLayout.layout(Ljava/awt/Font;Ljava/awt/font/FontRenderContext;[CIIILsun/font/StandardGlyphVector;)Lsun/font/StandardGlyphVector;
    j  sun.font.ExtendedTextSourceLabel.createGV()Lsun/font/StandardGlyphVector;+63
    j  sun.font.ExtendedTextSourceLabel.getGV()Lsun/font/StandardGlyphVector;+9
    J  sun.font.ExtendedTextSourceLabel.createCharinfo()[F
    J  sun.font.ExtendedTextSourceLabel.getLineBreakIndex(IF)I
    J  java.awt.font.TextMeasurer.calcLineBreak(IF)I
    j  java.awt.font.TextMeasurer.getLineBreakIndex(IF)I+38
    j  java.awt.font.LineBreakMeasurer.nextOffset(FIZ)I+44
    j  net.sf.jasperreports.engine.fill.SimpleTextLineWrapper.measureExactLineBreakIndex(FIZ)I+110
    J  net.sf.jasperreports.engine.fill.TextMeasurer.renderNextLine(Lnet/sf/jasperreports/engine/fill/TextLineWrapper;Ljava/util/List;[I[Lnet/sf/jasperreports/engine/TabStop;[Z)Z
    J  net.sf.jasperreports.engine.fill.TextMeasurer.renderParagraph(Lnet/sf/jasperreports/engine/fill/TextLineWrapper;ILjava/lang/String;)Z
    J  net.sf.jasperreports.engine.fill.TextMeasurer.measure(Lnet/sf/jasperreports/engine/util/JRStyledText;IIZ)Lnet/sf/jasperreports/engine/fill/JRMeasuredText;
    J  net.sf.jasperreports.engine.fill.JRFillTextElement.chopTextElement(I)V
    J  net.sf.jasperreports.engine.fill.JRFillTextField.prepare(IZ)Z
    J  net.sf.jasperreports.engine.fill.JRFillElementContainer.prepareElements(IZ)V
    J  net.sf.jasperreports.engine.fill.JRVerticalFiller.fillDetail()V
    J  net.sf.jasperreports.engine.fill.JRVerticalFiller.fillReport()V
    j  net.sf.jasperreports.engine.fill.JRBaseFiller.fill(Ljava/util/Map;)Lnet/sf/jasperreports/engine/JasperPrint;+303
    j  net.sf.jasperreports.engine.fill.JRBaseFiller.fill(Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)Lnet/sf/jasperreports/engine/JasperPrint;+20
    j  net.sf.jasperreports.engine.fill.JRFiller.fill(Lnet/sf/jasperreports/engine/JasperReportsContext;Lnet/sf/jasperreports/engine/JasperReport;Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)Lnet/sf/jasperreports/engine/JasperPrint;+14
    j  net.sf.jasperreports.engine.JasperFillManager.fill(Lnet/sf/jasperreports/engine/JasperReport;Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)Lnet/sf/jasperreports/engine/JasperPrint;+7
    j  net.sf.jasperreports.engine.JasperFillManager.fill(Ljava/lang/String;Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)Lnet/sf/jasperreports/engine/JasperPrint;+35
    j  net.sf.jasperreports.engine.JasperRunManager.runToPdfFile(Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)V+15
    j  net.sf.jasperreports.engine.JasperRunManager.runReportToPdfFile(Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)V+7

    # A fatal error has been detected by the Java Runtime Environment:
    #  SIGSEGV (0xb) at pc=0x00007faa87704a83, pid=22740, tid=140370523805440
    # JRE version: Java(TM) SE Runtime Environment (7.0_51-b13) (build 1.7.0_51-b13)
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (24.51-b03 mixed mode linux-amd64 compressed oops)
    # Problematic frame:
    # C  [libt2k.so+0x32a83]  tsi_EmergencyShutDown+0x13
    # Core dump written. Default location: /web/appmanagementscripts/tomcatscripts/core or core.22740
    # If you would like to submit a bug report, please visit:
    #   http://bugreport.sun.com/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    ---------------  T H R E A D  ---------------
    Current thread (0x000000000cf38800):  JavaThread "ajp-bio-41009-exec-89" daemon [_thread_in_native, id=29211, stack(0x00007faa8f255000,0x00007faa8f356000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=128 (), si_addr=0x0000000000000000
    Registers:
    RAX=0x00007faaa2fd9a7f, RBX=0x00007faa8f350834, RCX=0x0000000000000000, RDX=0x00007faa8f350920
    RSP=0x00007faa8f3507d0, RBP=0x00007faa8f3507f0, RSI=0x0000000000002727, RDI=0x8949ff8b49c86d89
    R8 =0x00007faa8f350800, R9 =0x00007faa8f350810, R10=0x00007faa8f350cb0, R11=0x0000003b3820e080
    R12=0x000000000470ec98, R13=0x000000000470cc38, R14=0x8949ff8b49c86d89, R15=0x0000000004343050
    RIP=0x00007faa87704a83, EFLAGS=0x0000000000010282, CSGSFS=0x0000000000000033, ERR=0x0000000000000000
      TRAPNO=0x000000000000000d
    Top of Stack: (sp=0x00007faa8f3507d0)
    0x00007faa8f3507d0:   00007faa8f350834 000000000470ec98
    0x00007faa8f3507e0:   000000000470cc38 000000000cf389e8
    0x00007faa8f3507f0:   00007faa8f350810 00007faa87700110
    0x00007faa8f350800:   00007faa8f350920 00007faaa2fd9a7f
    0x00007faa8f350810:   00007faaa2fc2310 00000006e88a48f8
    0x00007faa8f350820:   000000000cf38800 00007faa8f350850
    0x00007faa8f350830:   00000006e88a48f8 000000000cf38800
    0x00007faa8f350840:   00007faa8f3508a8 00007faaa2fc3058
    0x00007faa8f350850:   000000000cf38800 00007faaa2fc3058
    0x00007faa8f350860:   00000007bb109fd8 00007faa8f350868
    0x00007faa8f350870:   00000006e57f45e9 00007faa8f3508b8
    0x00007faa8f350880:   00000006e57f5928 0000000000000000
    0x00007faa8f350890:   00000006e57f4608 0000000000000000
    0x00007faa8f3508a0:   00007faa8f3508b8 00007faa8f350900
    0x00007faa8f3508b0:   00007faaa2fc3058 00000007bb109fd8
    0x00007faa8f3508c0:   00007faa8f3508c0 00000006e88a3a79
    0x00007faa8f3508d0:   00007faa8f350910 00000006e88a4bb0
    0x00007faa8f3508e0:   0000000000000000 00000006e88a3a88
    0x00007faa8f3508f0:   0000000000000000 00007faa8f350910
    0x00007faa8f350900:   00007faa8f350970 00007faaa2fc3058
    0x00007faa8f350910:   00000007bb109fd8 00000007bb109fd8
    0x00007faa8f350920:   0000000000002727 0000000000000000
    0x00007faa8f350930:   00007faa8f350920 00000006e57f480b
    0x00007faa8f350940:   00007faa8f350978 00000006e57f5928
    0x00007faa8f350950:   0000000000000000 00000006e57f4818
    0x00007faa8f350960:   0000000000000000 00007faa8f350980
    0x00007faa8f350970:   00007faa8f3509d8 00000007bb109fd8
    0x00007faa8f350980:   000000070a9ede40 0000000000000009
    0x00007faa8f350990:   0000000000000000 00007faa8f350988
    0x00007faa8f3509a0:   00000006e5427cd9 00007faa8f350a08
    0x00007faa8f3509b0:   00000006e542dc98 0000000000000000
    0x00007faa8f3509c0:   00000006e5427cf0 0000000000000000
    Instructions: (pc=0x00007faa87704a83)
    0x00007faa87704a63:   4c 8b 74 24 18 c9 e9 a2 cf ff ff 90 90 55 48 85
    0x00007faa87704a73:   ff 48 89 e5 41 56 49 89 fe 41 55 41 54 53 74 4d
    0x00007faa87704a83:   44 8b 6f 08 4c 8b 67 10 45 85 ed 7e 1f 31 db 66
    0x00007faa87704a93:   0f 1f 44 00 00 49 8b 3c dc 48 85 ff 74 05 e8 8a
    Register to memory mapping:
    RAX=0x00007faaa2fd9a7f is at code_begin+95 in an Interpreter codelet
    getstatic  178 getstatic  [0x00007faaa2fd9a20, 0x00007faaa2fd9be0]  448 bytes
    RBX=0x00007faa8f350834 is pointing into the stack for thread: 0x000000000cf38800
    RCX=0x0000000000000000 is an unknown value
    RDX=0x00007faa8f350920 is pointing into the stack for thread: 0x000000000cf38800
    RSP=0x00007faa8f3507d0 is pointing into the stack for thread: 0x000000000cf38800
    RBP=0x00007faa8f3507f0 is pointing into the stack for thread: 0x000000000cf38800
    RSI=0x0000000000002727 is an unknown value
    RDI=0x8949ff8b49c86d89 is an unknown value
    R8 =0x00007faa8f350800 is pointing into the stack for thread: 0x000000000cf38800
    R9 =0x00007faa8f350810 is pointing into the stack for thread: 0x000000000cf38800
    R10=0x00007faa8f350cb0 is pointing into the stack for thread: 0x000000000cf38800
    R11=0x0000003b3820e080: siglongjmp+0 in /lib64/libpthread.so.0 at 0x0000003b38200000
    R12=0x000000000470ec98 is an unknown value
    R13=0x000000000470cc38 is an unknown value
    R14=0x8949ff8b49c86d89 is an unknown value
    R15=0x0000000004343050 is an unknown value
    Stack: [0x00007faa8f255000,0x00007faa8f356000],  sp=0x00007faa8f3507d0,  free space=1005k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [libt2k.so+0x32a83]  tsi_EmergencyShutDown+0x13
    C  [libt2k.so+0x2e110]  Delete_InputStream+0x70
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  sun.font.T2KFontScaler.getGlyphImageNative(Lsun/font/Font2D;JJI)J+0
    j  sun.font.T2KFontScaler.getGlyphImage(JI)J+26
    J  sun.font.FileFontStrike.getGlyphImagePtr(I)J
    J  sun.font.FileFontStrike.getGlyphMetrics(I)Ljava/awt/geom/Point2D$Float;
    v  ~StubRoutines::call_stub
    J  sun.font.SunLayoutEngine.nativeLayout(Lsun/font/Font2D;Lsun/font/FontStrike;[FII[CIIIIIIILjava/awt/geom/Point2D$Float;Lsun/font/GlyphLayout$GVData;JJ)V
    J  sun.font.SunLayoutEngine.layout(Lsun/font/FontStrikeDesc;[FIILsun/font/TextRecord;ILjava/awt/geom/Point2D$Float;Lsun/font/GlyphLayout$GVData;)V
    J  sun.font.GlyphLayout.layout(Ljava/awt/Font;Ljava/awt/font/FontRenderContext;[CIIILsun/font/StandardGlyphVector;)Lsun/font/StandardGlyphVector;
    j  sun.font.ExtendedTextSourceLabel.createGV()Lsun/font/StandardGlyphVector;+63
    j  sun.font.ExtendedTextSourceLabel.getGV()Lsun/font/StandardGlyphVector;+9
    J  sun.font.ExtendedTextSourceLabel.createCharinfo()[F
    J  sun.font.ExtendedTextSourceLabel.getLineBreakIndex(IF)I
    J  java.awt.font.TextMeasurer.calcLineBreak(IF)I
    j  java.awt.font.TextMeasurer.getLineBreakIndex(IF)I+38
    j  java.awt.font.LineBreakMeasurer.nextOffset(FIZ)I+44
    j  net.sf.jasperreports.engine.fill.SimpleTextLineWrapper.measureExactLineBreakIndex(FIZ)I+110
    J  net.sf.jasperreports.engine.fill.TextMeasurer.renderNextLine(Lnet/sf/jasperreports/engine/fill/TextLineWrapper;Ljava/util/List;[I[Lnet/sf/jasperreports/engine/TabStop;[Z)Z
    J  net.sf.jasperreports.engine.fill.TextMeasurer.renderParagraph(Lnet/sf/jasperreports/engine/fill/TextLineWrapper;ILjava/lang/String;)Z
    J  net.sf.jasperreports.engine.fill.TextMeasurer.measure(Lnet/sf/jasperreports/engine/util/JRStyledText;IIZ)Lnet/sf/jasperreports/engine/fill/JRMeasuredText;
    J  net.sf.jasperreports.engine.fill.JRFillTextElement.chopTextElement(I)V
    J  net.sf.jasperreports.engine.fill.JRFillTextField.prepare(IZ)Z
    J  net.sf.jasperreports.engine.fill.JRFillElementContainer.prepareElements(IZ)V
    J  net.sf.jasperreports.engine.fill.JRVerticalFiller.fillDetail()V
    J  net.sf.jasperreports.engine.fill.JRVerticalFiller.fillReport()V
    j  net.sf.jasperreports.engine.fill.JRBaseFiller.fill(Ljava/util/Map;)Lnet/sf/jasperreports/engine/JasperPrint;+303
    j  net.sf.jasperreports.engine.fill.JRBaseFiller.fill(Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)Lnet/sf/jasperreports/engine/JasperPrint;+20
    j  net.sf.jasperreports.engine.fill.JRFiller.fill(Lnet/sf/jasperreports/engine/JasperReportsContext;Lnet/sf/jasperreports/engine/JasperReport;Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)Lnet/sf/jasperreports/engine/JasperPrint;+14
    j  net.sf.jasperreports.engine.JasperFillManager.fill(Lnet/sf/jasperreports/engine/JasperReport;Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)Lnet/sf/jasperreports/engine/JasperPrint;+7
    j  net.sf.jasperreports.engine.JasperFillManager.fill(Ljava/lang/String;Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)Lnet/sf/jasperreports/engine/JasperPrint;+35
    j  net.sf.jasperreports.engine.JasperRunManager.runToPdfFile(Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)V+15
    j  net.sf.jasperreports.engine.JasperRunManager.runReportToPdfFile(Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Lnet/sf/jasperreports/engine/JRDataSource;)V+7

  • Access Exchange 2013 Calendar from Sharepoint 2013 OWA Web Part

    Hi,
    For the moment I have five User
    Mailboxes on Exchange 2010 whose
    calendars that appear in a SharePoint
    2013 using Outlook Web App Web Part.
    In Exchange 2010, IIS has created a new
    WebSite with OWA, ECP
    and some more Virtual Directories,
    where OWA is Windows Integrated
    and Basic Auth. enabled (not
    FBA).
    This makes so users do not have additional
    logins in SharePoint when they look at
    the calendars.
    I now want to move these mailboxes to an Exchange
    2013. I must then create a new WebSite
    with Win.Integrated etc, but have
    heard it is unsupported. Is there
    any other way to solve this?
    Best Regards

    Hello,
    Sorry for delayed response.
    I recommend you check the Outlook Hotfix and version number again via Control Panel.
    Please check the version number via outlook 2010 "File".
    If the outlook version number is 14.0.7113.5000, please try my above suggestion to specify the SSL certificate principal name. Because XP system is not always to look for the next lines on a SAN certificate.
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

  • Strange action from IIS, when call web application

    When type http://localhos:8090/sendsms.aspx called smssender.aspx and work fine,  when instead localhost write ip address for example
    http://192.168.10.10:8090/sendsms.aspx called smssender.aspx but browser write clients IP address in the screen.
    No Error, No notification only one string for example:
    192.168.10.14
    web site hosting in local IIS.
    what problem?
    Best Regards

    Hi Paata,
    Please post in ASP.NET forums, you could reveive more help from web developers there. 
    Thanks!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How a J2EE web application access CR reports stored on the CR Server XI?

    Hi,
    I'll be working on some crystal report templates that will eventually be hosted/publish on the CR Server XI.
    My questions are:
    1. How my J2EE web application access those reports?
    2. Do my web application uses some CR API for the connectivity and integration?
    3. What will happen to the database connectivity of the report template? since the report are created locally.
    4. Can the report template be edited/updated on the server?
    5. How the CR XI login functionality be involve in the integration (web application ---> CR Server XI)?
    6. Is the J2EE web application be deployed on similar web/application server where the CR Server XI resides?
    7. What is the role of RAS, Universe, Business View Manager to this whole CR integration?
    I hope you can provide some guidance on this journey to Crystal Report world
    Regards,
    Rulix Batistil
    Genesis Networks Pte Ltd
    www.gen-net.com.sg

    1) Your application connects via the Java SDK using the appropriate JAR files.
    2) It can.  You can set the database information at runtime or use the already populated information from Enterprise.
    3) Same as 2.   Typically when you save the report to Enterprise you set up the database information there so that it runs against the database you want without prompting.  You can change this via code to hit whatever equivalent database you want.
    4) Yes.  You would have to use RAS and the RCAPI to accomplish this via code.  You can also make changes in the designer and overwrite the existing report template.
    5) You will log in via code. The information on how to do so is in the SDK documentation, which I will link.
    6) It can be deployed to the same machine as CR Server, though we recommend against that.  Typically you will want to deploy it to a seperate web server and allow it to connect to the CR Server across the network.
    7) RAS can be used to run reports, as well as the page server.  The universe and business view manager are not directly used in code.  If a report runs against a universe or business view then it will use them for data, but you wouldnt do anything with them directly.
    [BOE Developer Library|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm]
    You will find the Java SDK information under the BusinessObjects Enterprise SDK section.
    Best Regards,
    Jason

  • Error when Opening a Crystal Report in a Web Application

    Hi All,
    How are things?
    We are trying to open a Crystal report in a Web Application based on a Web service on Appache Tomcat.
    The report is in the Test Environment poiting to a SQL 2005 Database.
    The report opens and runs fine in Crystal Reports and in Infoview.
    The Web application throws back a long error as shown below.
    Looks to be like a SDK Issue ( Not pretty sure )...
    Could anyone help me out on this?
    STACK TRACE: at BusinessObjects.DSWS.ReportEngine.ReportEngine.GetDocumentInformation(String documentReference, RetrieveMustFillInfo retrieveMustFillInfo, Action[] actions, Navigate navigate, RetrieveData retrieveData) at Service.GetReportWithParms(String rptName, String folderName, String parms, String user, String password, String output, String& strError) MESSAGE: Failed to retrieve binary view of the report. (Error: WRE 02527) CALL STACK TRACE: com.businessobjects.dsws.wsc.common.axis.WSExceptionFactory$ExportReportFailed at com.businessobjects.dsws.wsc.reportengine.Report.getBinaryDocument(Unknown Source) at com.businessobjects.dsws.wsc.reportengine.DocumentAgent.handleGetBinaryView(Unknown Source) at com.businessobjects.dsws.wsc.reportengine.DocumentAgent.handleRetrieveData(Unknown Source) at com.businessobjects.dsws.wsc.reportengine.DocumentAgent.handleActions(Unknown Source) at com.businessobjects.dsws.wsc.reportengine.CrystalReportEngineSoapImpl.getDocumentInformation(Unknown Source) at com.businessobjects.dsws.reportengine.ReportEngineSoapImpl.getDocumentInformation(Unknown Source) at com.businessobjects.dsws.reportengine.ReportEngineSoapSkeleton.getDocumentInformation(Unknown Source) at sun.reflect.GeneratedMethodAccessor155.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:402) at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:309) at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:333) at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71) at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150) at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120) at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:481) at org.apache.axis.server.AxisServer.invoke(AxisServer.java:323) at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:854) at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:339) 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 com.businessobjects.dsws.wsc.common.axis.FlashFilter.doFilter(Unknown Source) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186) 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) Caused by: com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Error in File XYZ.rpt: Failed to retrieve data from the database. Details: [Database Vendor Code: 408 ]---- Error code:-2147215357 Error code name:internal at com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(Unknown Source) at com.crystaldecisions.sdk.occa.managedreports.ps.internal.f.a(Unknown Source) at com.crystaldecisions.sdk.occa.managedreports.ps.internal.f.export(Unknown Source) ... 49 more
    Thanks,
    Raj

    Moving post to .NET SAP Crystal Reports forum
    Hello Scott
    What browser are you using and what is the version of the browser?
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Crystal 10 Reports fail with error: "Load Report Failed"

    Hi,
    this seems to be a mystery. A client has Crystal 10 reports run from a Visual Studio 2003 application  (.NET 1.1) running fine on and old server.
    Once the .NET application is installed on a new Windows 2003 server, all Crystal 10 reports fail with the error message: "Load report failed" Source: CrystalDecisions.CrystalReport.Engine.
    I set the worker process in the application pool to "system admin" and all Crystal reports failed. I had thought it was a security issue. I even removed Crystal 10 and installed Crystall XI Developer Edition and all reports raised the exact same error message from CrystalDecisions.CrystalReport.Engine.
    Crystal does call the stored procedure to retrieve the data but cannot load the PDF. I have used 3 different physical servers, one Win 2003 64-bit and two Win 2003  32-bit and get the same error.
    Help!
    Thanks

    Hi Mak,
    It seems that you are having issue with SDK's.
    Post your question in  Business Objects SDK Application Development  ->
    .NET Development - Crystal Reports Forum.
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all SDK's queries remain in one place and thus can be easily searched in one place.
    Thank you for your understanding,
    Shweta

  • How to access to network shared folder from in-house web application mozilla firefox?

    We are trying to access network shared folder from our in-house application but its not possible. The reason we found was because of security model. Please can you provide solution for this issue.
    Incident Details for shared folder access issue
    Expected behaviour:
    Network shared folders should be opened via all versions of Internet Explorer from an in-house web application.
    Actual behaviour:
    Works fine in IE but not in Mozilla firefox. Refer snapshot.
    Server configuration:
    Web server: Apache
    Operating System: Windows Server 2008 R2
    Image uploaded:
    Network Shared Folder doesn’t open in Mozilla. Uploaded image is from IE it allows to access to network shared folder but not Mozilla.
    No warning or error message is shown.

    Hi,
    If its a shared folder on windows drive with access permission to all, you might get your work done using simple GUI_UPLOAD.
    Have you checked this. Just a thought.
    thnx,
    Ags.

Maybe you are looking for