Communicating with internet explorer

hi, I want my program to communicate with internet explorer, such as making it reload a page, change the address that sort of thing. I don't know how to make my program talk to internet explorer, can anyone help? or point me in the right direction? Thanks

you can't do this directly... what you should look into is controlling IE through activeX components, and then see if you can tie those into Java

Similar Messages

  • Export to Excel Fails with "Internet Explorer cannot display the webpage"

    We have a couple of report servers all hosted internally on VMs.  They are all SSRS 2008 R2.
    For all of these, when viewing the reports remotely in IE, they run fine.  However when we try to export them to excel, a new tab opens in IE, but the tab just displays with "Internet Explorer cannot display the webpage"
    There are no other errors and it never progresses to save or open. 
    THE SSRS log files dont contain any errors either so i dont think its a resource issue, but they do say steam=''
    library!ReportServer_0-1!11cc!03/11/2014-08:49:24:: i INFO: RenderForNewSession('/ReportsMain/Test/Production Report')
     webserver!ReportServer_0-1!11cc!03/11/2014-08:49:27:: i INFO: Processed report. Report='/ReportsMain/Test/Production Report', Stream=''
     library!ReportServer_0-1!11d4!03/11/2014-08:49:31:: i INFO: RenderFromSession('/ReportsMain/Test/Production Report')
     webserver!ReportServer_0-1!11d4!03/11/2014-08:49:31:: i INFO: Processed report. Report='/ReportsMain/Test/Production Report', Stream=''
     library!ReportServer_0-1!7a0!03/11/2014-08:49:44:: i INFO: RenderFromSession('/ReportsMain/Test/Production Report')
     webserver!ReportServer_0-1!7a0!03/11/2014-08:49:45:: i INFO: Processed report. Report='/ReportsMain/Test/Production Report', Stream=''
     library!ReportServer_0-1!624!03/11/2014-08:51:05:: i INFO: RenderFromSession('/ReportsMain/Test/Production Report')
     webserver!ReportServer_0-1!624!03/11/2014-08:51:05:: i INFO: Processed report. Report='/ReportsMain/Test/Production Report', Stream=''
     library!ReportServer_0-1!18d0!03/11/2014-08:51:06:: i INFO: RenderFromSession('/ReportsMain/Test/Production Report')
     webserver!ReportServer_0-1!18d0!03/11/2014-08:51:07:: i INFO: Processed report. Report='/ReportsMain/Test/Production Report', Stream=''
     library!ReportServer_0-1!7a0!03/11/2014-08:51:34:: i INFO: RenderFromSession('/ReportsMain/Test/Production Report')
     webserver!ReportServer_0-1!7a0!03/11/2014-08:51:34:: i INFO: Processed report. Report='/ReportsMain/Test/Production Report', Stream=''
     library!ReportServer_0-1!1610!03/11/2014-08:51:38:: i INFO: RenderFromSession('/ReportsMain/Test/Production Report')
     webserver!ReportServer_0-1!1610!03/11/2014-08:51:39:: i INFO: Processed report. Report='/ReportsMain/Test/Production Report', Stream=''
     library!ReportServer_0-1!624!03/11/2014-08:51:49:: i INFO: RenderFromSession('/ReportsMain/Test/Production Report')
     webserver!ReportServer_0-1!624!03/11/2014-08:51:49:: i INFO: Processed report. Report='/ReportsMain/Test/Production Report', Stream=''
     library!ReportServer_0-1!11d4!03/11/2014-08:52:14:: i INFO: RenderFromSession('/ReportsMain/Test/Production Report')
     webserver!ReportServer_0-1!11d4!03/11/2014-08:52:14:: i INFO: Processed report. Report='/ReportsMain/Test/Production Report', Stream=''
     library!WindowsService_0!3c8!03/11/2014-08:52:28:: i INFO: Call to CleanBatch()
     library!WindowsService_0!3c8!03/11/2014-08:52:28:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.
     library!WindowsService_0!3c8!03/11/2014-08:52:28:: i INFO: Call to CleanBatch() ends
     library!ReportServer_0-1!11cc!03/11/2014-08:55:29:: i INFO: RenderFromSession('/ReportsMain/Test/Production Report')
     webserver!ReportServer_0-1!11cc!03/11/2014-08:55:29:: i INFO: Processed report. Report='/ReportsMain/Test/Production Report', Stream=''
    Does anyone have any suggestions?

    Hello,
    Since you have motioned that it is work well in IE7 on the VM. We can try to enable the compatibility view of the IE to troubleshooting the issue.
    Reference: http://support.microsoft.com/kb/2536204
    Based on your description, the issue is just occur when view the report remotely. The issue may relate to Internet Explorer, please refer to the following methods:
    Run the Network Diagnostics tool in Internet Explorer.
    Reset the modem or the router.
    Use the Delete Browsing History feature.
    Use the Internet Explorer (No Add-ons) mode.
    More detail information, please refer to the similar issue below:
    http://answers.microsoft.com/en-us/ie/forum/ie8-windows_other/internet-explorer-cannot-display-the-webpage/c8a0b157-820a-4a14-80f3-806ab51717fa
    Hope this helps.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Why does my Web Handler work with Internet Explorer, but not with Firefox

    I am trying to develop a web page that uses the Simile Timeline (http://code.google.com/p/simile-widgets/wiki/Timeline) with data from SQL Server.
    In initial testing of my timeline I tested it with Example.xml, a static XML file in the correct format to be event data. I wrote the following in the appropriate place within mytimeline's Javascript: -
    var WebHandler = "Example.xml"
    tl.loadXML(WebHandler, function (xml, url) { eventSourceFamily.loadXML(xml, url) });
    This worked fine with both Firefox and Internet Explorer. I then changed the assignment to
    var WebHandler = "GDBTimeline.ashx?Type=Family&Userid=" + getControlValue("input", "hdnUser");
    so that invoked a web handler that could look up the SQL database and return the XML that I wanted, and wrote this web handler.
    This works perfectly with Internet Explorer, but with FireFox the timeline band is blank. Yet when I examine the http traffic with Fiddler2 (http://www.fiddler2.com/fiddler2/) I see that with either browser there is a response from URL
    /GDB_pages/GDBTimeline.ashx?Type=Family&Userid=robertb
    that returns the XML that it is supposed to.
    I have previously used web handlers with Firefox before, with no problems. The Fiddler results conclusively show that the web handler is invoked, and returns the appropriate XML, and this XML is identical to the XML from the static test with Example.xml.
    Where do I start looking for answers? I don't even know if this is a Simile problem, a Firefox problem, or an ASP.NET problem.
    Thank you, Robert.

    Problem solved. The issue: Content Type was not correct.
    Visual Studio creates the web handler with dummy code like this: -
    Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
    context.Response.ContentType = "text/plain"
    context.Response.Write("Hello World")
    End Sub
    I wrote a database query that set a string variable to the XML I wanted: -
    Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
    Dim Outstring as string
    ' my logic to fill Outstring with XML
    context.Response.ContentType = "text/plain"
    context.Response.Write(Outstring)
    End Sub
    This works with Internet Explorer. However it's not strictly correct: to make it work with other browsers as well,
    context.Response.ContentType = "text/plain"
    should be
    context.Response.ContentType = "text/xml"
    It now works with IE, FF, and Chrome, and presumably all others.

  • Cannot print due to error message--printer working with Internet Explorer--How do I correct?

    Last week printer worked fine with Firefox.
    This week a message comes back "an error occurred while printing".
    Printer works fine with Internet Explorer.

    To test how Firefox runs "uncustomized" on your system, could you do a two-minute experiment?
    '''Create a new Firefox profile'''
    A new profile will have your system-installed plugins (e.g., Flash) and extensions (e.g., security suite toolbars), but no themes, other extensions, or other customizations. It also should have completely fresh settings databases and a fresh cache folder.
    Exit Firefox and start up in the Profile Manager using Start > search box (or Run):
    firefox.exe -P
    Any time you want to switch profiles, exit Firefox and return to this dialog.
    You'll click the Create Profile button. I recommend using the default location suggested (i.e., just ignore the option to choose a different folder). Then start Firefox in the new profile you created.
    Can you print?
    When returning to the Profile Manager, you might be tempted to use the Delete Profile button. But... it's a bit too easy to accidentally delete your "real" profile, so I recommend resisting the temptation. If you do want to clean up later, I suggest making a backup of all your profiles first in case something were to go wrong.

  • How to use multiple JREs (1.5.0_20 and 1.6.0_07) with Internet Explorer 8?

    Hi!
    Question about the problem mentioned in subject.
    I have configured that JNLP opens with 1.5 version, both versions are enabled in Java Control Panel Runtime Settings but when I try to start a desktop java console says:
    Java Web Start 1.5.0_22
    Using JRE version 1.6.0_07 Java HotSpot(TM) Client VM
    And the opening of the desktop creates an exception:
    Java Web Start - Invalid Argument Error
    TooManyArgumentsException[ Too many arguments supplied: {C:\WINDOWS\Temporary, Internet, Files\Content.IE5\....
    I'm trying to open my desktop with 1.5 version and other programs with 1.6 version. What is it that I still need to do? I'm kind of confused with this. Some of my collagues have succeeded with this and some doesn't, with the same configuration.
    So the question is, how to use multiple JREs with IE8 so that one application uses 1.5 version and others 1.6 version?
    Br,
    Katri
    Edited by: ka**** on 09-Mar-2011 01:16
    Edited by: ka**** on 09-Mar-2011 03:16

    ka**** wrote:
    ..Question about the problem mentioned in subject.No "Using multiple JREs (1.5.0_20 and 1.6.0_07) with Internet Explorer 8" is a statement. To transform it to a question would be something like "How to use multiple JREs (1.5.0_20 and 1.6.0_07) with Internet Explorer 8?".
    Once you can come up with an actual question, I might look at this more closely.

  • Authentication issues on Windows 7 with Internet Explorer 8 (Crystal 2008)

    Hi,
    We are in the process of migrating from Windows XP to Windows 7 (with Internet Explorer 8).
    I have noticed that a web application which depends on Crystal 2008 is behaving differently in the new environment. For example, when I try to load a report I get this error:
    Access to report file denied. Another program may be using it.
    I know that this error can be caused by a permissions problem on the Windows temp folder, and I know there are various ways of pinpointing the exact permissions problem and various ways of resolving if that's the case. The fix that worked for us in Windows XP does not seem to work in Windows 7. My gut feeling is that IE is passing credential in some way differently from how it did before.
    Since many aspects of security are so different in Windows 7 compared with XP, I was hoping to find some general guidelines from SAP/Crystal re: how to deploy or configure the client/server in this environment.
    Are there any general guidelines available?
    Thank you for any help... shannon

    Hi Shannon,
    Not really, CR assumes it can access all of it's dependencies so it is a permission issue. Other than the usual config issues with IIS, full access to the      emp folder, full permissions on the Viewer folder, setting the framework in App pool correctly, etc.
    Do you have Service Pack 3 installed for Cr 2008 and the latest Fix Pack 3.5?
    https://smpdl.sap-ag.de/~sapidp/012002523100009989492010E/cr2008_sp3_fullbuild.zip ( requires uninstall first -  keycode is required )
    Incremental for SP2 - https://smpdl.sap-ag.de/~sapidp/012002523100007123572010E/cr2008_sp3.exe
    Fix Pack: https://smpdl.sap-ag.de/~sapidp/012002523100006341722011E/cr2008fp35.exe
    References for WEB app's:
    [Crystal Report Viewers in Visual Studio .NET u2013 Toolbar Images|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/50aa68c0-82dd-2b10-42bf-e5502b45cd3a]
    This one could be a great reference also:
    [Deploying Crystal Reports 10 .NET Applications|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/30c6d7c6-7164-2b10-90b8-d6020b116f4d]
    You could also use Process Monitor from Microsoft and scan the log file for Access Denied on the IIS Process.
    And also search [Microsoft's Forums|http://social.msdn.microsoft.com/Search/en-US?query=iis%207%20configuration%20and%20security&Refinement=123&ac=3] on how to:
    Thank you
    Don

  • Youtube not running in firefox, but works with internet explorer

    when i open you tube in Firefox, it does not run the videos. however the same runs good with internet explorer. a few weeks back the videos were running quite good with Firefox also.

    Hi,
    You can try to '''Clear Now''' the '''Cache''', '''Cookies''', and '''Site Preferences''' in '''Tools''' ('''Alt''' + '''T''') > [https://support.mozilla.org/en-US/kb/Clear%20Recent%20History Clear Recent History] as well as '''Delete all''' in the Windows '''Control Panel''' > '''Flash Player''' > '''Storage''' tab.
    If you have security software (antivirus, firewall etc.) installed, you can try deleting all existing instances of Firefox and its related files in all the different configuration areas/modules of the security software. Instead create new allow/trusted rules for Firefox + its related processes. Even otherwise the security software may also ask again when Firefox is started and you can try to allow/trust at that time. Please see [https://support.mozilla.org/en-US/kb/Firewalls this].
    [http://kb.mozillazine.org/Firewalls AV/Firewalls Configuration]

  • Adobe reader x does not work while in firefox but works with internet explorer

    while in firefox 6.0 i cannot open pdf files with adobe reader x. how do configure firefox correctly as i have no problem with internet explorer opening pdf files? os is win7 ultimate.

    See [https://support.mozilla.com/en-US/kb/Opening%20PDF%20files%20within%20Firefox Opening PDF files within Firefox]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Adobe FlashPlayer paired with Internet Explorer 8 shows Plug-In version Not Installed?

    Active X version is 11.7.700.202 I am being told that for a new program (Remedy) we are going to be using that the Plug-In version needs installed or the web-based application will not work.  Is there any way to install the Plug-In version in addition to the Active X Version when paired with Internet Explorer?

    You can download the plugin installer from http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_header (under the heading Progress bar hangs...).

  • I can not get the flash player plug in to work with Internet Explorer

    I can not get the flash player plug in to work with Internet Explorer

    Zoltan71 wrote:
    I just bought this computer. My Internet Explorer is version 11.0.1
    I have the box checked to Install new version automatically, but it has not done any upgrading.
    I can't get the computer to update anything as far as I can see.
    The flash plug in does work with the Crome browser but it will not work with Internet explorer.
    I looked in the manage add-ons and it says enabled.
    I also went into the safety tab and deselected
    Active X filtering.
    Restarted and still does not work.
    I need help.....
    Chrome uses a different and separate plug-in.
    There are things about IE you need to know, especially 11. Specifically:
    "User-Agent Strings"
    That doesn't mean a lot, I'm sure, but it's the root of your problems, and Flash Player has nothing to do with it.
    Microsoft "rewrote" the User-Agent Strings for the abomination they call their latest and greatest browser. User-Agent Strings are what websites use to identify the browser you're using and provide the proper content for it's browser engine, like ActiveX stuff, and Flash or HTML5 video. Thanks to the geniuses in Redmond, WA, the User-Agent Strings for IE11 (which has a Trident engine), ID it as either "Gecko" (Firefox) or "Webkit" (Chrome). Problem is: when the site the directs to the content for one of these two engines, the Trident engine in IE can't intepret it and the site then sees IE as an "unidentified" browser.
    The problem with an unidentified browser is that the plug-ins in that browser aren't recognized either, so even though you're up to date, it says you need the latest Flash Player when you use IE11. YouTube... has converted to HTML5 video so if it doesn't detect Flash Player, it can display HTML5 (MP4) video which requires no plug-in to play. Facebook can't do that, because HTML5 doesn't apply to games... only video.
    Microsoft has no plans to "fix" the mess they've created because they think it's a great idea to block you out of the websites you visit.
    They recommend using "Compatibility View" and pretending that you're using an older verison of IE... Problem with that is that it's seen limited success, and you have to enable it for EVERY page that has problems... individually.
    I'm not big on "pretending" so I recommend actually using another browser.
    Firefox (from Mozilla)
    Opera (from Opera)
    Safari (from Apple)
    Chrome (from Google)
    ANY of those will work where IE11 won't, with the Flash Player Plug-in (For all other browsers), and Chrome doesn't even need that because it has its own Flash Player plugin built in.

  • Printing problem in 2 programs started 2 days ago, only firefox ,works fine with Internet Explorer?

    Banking web site has a "Print - Friendly View", text on the upper right side of the page which prints out the account information in a different format if you click on the text. All other print functions work ok. The problem is not their when using Internet Explorer. The other program is at Aflacs Web site, and the problem is very similar. When I click on the text that says "Print copy of Invoice" nothing happens, just like the bank text. They both work perfect with Internet Explorer. The problem started about 2 days ago. When it works right, a window will open up and show you what it is going to print and you click on the "print" text, and it prints. Any help with this problem will be greatly appreciated.
    Thank You
    Joe Anderson

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    When in Safe Mode... <br />
    * The status of plug-ins is not affected.
    * Custom preferences are not affected.
    * All extensions are disabled.
    * The default theme is used, without a persona.
    * userChrome.css and userContent.css are ignored.
    * The default toolbar layout is used.
    * The JIT Javascript compiler is disabled.
    * Hardware acceleration is disabled.
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Website won't open on firefox but will with internet explorer

    Firefox tells me that the Foxnews website page can't be found.
    I can open it in with internet explorer.
    Is this a political thing because it just started a few days ago and doesn't affect any other site?

    See:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    * You can see the permissions for the domain in the current tab in Tools > Page Info > Permissions
    * You can see all exceptions in Tools > Options > Content: Load Images > Exceptions
    * You can check the Tools > Page Info > Media tab for blocked images (scroll through all the images)

  • Flash player work with Safari, but not with Internet Explorer

    My flash player had a problem so I uninstalled it.  I had a problem downloading the player with Internet Explorer, so I successfully download it with Safari.  The player works fine with Safari, but I cannot get it to work with Internet Explorer 8.
    I used to have the Flash Player 10 Active X (10.1.85.3), which I had uninstalled.
    I now have the Flash Player 10 Plugin (10.1.85/3)
    The problem I had downloading the player with IE was that the "allow Active X" information bar never appeared and I was unable to see any download at all.
    How do I get flash to work with my Internet Explorer 8 (8.0.7600.16385)?

    This adobe web site worked easily for me, when I needed to install adobe flash JUST for IE8.
    http://get.adobe.com/flashplayer/otherversions/
    All you need to do is choose your OS in the top window, then in the bottom window choose "Adobe Flash Player 10.1 for Windows Internet Explorer", and voila, that is what adobe installs!! Give it a go. I had problems too, before I foud this. Diligent

  • Adobe flash crashes in Firefox but not with Internet Explorer

    I don't wish to go back to an earlier version of Adobe flash as the earlier version caused other problems.i.e. with RealPlayer. Why is it that the latest Adobe flash works perfectly with Internet Explorer but will not work with Firefox.
    Is there any way I can get it to work with Firefox, rather than when the problem occurs having to download IE and start again?
    Would appreciate your advice. Thanks

    #Try disabling Flash Players protected mode.
    #*http://kb.mozillazine.org/Flash#Flash_Player_11.3_Protected_Mode_-_Windows
    #*http://kb.mozillazine.org/Flash#Flash_Player_11.3_Protected_Mode_-_Windows
    #* both of the above articles will be worth scrolling through for information and linked articles.
    #Also ensure Real Player related software is fully updated, and check the RealPlayer support forum for any recently reported issues. Maybe ask yourself if you find nothing.
    Also try with hardware acceleration turned on or turned off. Use both the Firefox control and the FlashPlayer control for that setting.
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems#w_turn-off-hardware-acceleration]]'''#w_turn-off-hardware-acceleration'''
    * http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html <br/>N.B Adobe control panel also available from right click of the playing video.

  • Since I downloaded Firefox 4, I can't see attachments in my Yahoo mail. This is not a problem of Yahoo, because with Internet Explorer works fine. What is the problem?

    Question
    Since I downloaded Firefox 4, I can't see attachments in my Yahoo mail. This is not a problem of Yahoo, because with Internet Explorer works fine. What is the problem?

    Ok, now they are showing. I restarted my computer again and they are showing now.

Maybe you are looking for

  • Sort negative amount in webdynpro ABAP (EHP5)

    Hello, We ahve recently installed EHP5. We are now re-implementing Enterprise Compensation Management (ECM) with the new WebDynpro ABAP MSS iViews. We have the following issue: one of our column in the compensation planing iView displays positive and

  • Question about monitors

    Im trying to find a good monitor to use at home for Graphic Design, Web Design and 3D animation. I have 2 x 20" Samsung displays that are only 1600x900 res.  I found a couple of brands that Im considering but would like feedback if anyone has used or

  • Query taking more than 1/2 hour for 80 million rows in fact table

    Hi All, I am stuck in this query as it it taking more than 35 mins to execute for 80 million rows. My SLA is less than 30 mins for 160 million rows i.e. double the number. Below is the query and the Execution Plan. SELECT txn_id AS txn_id, acntng_ent

  • Problem with starting database after aborting backup

    Hello, I have following problem. I tried to do my first backup with EM. I switch my database to ARCHIVELOG mode then set location for archive redo logs to recovery flash area. Then EM asked me to make a backup. I accidentally clicked button refresh.

  • Recovery Media not Working after Hard Drive Replacement

    I have replaced the hard drive in my dad's Sat C655-S5225.  When I run the recovery disk I get an 03-FFFF-0000 error.  Please help!