Images not showing on report in infoview

I have a letterhead report that has multiple pages with members accounts etc. I have a image in Page Header and one in Report Footer. If I run this report with multiple accounts that would bring back say 5 Records(5 Letterheads) on Crystal Reports it works fine but soon as I post and run in infoview the images on show on 1st and 2nd record after that there is a box saying image loading which never loads so if you print out letterheads the image is only on 2 pages the rest have just the account info etc.
Any ideas?

Which version of BO or Crystal Report Server are you using to access InfoView...?
What happens if you SCHEDULE the report in InfoView to Crystal and PDF formats...?

Similar Messages

  • Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Experts,
    I am using Crystal report for Eclipse and also using Struts2 and tiles framework combination.
    The problem is when viewing the report all I've got is red X on all images and the graph image also not showing. This is when I use tiles and my jsp is inside the web-inf folder.
    This is my struts link: href="s:url value='/report/reportOpen.action?report=1'
    I've checked that the path to the viewer generated HTML is not correct. see code below.
    src="../../../crystalreportviewers/js/crviewerinclude.js"
    But when I test to access a simple jsp viewer that resides on the web root folder, this works fine but of course this is not what I want to have. I need to have my banner and menus on top of the report page (using tiles)
    This is my jsp link: href="s:url value='/ReportViewer.jsp?report=1'
    Viewer generated HTML below.
    src="crystalreportviewers/js/crviewerinclude.js"
    This might be a common problem and that you can share to me your solution.
    Note: I removed the script tags because I can't submit this entry.
    Thank you  in advance,
    Regards,
    Rulix Batistil
    Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Saravana,
    After a few experimentation from your idea i was able to figure out the problem and now it is working.
    I don't have to copy the folder to where my jsp resides but still maintains it in the root location:  web/crystalreportviewers
    The changes should always be in web.xml.
    1st: change the crystal_image_uri value to ../crystalreportviewers
    2nd: change crystal_image_use_relative value to "web"
    Change to "web" instead of webapp because that is what I named my web root folder.
    <context-param>
              <param-name>crystal_image_uri</param-name>
              <param-value>../crystalreportviewers</param-value>
         </context-param>
         <context-param>
              <param-name>crystal_image_use_relative</param-name>
              <param-value>web</param-value>
         </context-param>
    Thank you. You showed me the way on how to solve the 3 day problem.
    BTW, my next problem is when clicking on any buttons prev/next/print/export, I got this error HTTP Status 404.
    Well, at least for now I can view my initial report.  I just need to figure out the next issue and with the help of the great people here in the forum.
    Thanks a lot.
    Regards,
    Rulix
    Edited by: Rulix Batistil on Nov 26, 2008 7:27 AM

  • Likely bug with external editing (in CS5 not CS6 beta) and edited image not showing back up in LR

    I have come across something strange today that I've not seen before. I'm running LR 4.0 under Win7 64-bit. I usually use Photoshop CS6 beta as my external editor, but invoke CS5 when I have to use some tools that don't support the beta. Here is the scenario:
    * I have CS5 open
    * I externally edit an image in CS5 and Save it from CS5 when I'm done
    * The edited image does not show up in LR
    * I close LR and reopen it
    * There is the edited image!
    I have duplicated this many times this evening. I don't think I've seen it when I've used CS6 beta.

    Something strange is going on because I had the behavior reported of edited image not showing up after using another filter, Nik Silver Efex Pro 2.

  • Date not showed when report is viewed in PDF .

    Hi,
    We have a text field that shows the date on which the report is running.Date is not showed when report is viewed in PDF.But in HTML we can view them . Can any one help me out?
    Totally there are four pages for the report.

    I have observed the PDF driver iin EPM 11.1.2.x is not up-to-date and technically the Date (Text) is there just like in HTML. However, when you increase the View (Zoom in), it eventually does show up.
    I have chatted with Oracle Support, and they will not address it with a patch for now.

  • BLOB image not shows in JSP page!!

    Hi Dear all,
    I had tried to configure how to show BLOB image to jsp page . The code are works fine and servlet works ok but image can not show only. can you help me that what need to be added. Please help me.
    Can any experts help me? BLOB image not shows in JSP page. I am using ADF11g/DB 10gR2.
    My as Code follows:
    _1. Servlet Config_
        <servlet>
            <servlet-name>images</servlet-name>
            <servlet-class>his.model.ClsImage</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>images</servlet-name>
            <url-pattern>/render_images</url-pattern>
        </servlet-mapping>
      3. class code
    package his.model;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.Map;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.domain.BlobDomain;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class ClsImage extends HttpServlet
      //private static final Log LOG = LogFactory.getLog(ImageServlet.class);
      private static final Log LOG = LogFactory.getLog(ClsImage.class);
      public void init(ServletConfig config)
        throws ServletException
        super.init(config);
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
        throws ServletException, IOException
        System.out.println("GET---From servlet============= !!!");
        String appModuleName = "his.model.ModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleName");
        String appModuleConfig = "TempModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleConfig");
        String voQuery ="select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = 'P1000000000006'" ;// 'P1000000000006' this.getServletConfig().getInitParameter("ImageViewObjectQuery");
        String mimeType = "jpg";//this.getServletConfig().getInitParameter("gif");
        //?IMAGE_NO='P1000000000006'
        //TODO: throw exception if mandatory parameter not set
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName, appModuleConfig);
          ViewObject vo =  am.createViewObjectFromQueryStmt("TempView2", voQuery);
        Map paramMap = request.getParameterMap();
        Iterator paramValues = paramMap.values().iterator();
        int i=0;
        while (paramValues.hasNext())
          // Only one value for a parameter is expected.
          // TODO: If more then 1 parameter is supplied make sure the value is bound to the right bind  
          // variable in the query! Maybe use named variables instead.
          String[] paramValue = (String[])paramValues.next();
          vo.setWhereClauseParam(i, paramValue[0]);
          i++;
       System.out.println("before run============= !!!");
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        System.out.println("after run============= !!!");
        Row product = vo.first();
        //System.out.println("============"+(BlobDomain)product.getAttribute(0));
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null)
          System.out.println("onside product============= !!!");
           // We assume the Blob to be the first a field
           image = (BlobDomain) product.getAttribute(0);
           //System.out.println("onside  run product============= !!!"+image.toString() +"======="+image );
           // Check if there are more fields returned. If so, the second one
           // is considered to hold the mime type
           if ( product.getAttributeCount()> 1 )
              mimeType = (String)product.getAttribute(1);       
        else
          //LOG.warn("No row found to get image from !!!");
          LOG.warn("No row found to get image from !!!");
          return;
        System.out.println("Set Image============= !!!");
        // Set the content-type. Only images are taken into account
        response.setContentType("image/"+ mimeType+ "; charset=windows-1252");
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[4096];
        int nread;
        while ((nread = is.read(buffer)) != -1)
          os.write(buffer, 0, nread);
          //System.out.println("Set Image============= loop!!!"+(is.read(buffer)));
        os.close();
        // Remove the temporary viewobject
        vo.remove();
        // Release the appModule
        Configuration.releaseRootApplicationModule(am, false);
    } 3 . Jsp Tag
    <af:image source="/render_images" shortDesc="Item"/>  Thanks.
    zakir
    ====
    Edited by: Zakir Hossain on Apr 23, 2009 11:19 AM

    Hi here is solution,
    later I will put a project for this solution, right now I am really busy with ADF implementation.
    core changes is to solve my problem:
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        }All code as below:
    Servlet Code*
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response) throws ServletException,
                                                             IOException {
        String appModuleName =
          "his.model.ModuleAssetMgt";
        String appModuleConfig =
          "TempModuleAssetMgt";
      String imgno = request.getParameter("imgno");
        if (imgno == null || imgno.equals(""))
          return;
        String voQuery =
          "select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = '" + imgno + "'";
        String mimeType = "gif";
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName,
                                                    appModuleConfig);
        am.clearVOCaches("TempView2", true);
        ViewObject vo = null;
        String s;
          vo = am.createViewObjectFromQueryStmt("TempView2", voQuery);
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        Row product = vo.first();
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null) {
          // We assume the Blob to be the first a field
          image = (BlobDomain)product.getAttribute(0);
          // Check if there are more fields returned. If so, the second one
          // is considered to hold the mime type
          if (product.getAttributeCount() > 1) {
            mimeType = (String)product.getAttribute(1);
        } else {
          LOG.warn("No row found to get image from !!!");
          return;
        // Set the content-type. Only images are taken into account
        response.setContentType("image/" + mimeType);
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        is.close();
        os.close();
        // Release the appModule
    Configuration.releaseRootApplicationModule(am, true);
    }Jsp Tag
    <h:graphicImage url="/render_images?imgno=#{bindings.ImageNo.inputValue}"
                                                        height="168" width="224"/>

  • Another Images not Showing up thread

    I know there are multiple threads out there about images not showing up on the login page of application express, and I have browsed most of them without success.
    My images folder is in:
    C:\oracle\product\10.1.0\db_1\Apache\Apache\images\
    My dads.conf file has specified:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    Address of missing image in I.E. is:
    http://<host>:7777/i/htmldb/apex_logo.gif
    When I ran @apexins I specified /i/ for the virtual images directory.
    I am running Oracle Database 10gR2, with Oracle HTTP Server that came with the Oracle Database 10g Companion CD Release 2.
    I am using APEX 3.2.
    When I try to go to
    http://<host>:7777/i/
    I get:
    You don't have permission to access /i/ on this server.
    I also cannot login to APEX. When I type my username/password and click the Login button, it does nothing (nothing loads, nothing changes... nothing happens). I don't know if this is related?
    Thank you,
    ~Tom

    I found the problem -
    In my dads.conf file I had:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    When I really needed:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images/"
    Note the end slash after images changed from backslash to forward.
    Silly me.

  • Images not showing in the jlabel/jbutton

    Hello all,
    I've a package in which my cards directory is located along with all my src files and compiled classes. All my images ****.gif files are inside this directory.
    Then I've following the icon object.
    protected static JLabel lblDeck;The following code is used to get the image.
      String imgPath;
         imgPath = isImageExists("imgBG1.gif");
              if (imgPath == "")
              {     // If the image of Card Deck(imgDeck) is not Found
                   lblDeck = new JLabel();
                   lblDeck.setBackground(new Color(0, 64, 128));
                   lblDeck.setOpaque(true);
                   flagImgDeckFound = false;
              } else {
                   // If the image of Card Deck is Found
                   imgDeck     = new ImageIcon(imgPath);
                   lblDeck = new JLabel(imgDeck);
    // Check if the image exists else return "";
      protected String isImageExists(String imgName) {
              java.net.URL imgURL = getClass().getResource("cards/" + imgName);
             if (imgURL != null)
             {     return (imgURL.toString());     }
             else
                  JOptionPane.showMessageDialog(null, "File not Found: " + imgURL);
                  return "";
         }I'm still unable to get the image in the jlabel!
    When i checked the path, it is exactly returning the path of the file.
    But its neither loading the image into the jlabel nor is it returning "".
    This is just the label part i've other jbuttons also. Even they are not displaying any images.

    aLkeshP wrote:
    can everyone see this thread?
    YES FER-CHRISE-SAKE.
    Just how many times do you intend posting the same identical question?
    images not showing in the jlabel/jbutton
    Problem in imageicon
    iconImage on JButton & JLabel
    Re: images not showing in the jlabel/jbutton

  • Subreport dropdownlist does not show any report !!

    Just finished preparing two reports, rpt1 (Master), rpt2(SubReport), each a separate report works well. after that i added subreport control to rpt1 and went to SubReport properties to add rpt2 ... but ( Use this report as subreport  ) did not show
    any report in list.

    Hi,
    What happend if you write in the textbox for subreport path, the path, works? what version of Report Builder do you have?
    Raymundo Chapa, MCTS http://www.inavant.mx/blog http://projectaserverzone.blogspot.com/

  • Images not showing in the report

    Version: Crystal Reports XI
    Hi,
          Currently I have a report that has images from the database (blob) , logo, and images that I inserted in the report. The report is being called by a jsp page. Our crystal server is installed in unix server.
    When we try to run the report thru our  web interface...... the report runs but the images are not showing. it only shows like x image in it.....
    Don't have any idea how to resolve this....... please help

    If you are using Web Service to access Reports through BOXI server, then as per documentation you need to call getImage of ReportEngine with callback handler after you call getDocumentInformation.
    Refer to the developer's guide -
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2/en/devsuite.htm#en/WS_SDK/wssdk_consumer/doc/wssdk_dg/DevelopingConsumerWebApps18.html

  • Dynamic Images not showing on BOXIR3 with SP2 (Linux redhat installation)

    Hi Guys,
    We recently upgraded our BOXI R2 installation to BOXIR3 with SP2 (Linux redhat platform), and we noticed that all our reports icons/logos have just disappeared. 
    What we are trying to do is just to load an image in an OLE Object, the image is referenced by an URL (that is passed through as a parameter).
    We built a very simple testReport.rpt with an OLE Object that has an image URL in it, still it doen't work.
    Notes:
    1 The CrystalReport 2008 where the simple test report is built shows the icon/iamge correctly. However.
    2- CMC and InfoVIew do not show the image.
    3- What I just noticed today is that when I go to CMC/folders/folderxyz//testReport.rpt double click go to Default Settings/Thumbnail the image is there (if I tick Show report thumbnail).
    Any help would be very appreciated (I am just stack).
    Best Regards
    Khalef Bessaih

    moved to BOE forums

  • Records not showing in Report

    Hi All,
    I'am facing peculair issue, We have an issue where inventory is showing in -ve.
    From 2LIS_03_BF we are loading the data to DSO, from DSO again to Cube.
    I can see Reocrds in Cube for a certian Plant , Storage Location and Material combinations....when I gave same selection criteria in Report the records are not shown in Report. I have checked Query designer too if there are any condition applies but there are no conditions as such expet Special Process Indicator K is excluded.
    so i checked Special process indicator for that material but its not K.......its Blank.
    Inorder to recover the issue, I have selectivdely deleted the material, Plant and Storage location combination and reloaded the data to cube and compreessed the request without checking No marker Update.
    Please need inputs here.
    SujanR

    Hi,
    Use 2LIS_03_BX, 2LIS_03_BF, 2LIS_03_UM to 0IC_C03 Cube and design the report.
    Use :See the steps how to load the data to 0IC_C03.
    Treatment of historical full loads with Inventory cube
    Setting up material movement/inventory with limit locking time
    See some importent SAP Notes in Invventory Lods.
    Note 747037 - Update of before images in ODS objects
    Note 752492 - Non cumulative keyfigures are incorrectly allowed in ODS
    Note 581778 - ODS capability of extractors from inventory management
    Note 684465 - BWVORG for purchasing data sources
    Note 417703 - Missing duplicate record during extraction with 2LIS_03_BF
    Note 929378 - 2LIS_03_BF, 2LIS_03_BX, 2LIS_03_UM and BI 2004s
    Note 745788 - Non-cumulative mgmnt in BW  Verifying and correcting data
    Note 352762 - Collective note purchasing extractors and setup
    Note 353042 - Howto Activate transaction key (PROCESSKEY)
    Note 352344 - Process key + reversals in Inventory Management
    Note 586163 - Composite Note on SAP R3 Inventory Management in SAP BW
    Thanks
    Surendra Kumar Reddy Koduru

  • Alias icons in disk images - not showing correctly

    Hi,
    I already posted about this problem on Macworld Forums, so far no answers. Maybe here I'll get some.
    The problem is:
    whenever I download an app from the Internet, it mostly comes as a disk image. And it's OK if the DMG file contains only app and "read me" file. But more often it contains the alias to /Applications folder.
    That's the problem:
    the icon for that alias does not show properly, it always generates some icon with another icon above it. Issuing "Get Info" (Cmd-I) command, and tabbing to the icon, then deleting that annoying icon, restoring to the default one, does not work.
    Any ideas what should I do?
    Thank you.
    iMac SE Graphite   Mac OS X (10.3.9)  

    Hi Sanjin
    So it is more than only disk images but a system wide problem, in that case, a general approach is needed.
    I suggest you run Repair Disk on your start up drive, from your install DVD.
    The startup drive can only be repaired from another drive. Simply loading the install disk is not sufficient. You have to boot from the install disk.
    To do this: Insert the Install Disk 1 into the drive and then select Restart, then continue to hold down the C key until the Apple logo appears.
    This will take you to the installation software, but you do not want to install.
    Select your language, then go up to the top menu bar to Utilities and navigate to the Disk Utilities application.
    Select the start up drive, then follow the instructions in the First Aid pane where you can click on Repair Disk.
    If it finds errors, repeat the process until it reports no errors.
    After these repairs, quit the application, and restart normally.
    Once restarted normally run Repair Permissions. from the Disk Utility application found on your hard drive in Application/Utilities.
    regards roam

  • .gif Images not showing up in IE8

    I have 2 images in my menu bar header that are not showing up in my header for some reason.  They show up in IE9, Firefox, Safari, and Chrome.  But for some reason they aren't showing up properly in IE8.  I'm not sure what the problem is.  Every page on the website has this problem.  Below is a link to one of the pages. 
    http://www.ibewlu220.org/_html/_Units/CPNPP/CPNPP.html
    The code in the head section is:
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    The code in the header div is:
      <div class="fltlft">
        <a href="http://www.ibewlu220.org"><img src="../_images/_Logos/IBEW220logo.gif" alt="IBEW LU 220" name="IBEW LU 220" width="240" height="120" id="IBEWLU220" align="left"/></a>
      </div>
      <div class="fltrt">
        <a href="http://www.ibew.org/" target="_blank"><img src="../_images/_Logos/ibew_logo.gif" alt="IBEW" name="IBEW" width="120" height="120" id="IBEWLU220" align="left"/></a>
      </div>
    Thanks for your help.

    When things go wrong, it's almost always a code related issue.  Validate your code and fix reported errors.  You have duplicate usages of the same ID.  And you have name attributes with spaces in them.  IDs and Names must contain single word tokens, no spaces allowed.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.ibewlu220.org%2F_html%2F_Unit s%2FCPNPP%2FCPNPP.html
    Let us know when you get the code cleaned up and we'll take another look.
    Nancy O.

  • Calendar image not showed

    Hi group,
    We are using Novell Access Manager to access to Apex Login Page, everything is working as expected, but calendar images are not showed properly.
    For example:
    Every image is displayed using next path: /portal/i/image_name.gif and it is displayed as expected.
    But calendar images which are referenced by a function using path /i/asfdcldr.gif is not found and it is not showed as expected.
    Does anybody have worked with Novell Access Manager and Oracle Apex together?, we have only this issue util this moment (calendar images are not displayed as expected)
    Any workaround?
    Thanks in advance.
    Kind regards,
    Francisco

    Hi,
    Are you working ona Report?. If so please check the concurrent program definition, it should be PDF or Postscript.
    Thanks,
    Robert

  • CR for VS SP09 - Embedded images not showing in CrystalReportViewer

    Good Morning Everyone,
    I am using Visual Studio 2013 as my IDE, I have installed the CR for VS SP09 and have been able to create a basic web form that displays a report. The report I am using has images embedded in it that display fine within my SAP Crystal Reports 2013 application when I run the report from within it. The images also show up when I export from the web form's crystalreportviewer and print just fine. The problem I am having is more related to the web form report viewer as runtime on the page.
    The web form pulls up the report, the data is there all looks great but the images are not showing.
    I added the following line to my web.config....
    "<add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>"
    but to be honest I do not think the "CrystalImageHandler.aspx exists anywhere on my machine.... am I missing something?
    All help is appreciated, thanks!
    -Zack

    Interesting. My files end up in a subfolder of c:\Windows\Temp (I'm using Windows 7 64-bit). I wonder why they're different? You could use ProcMon to see where the files are going.
    Here's my web.config file, with some password stuff removed. See if you can spot any differences that might be relevant:
    <?xml version="1.0" encoding="utf-8"?>
    <!--
      For more information on how to configure your ASP.NET application, please visit
      http://go.microsoft.com/fwlink/?LinkId=169433
      -->
    <configuration>
      <configSections>
          <sectionGroup name="businessObjects">
            <sectionGroup name="crystalReports">
              <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" />
              <section name="rptBuildProvider" type="CrystalDecisions.Shared.RptBuildProviderHandler, CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, Custom=null" />
            </sectionGroup>
          </sectionGroup>
          <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
      <sectionGroup name="elmah">
          <section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
          <section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
          <section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
          <section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah" />
        </sectionGroup></configSections>
      <businessObjects>
        <crystalReports>
          <crystalReportViewer>
    <!--                <add key="ResourceURI" value="~/crystalreportviewers13" />-->
            <add key="ResourceURI" value="/crystalreportviewers13" />
            <add key="documentView" value="weblayout" />
            <add key="EnableTextClipping" value="true" />
          </crystalReportViewer>
          <rptBuildProvider>
            <add embedRptInResource="true" />
          </rptBuildProvider>
        </crystalReports>
      </businessObjects>
      <appSettings>
        <add key="CrystalImageCleaner-AutoStart" value="true" />
        <add key="CrystalImageCleaner-Sleep" value="60000" />
        <add key="CrystalImageCleaner-Age" value="120000" />
      </appSettings>
      <system.web>
        <compilation debug="true" targetFramework="4.5">
          <assemblies>
            <add assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
            <add assembly="CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
            <add assembly="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
            <add assembly="CrystalDecisions.ReportSource, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
            <add assembly="CrystalDecisions.ReportAppServer.Controllers, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
            <add assembly="CrystalDecisions.ReportAppServer.DataDefModel, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
            <add assembly="CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
            <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
          </assemblies>
        </compilation>
        <httpRuntime targetFramework="4.5" maxRequestLength="1048576" />
        <authentication mode="Forms">
          <forms defaultUrl="~/Default.aspx" loginUrl="~/Account/Login.aspx" slidingExpiration="true" timeout="2880"></forms>
        </authentication>
        <pages>
          <namespaces>
            <add namespace="System.Web.Optimization" />
            <add namespace="Microsoft.AspNet.Identity" />
          </namespaces>
        <controls>
          <add assembly="Microsoft.AspNet.Web.Optimization.WebForms" namespace="Microsoft.AspNet.Web.Optimization.WebForms" tagPrefix="webopt" />
        </controls></pages>
        <membership>
          <providers>
            <!--
            ASP.NET Membership is disabled in this template. Please visit the following link http://go.microsoft.com/fwlink/?LinkId=301889 to learn about the ASP.NET Membership support in this template
            -->
            <clear />
          </providers>
        </membership>
        <profile>
          <providers>
            <!--
            ASP.NET Membership Profile is disabled in this template. Please visit the following link http://go.microsoft.com/fwlink/?LinkId=301889 to learn about the ASP.NET Membership support in this template
            -->
            <clear />
          </providers>
        </profile>
        <roleManager>
          <!--
              ASP.NET Membership Role is disabled in this template. Please visit the following link http://go.microsoft.com/fwlink/?LinkId=301889 to learn about the ASP.NET Membership support in this template
            -->
          <providers>
            <clear />
          </providers>
        </roleManager>
        <!--
                If you are deploying to a cloud environment that has multiple web server instances,
                you should change session state mode from "InProc" to "Custom". In addition,
                change the connection string named "DefaultConnection" to connect to an instance
                of SQL Server (including SQL Azure and SQL  Compact) instead of to SQL Server Express.
          -->
        <sessionState mode="InProc" customProvider="DefaultSessionProvider" timeout="45">
          <providers>
            <add name="DefaultSessionProvider" type="System.Web.Providers.DefaultSessionStateProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" />
          </providers>
        </sessionState>
        <httpHandlers>
          <!-- Temporarily replacing the CR image handler with our own version -->     
          <!-- <add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />-->
        </httpHandlers>
        <httpModules>
          <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
          <add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" />
          <add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" />
        </httpModules>
      </system.web>
      <system.webServer>
        <security>
          <requestFiltering>
            <requestLimits maxAllowedContentLength="1073741824" />
          </requestFiltering>
        </security>
        <handlers>
          <!-- Temporarily replacing the CR image handler with our own version -->
          <!-- <add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode,runtimeVersion4.0" />-->
          <add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler*" type="WebReporting.Code.CrystalImageHandler, WebReporting, Version=1.0.0.0, Culture=neutral" preCondition="integratedMode" />
          <add name="websiteThemeImageHandler" verb="*" path="images/theme/*/theme.png" type="WebReporting.Code.WebsiteThemeImageHandler, WebReporting, Version=1.0.0.0, Culture=neutral" preCondition="managedHandler" />
        </handlers>
        <validation validateIntegratedModeConfiguration="false" />
        <modules>
          <remove name="FormsAuthenticationModule" />
        <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" preCondition="managedHandler" /><add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" preCondition="managedHandler" /><add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" preCondition="managedHandler" /></modules>
      </system.webServer>
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <dependentAssembly>
            <assemblyIdentity name="WebGrease" culture="neutral" publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="Microsoft.AspNet.Identity.Core" publicKeyToken="31bf3856ad364e35" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
          </dependentAssembly>
        </assemblyBinding>
      </runtime>
      <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
          <parameters>
            <parameter value="v11.0" />
          </parameters>
        </defaultConnectionFactory>
        <providers>
          <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
        </providers>
      </entityFramework>
      <elmah>
        <!--
            See http://code.google.com/p/elmah/wiki/SecuringErrorLogPages for
            more information on remote access and securing ELMAH.
        -->
        <security allowRemoteAccess="true" />
      </elmah>
      <!-- NOTE: This section REALLY IS being used! VS or ReSharper might tell you it isn't,
           because nothing matches the path "elmah.axd", but it actually IS being used,
           and is CRITICAL TO SECURITY, so don't remove it!! -->
      <location path="elmah.axd" inheritInChildApplications="false">
        <system.web>
          <httpHandlers>
            <add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
          </httpHandlers>
          <authorization>
            <allow roles="DebugLogViewer" />
            <deny users="*" /> 
          </authorization>
        </system.web>
        <system.webServer>
          <handlers>
            <add name="ELMAH" verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" preCondition="integratedMode" />
          </handlers>
        </system.webServer>
      </location>
    </configuration>

Maybe you are looking for

  • Vendor Reconciliation account change

    Hi All, We want to change the Reconciliation account in the Vendor Master. The vendor has postings to it right now. We want that all the existing postings should be transferred to the new recon account line item wise and the new postings will go to t

  • IMovieHD, "No disc burning drive found" and "The movie could not be sent.."

    First post in these subject forums. I am posting the same problem in iDVD and iMovieHD which were from iLife'05, but I won't post there. I loaded iLife'05 and also managed to get iDVD5 loaded although the packaging indicated that I needed to have a 7

  • In application services i am using entity services

    hi all i have created application services in entity services i have created findAll ()method that method i have accessed in application services by getEntityServices.findAll .and i have made application service as a webservices but when i am testing

  • File manager not working with N900

    XP windows explorer does not regocnize the directory structure in the phone, memory card not visible at all. What could be the reason

  • Icc profiles not recognized when using photoshop with 10.6.5

    Ever since I upgraded to 10.6.5, Photoshop does not recognize the ICC profiles for different papers. The previous version of OS worked fine. How can I get 10.6.5 to recognize these profiles?