CR Viewer tool bar images are missing; Export and Print are not working

Hi There
I used Crystal report 10.5(VS 2008 base crytal report -- CRRedist2008_x86.msi), i developed ASP.net application using VB.net  program(i used .net 3.5). One of the pages in the application is having crystal report viewer, which is calling a crystal report to populate the result. The report is working as expected on development machine (Win Vista). Hence, I moved the application onto Server (Windows Server Web; 32Bit OS and IIS). I installed the CRRedist2008_x86.msi, which added the "aspnet_client" under default website. As my site is a made as an application under default webiste. I tried...
a) By copying the aspnet_client folder into the website folder
b) By adding a virtual directory called "aspnet_client" under my website pointing it into the folder under "default website"
None of the trials are working for me.
When I click on Print or Export buttons (although their images are missing), I get the error sigh on bottom left (status bar) of the browser and the popping up the same giving me below error details
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; HPNTDF; InfoPath.3; MS-RTC LM 8; .NET4.0C)
Timestamp: Tue, 2 Nov 2010 15:11:12 UTC
Message: Object doesn't support this action
Line: 41
Char: 1
Code: 0
URI: http://65.123.xxx.x:37188/xyzweb/(S(uhgxkx45iwlrbancwzfunp55))/reportpage.aspx
Any help in resolving this issue would be greatly appreciated.
Thank You,
Edited by: skbo007 on Nov 2, 2010 4:11 PM

Hello All.
I am excited to let you know that the issue is being resolved.
Here is steps that lead me to resolution and solution..
I installed Fiddler2 and looked into every the debugging details of the transaction while running the report.
Learned that the crystal report is using the aspnet_client foler under "Default website" NOT under the crrent website.
Hence I tried to access the image via http path from local machine
http://myserver/aspnet_client/system_web/2_0_50727/CrystalReportWebFormViewer4/images/toolbar/export.gif.
(Notice, "mysite" folder is been removed)
I was expecting to see the gif on my browsers' body. It gave me an error.
Investigated further more on the error and found that the "Managed Pipe Line" of the respective application pool is to be changed to "Classic" instead of "Integrated"
changed it .. Boom...
Tool bar is showing up with proper images and as well the "Export" and "Print" functions are working as expected..
Hope this helps to those in the same situation.
Again.. this is one of many many solutions on this issues.
Thank You
Edited by: skbo007 on Nov 3, 2010 9:42 PM

Similar Messages

  • Morocco does not support 3D buildings,live trafic, crowdsourcing, and even worse, there is no data: no businesses, no restaurants, no pharmacies , nothing , just roads, and many of them are miss-named, and there are some road missing

    since ios 6, morocco does not support anything , just turn by turn navigation,  and the worse thing, that morocco is empty of data, no businesses, no restaurants , no banks , nothing ,no trafic feature either, it's a disaster , it's not a world wide app yet, is anyone have an information about morocco please

    no. they're "working" on it. it'll be accurate in a few decades.

  • Why are my back and forward buttons not working?

    I have restarted firefox with add-ons disabled and then in safe mode and they worked then but when closed firefox and then restarted it they don't work again. I don't know if one of my kids have done something but I am not sure what to do to fix it.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Export and Print icons missing from report viewer

    I'm currently embedding crystal within a wicket application in which I'm making use of the getHtmlContent() method to retrieve the report's HTML.  For whatever reason, I'm not able to get either the export or print icons (on the top left side of the viewer).  Is this because I'm using the getHtmlContent() method or do I have something misconfigured somewhere?  Setting the setHasExportButton(true) and setHasPrintButton(true) on the report viewer object has no effect. 
    If I run the same report using the generated JSP outside of my application (within tomcat), I see the export/print buttons.  I notice the JSP makes use of the processHttpRequest() method.  Any help will be greatly appreciated.
    Thanks!
    Louis

    Hi Louis
    - The getHtmlContent() method handles the user's request to generate the HTML for the report and returns the HTML as a String.
    Note: Either the getHtmlContent method or the processHttpRequest method can be used to handle the user's request to generate the HTML for the report, depending on how you write your JSP. If the viewer's content is displayed more than once, then the getHtmlContent method is more efficient, because the request is processed once and the resulting HTML string can be used multiple times. In this case, you must set the content type of the HTML, as recommended in the table. Additionally, using getHtmlContent sets setOwnPage to false and disables exporting and printing.
    - The setOwnPage(true) and  processHttpRequest() method should be used if you want the export and print button to appear in the report viewed through Crystal Report Viewer.
    Following is the snippet of code which shows you how to use these 2 methods.
    //Get the IReportSource object from sesion and pass it to the viewer
         IReportSource reportSource = (IReportSource)session.getAttribute("reportSource");
    Create the viewer and render the report -
         //create the CrystalReportViewer object
         CrystalReportViewer oCrystalReportViewer = new CrystalReportViewer();
         //set the reportsource property of the viewer
         oCrystalReportViewer.setReportSource(reportSource);
         //set viewer attributes
         oCrystalReportViewer.setOwnPage(true);
         oCrystalReportViewer.setOwnForm(true);
         //set the CrystalReportViewer print mode
         //oCrystalReportViewer.setPrintMode(CrPrintMode.ACTIVEX);
         oCrystalReportViewer.setPrintMode(CrPrintMode.PDF);
         //process the report
         oCrystalReportViewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);
    Hope this helps you .
    Thanks
    Soni

  • "Missing parameter values."  --  Export and Print only...

    I have a web application and I am using CrystalReportViewer.  I am passing several parameters to Crystal using: 
    report.SetParameterValue(field.Name, Session[field.Name]);
    I have session variables which will hold parameters needed to pass into the report.  The session variables are populated from controls on my webpage after an onclick event.  This even not only populates session, but also passes parameters to the report with the following code: 
    ReportDocument report = new ReportDocument();
    Session["MapPathName"] = "./Reporting/CaseStudy.rpt";
    report.FileName = Server.MapPath(Session["MapPathName"].ToString());
    ParameterFields fields = new CrystalDecisions.Shared.ParameterFields();
    fields = report.ParameterFields;
    foreach (ParameterField field in fields)
          report.SetParameterValue(field.Name, Session[field.Name]);
    CrystalReportViewer1.ReportSource = report;
    This works great for reporting and is very extensible.  However, when clicking on the "Print" or "Export" buttons on the toolbar I get "Missing parameter values."  I attempted to export manually in code using the .ExportToStream function but I still get the error, "Missing parameter values." 
    I received this error also in Refresh, Search, and Navigate functions.  This was corrected by calling a function that supplies the above code block to these functions.  However, I do not see any events for controlling the Print nor the Export events. 
    QUESTION: How can I print or export a report when passing parameters using CrystalReportViewer?  Thanks in advance!
    P.S. - Crystal Reports XI Release 2
    Edited by: KyleSavant on Jun 18, 2009 5:42 PM

    There are no Export or Print events accessible for the viewer
    Since it sounds like you are creating the reportdocument object in your click event, the settings on this object become out of scope on successive postbacks executed by other events.
    to get around this without major changes, you can place your "report" object in session in this event and retrieve it from session on successive postbacks.  This should solve your problems around navigation, printing and exporting.  What you will need to do is check if the session object exists (usually in page_load or page_initialze) and if so, retrieve it from session and bind it to the viewer's reportsource.  If the session object does not exist, then do nothing (ie you have not clicked your button yet that retrieves the parameter values from session and loads the report).  Also, in your click event you can check if the report session object exists and if so, remove it so that it can be re-created with your new parameter values (ie i'm assuming the only time you want to set parameter values is in this event).
    Dan

  • I have TB 24.6.0 and I deleted the menu or tool bar from my address book and I can't figure out how to get it back.

    I am trying to figure out how to efficiently copy a contact so I can add the contact information to an email. While experimenting I unchecked the menu bar or the tool bar from my address book and now I can't figure out how to get it back. So you could say I have two questions for which I would welcome suggestions:
    1. How do I get my menu/tool bar back into my address book?
    2. How can I efficiently copy and paste contact information?
    Thank you
    Rowdy1

    The alt key or F10 will reveal hidden toolbars. Then use View- Toolbars to turn them back on.
    Then press F9 when in a write window to turn on the contact sidebar for access to your address books.

  • Missing Export and Use Drop Down Lists

    I cannot export my .mov files to any format other than .mov as the Export and Use drop down lists are missing. When I go to File > Export the text for Export and Use are there followed by blank gray space as if the drop down lists never existed.
    I just upgraded to Pro today and had infrequently used QuickTime Player previously. I have the most current version 7.6.5. The other functions appear to be working normally, but I am not a "familiar user" so I can't say for sure.
    Any ideas?

    Well I could not copy & paste the text from the Movie Inspector, so I have typed it below (except for the complete source info).
    Source: C:\....Filename.MOV
    Format: 16-bit Integer (Little Endian), Mono, 44.100 KHz
    MPEG-4 Video, 1280 x 720, Millions
    Movie FPS: 30.01
    Playing FPS: 30.01
    Data Size: 8.16 MB
    Data Rate: 6.99 mbits/sec
    Current Time: 00:00:00.00
    Duration: 00:00:09.80
    Normal Size: 1280 x 720 pixels
    Current Size: 1280 x 720 pixels
    I have also downloaded a couple of iPod hip-hop ad movies (.mov) and they have the same problem (no export drop-down lists), so I don't believe it is the movie format.
    I have not tried to uninstall/reinstall QuickTime Pro yet, but wonder if I should....

  • I imported my favorites from Internet Explorer but I need to know how to display my "favorites" in the tool bar so I can access and organize them

    I imported my favorites from Internet Explorer, but how do I display "favorites" in the tool bar so I can access and organize them?

    It did merge them after a fashion, glad I took a backup first even if I did only perhaps create 3 or 4 bookmarks today. So if I have bookmark separators, it's going to figure out which group to put them in (no way). Anyway I thought they would just go down to the bottom of the bookmarks menu like the other method, like when I export and import bookmarks in Firefox where they do go to the end of the Bookmarks Menu folder and would simply delete one folder.
    Anyway this would not be typical because I don't want any bookmarks from IE.

  • After todays adobe upgrade my tool bar went black,! why and how do I fix this. I use windows xp

    after today adobe upgrade my tool bar went black! wha and how do I fix this. I wse windows xp

    I am sorry Frank & Larissa but can you please provide more details regarding the Adobe software or service you are referencing?  You can find a complete list of our available products at http://www.adobe.com/products/catalog/software._sl_id-contentfilter_sl_catalog_sl_software _sl_mostpopular.html.

  • I use to be able to rotate my iPhone and change the view of an image, Web page, email, and so on, from portrait to landscape, but after update, I cannot. I can only view in portrait mode. Anybody know what's up with that?

    I use to be able to rotate my iPhone and change the view of an image, Web page, email, and so on, from portrait to landscape, but after update, I cannot. I can only view in portrait mode. Anybody know what’s up with that?

    You need to do the basic troubleshooting steps described in the User Guide, Appendix B.
    Restart phone
    Reset phone
    Restore in iTunes using a backup
    Restore in iTunes as new, without using a backup
    If restoring as new doesn't help, there is a hardware failure in the phone that needs evaluation by Apple.

  • I had over 7000 images stored in Lightroom and they are no longer there. What happened to them and how do I get them back?

    I had over 7000 images stored in Lightroom and they are no longer there. Do images automatically delete after a certain number? How do I get my images back?

    It'll be something you have done. Think back to recent things you may have done. For example, might you have created a new catalogue? Anything listed under File > Open Recent?

  • Export and Import are not supported on 10g databases for users logged

    Hi
    I having the below written error, when i want to export or import my database. I having Standalone system using windows xp.
    Role Error - Export and Import are not supported on 10g databases for users logged in with the SYSDBA role. Logout and login using a different role before trying again.

    Actually i ma new to EM...
    When I want to Import any thing He is asking abt the HOST CREDENTIALS
    I can't undrstatnd wht he is asking????
    Host Credentials
    * Username          
    * Password          
              Save as Preferred Credential
    It Genrate the below error
    Error - ERROR: Wrong password for user

  • There is no Google tool bar for firefox 5.0 and i want to re-install an older version of firefox so I can use the Google tool bar. please give a link to an older version or make Google update the tool bar:)

    There is no Google tool bar for firefox 5.0 and i want to re-install an older version of firefox so I can use the Google tool bar. please give a link to an older version or make Google update the tool bar:)

    You can try this extension to override compatibility issues,
    * https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/
    Once it is installed, open Addons Manager and re-enable Google Toolbar.
    Addons Manager URL: &nbsp;&nbsp;&nbsp;'''about:addons'''

  • I have downloaded OS x 10.9.5 and it has not worked and my system (mimi mac the original version) doesn't allow me to see the tool bar etc?? how do I reboot it without losing everything?

    I have downloaded OS x 10.9.5 and it has not worked and my system (mimi mac the original version) doesn't allow me to see the tool bar etc?? how do I reboot it without losing everything?

    You're talking about the dock?
    To check on that, go to System Preferences > Dock > indicate your preference.
    I can get iTunes up, and safari, but i don't know how
    Not sure what you mean - if you can "get it up" - does that mean you can launch it? What do you not know?

  • Im running mac OS X version 10.5.8 and i have ichat in the tool bar, i click on it and it doesn't open does this mean i can't run it?

    im running mac OS X version 10.5.8 and i have ichat in the tool bar, i click on it and it doesn't open does this mean i can't run it?

    Try opening it from your Applications Folder.

Maybe you are looking for

  • Opening a Word doc

    Hello all, I am new to Flex.  I have some experience with AS3 (still switching over from AS2). Anyway, I am making a Flex project where I have a text link in a datagrid.  This link needs to open a word document that is on our company network.  Curren

  • Unicode Conversion: Building Target System in Advance

    I already successfully ran ./distribution_monitor.sh -p on the source and have generated the relevant files (i.e., DBSIZE.TPL, DDLORA.TPL, and LABEL.ASC).  Per the 'Distribution Monitor 1.9.1 Users' Guide, section 11.2.1, it says to select the "SAPin

  • Video podcasts not showing in podcast menu

    my video podcasts are not showing up on ipod touch when I sync. They are on the ipod, cause when I search, they show up under podcast header (so they are not mis-labelled as music or anything), but they do not show up in the podcast menu. This applie

  • Iphoto '08 keeps rebuilding cache every time i open it.

    Hi there, I'm currently using the Macbook late 2008 aluminium model. Recently I've reformatted my mac and then transferred my photos from a previous backup. However, after doing so, every time i open iPhoto, keeps on rebuilding the cache, not even as

  • Siebel Publisher Integration

    Hi, I am trying to cretate the updated PublicReportService by importing WSDL in Siebel Tools. Unfortunately, I get the following error: Method 'SetFieldValue' of business component 'Repository Business Service Method Arg' (integration component 'Repo