Pb with new JRE version

Hi everybody,
I have problem of security like other people in this forum.
I follow instructions of harmmeijer in his post 524815.
This solved my pb but I discovered an other one ...
Shortly : I had some pb with security access.
I put calls from JavaScript to Java in a thread and it works.
I tested with a name in place of IP Adress (e.g. http://localhost/myservlet in place of http://192.168.0.1/myservlet) and it doesn't work anymore but not at the same place.
Now it is Java to JavaScript calls which cause exception : netscape.javascript.JSException
(it is the only stack Trace !)
The call which causes this exception is :
sFunction = "putHTML"
aoParam = {myFrame, myHTML}
JSObject win = JSObject.getWindow(this);
win.call(sFunction, aoParam);
(Note that I have more Frames and the result is the same for all frames : "Page can not be displayed")
If you have an idea ...
Thanks in advance,
Rafax.

Because nobody answeres, I think I was not enough explicit ...
Some precisions to explicit my problem :
on Win 2000 and Win XP sp1, JVM 1.4.2_01 and upper : When I call Javascript from a thread in Java => the call to a javascript method "top.frames[myWindow].frames[myFrame].document.write(sDATA) " gives me a " Page can not be displayed " ("Impossible d'afficher la page" in French), only if my URL is like http://myMachine/myServlet (If I use http://myIP/myServlet, it works).
on Win XP sp2, JVM 1.4.2_01 and upper : Same problem with the 2 methods of call (http://myMachine/myServlet and http://myIP/myServlet)
Any comment would be appreciated,
Rafax.

Similar Messages

  • Issues with using the output redirection character with newer NXOS versions?

    Has anyone seen any issues with using the output redirection character with newer NXOS versions?
    Am receiving "Error 0x40870004 while copying."
    Simply copying a file from bootflash to tftp is ok.
    This occurs for both 3CDaemon and Tftpd32 softwares.
    Have tried it on multiple switches - same issue.
    Any known bugs?
    thanks!
    The following is an example of bad (NXOS4.1.1b) and good (SANOS3.2.1a)
    MDS2# sho ver | inc system
      system:    version 4.1(1b)
      system image file is:    bootflash:///m9200-s2ek9-mz.4.1.1b.bin
      system compile time:     10/7/2008 13:00:00 [10/11/2008 09:52:55]
    MDS2# sh int br > tftp://10.73.54.194
    Trying to connect to tftp server......
    Connection to server Established. Copying Started.....
    TFTP put operation failed:Access violation
    Error 0x40870004 while copying tftp://10.73.54.194/
    MDS2# copy bootflash:cpu_logfile tftp://10.73.54.194
    Trying to connect to tftp server......
    Connection to server Established. Copying Started.....
    |
    TFTP put operation was successful
    MDS2#
    ck-ci9216-001# sho ver | inc system
      system:    version 3.2(1a)
      system image file is:    bootflash:/m9200-ek9-mz.3.2.1a.bin
      system compile time:     9/25/2007 18:00:00 [10/06/2007 06:46:51]
    ck-ci9216-001# sh int br > tftp://10.73.54.194
    Trying to connect to tftp server......
    |
    TFTP put operation was successful

    Please check with new version of TFTPD 32 server. The error may be due to older version of TFPT server, the new version available solved this error. Files are getting uploaded with no issues.
    1. Download tftpd32b.zip from:
    http://tftpd32.jounin.net/tftpd32_download.html
    2. Copy the tftpd32b.zip file into an empty directory and extract it.
    3. Copy the file you want to transver into the directory containing tftpd32.exe.
    4. Run tftpd32.exe from that directory. The "Base Directory" field should show the path to the directory containing the file you want to transfer.
    At this point, the tftpserver is ready to begin serving files. As devices request files, the main tftpd32 window will log the requests.
    Best Regards...

  • My ipod 5.1.1 (9B206) will not sync with new Itunes version 12.0.1.26. Can anyone help

    My ipod touch 3rd generation OS  5.1.1 (9B206) will not sync with new Itunes version 12.0.1.26. Can anyone help

    What exactly happens when you try to sync?
    Does iTunes see the iPod?
    Was the iPod previous synced to another iTunes library/computer?
    Have you successfully synced from this iTunes library/computer before?
    If so have you done anything like update iTunes on the computer since it last successfully synced?
    Do the songs play in iTunes?          
    Does any media now sync to the iPod?
    Do you have the right boxes checked to sync?
    iTunes: Syncing media content to iOS devices and iPod       
    Try syncing using the manual method                
    Managing content manually on iPhone, iPad, and iPod
    If iTunes does not see the iPod:
    iOS: Device not recognized in iTunes for Mac OS X
    Or
    See
    iOS: Device not recognized in iTunes for Windows
    - I would start with
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or                     
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Features app in the Window Control Panel. Then reinstall all the Apple software components
    - Then do the other actions of:
    iOS: Device not recognized in iTunes for Windows
    paying special attention to item #5
    - New cable and different USB port
    - Run this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Also see:
    iPod not recognised by windows iTunes
    Troubleshooting issues with iTunes for Windows updates
    - Try on another computer to help determine if computer or iPod problem

  • Pressing Tab key in IE with latest JRE version

    Hi,
    I have question about typing "TAB" key in Java Applet in internet explorer with JRE 1.05_08 or above.
    When I type any key other than "TAB", the function, processEvent, will be called 3 times to process the events: keyPressed, keyTyped and keyReleased. However, when I type "TAB" key, processEvent is only called once to process the event: keyTyped and the focus goes outside the applet.
    Is there any way that the focus won't get lost when typing the "TAB" key?
    Note that this problem only happens in IE browser with JRE 1.05_08 or above. It works well in Firefox and netscape with any JRE version and works well in IE with JRE 1.05_06 and below.
    The following is my code:
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class KeyEventDemo extends Applet implements KeyListener, FocusListener {
         public KeyEventDemo() {
              super();
              addKeyListener(this);
              addFocusListener(this);
         public void keyTyped(KeyEvent e) {
              System.out.println("KEY TYPED: e="+e);
         public void keyPressed(KeyEvent e) {
              System.out.println("KEY PRESSED: e="+e);
         public void keyReleased(KeyEvent e) {
              System.out.println("KEY RELEASED: e="+e);
         public boolean keyDown(Event e, int key) {
              System.out.println("keyDown: e="+e);
              return false;
         public boolean keyUp(Event e, int key) {
              System.out.println("keyUp: e="+e);
              return false;
         public void processEvent(AWTEvent e) {
              System.out.println("processEvent : e="+e);
         public void focusGained(FocusEvent e){System.out.println("FocusGained");}
         public void focusLost(FocusEvent e){System.out.println("FocusLost");}
         public void paint ( Graphics g ){
              this.setBackground ( Color.blue );
         public boolean isFocusTraversable() {
              return true;
         public boolean getFocusTraversalKeysEnabled() {
              return false;
    Thanks very much!

    I apologize - the cross posting snookered me; the solution is provided on:
    http://forum.java.sun.com/thread.jspa?threadID=780250&messageID=4438725#4438725

  • My company software has some incompatibility with newer Firefox versions. They require me to downgrade to version 8. Where can I find the installer for v8?

    My company software has some incompatibility with newer Firefox versions. They require me to downgrade to version 8. Where can I find the installer for v8?

    Hi, sboyack
    '''Firefox (v8) - Windows -'''
    http://fileforum.betanews.com/download/Mozilla-Firefox_v8-for-Windows/1032985422/30
    '''Firefoc (v8) - Mac OS X -'''
    http://fileforum.betanews.com/download/Mozilla-Firefox_v8-for-Mac-OS-X/1032985422/29
    Sincerly,
    Michael
    '''''Follow these links at your own risk'''''

  • Peopletools 822 with newer app version

    we need to setup a new peopletools 822 environment
    but i am not sure if it can works with newer application version?for example HRMS9.0?I can't find any document that mention this situation
    thanks a lot

    The lowest Peopletools version supported within HRMS9 is 8.48, which is perfectly understandable because HRMS9 has been built on PT8.48.
    So, the answer to your question is no, find out more in the following matrix certification Peopletools/application :
    http://blogs.oracle.com/peopletools/gems/ToolsSupport4Apps2.pdf
    Nicolas.

  • Using tag OBJECT on a machine with multiple jre versions

    Dear friends,
    i guess that this question has been already answered, but i can't find the thread with all infos i need.
    So please excuse me if i'm redundant.
    This is my problem:
    i have a web application that runs an applet, embedded in an html page;
    by now the applet is loaded with the standard tag <APPLET>.
    I found many Sun's official pages talking about the use of OBJECT tag to specify the jre version that is supposed to run the applet.
    I tried many ways but i can't reach the way to avoid loading the applet with the latest jre installed on my pc.
    Here is the code of my OBJECT:
    <OBJECT NAME="client" CLASSID="clsid:CAFEEFAC-0014-0002-0009-ABCDEFFEDCBB" HEIGHT="38" WIDTH="335" >
                          <PARAM NAME="NAME" VALUE="client">
                          <PARAM name="type" value="application/x-java-applet;jpi-version=1.4.2_09">
                             <PARAM NAME="CODE" VALUE="it.fabio.client">
                             <PARAM NAME="CODEBASE" VALUE="/myapp">
                             <PARAM NAME="ARCHIVE" VALUE="mylib.jar">          
                   </OBJECT>The machines where the application is deployed have the 1.4.2_09 and the 1.5.0_03 jre versions, but my applet runs only on 1.4.2_09 version.
    So i have to find a way to tell the browser which jre has to be called.
    Thanks in advance for help.
    Regards

    Wait a second...there is more to that error message that I overlooked before.
    There might be something other than just the way I set the CODE and CODEBASE parameters wrong here
    Any ideas?
    Here is the entire messsage:
    load: class DisplayMonoApplet.class not found.
    java.lang.ClassNotFoundException: DisplayMonoApplet.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more

  • Does iTunes update songs I imported from CD with new remixed versions?

    About 10 years ago I imported many CDs into iTunes. One of those albums, released in 2002, was recently remixed by the artist and released as a separate album from the original, both still available separately, even with new cover art. Before I bought the new version I started to listen to the old one, to refresh my brain. But it was definitely playing the new remixed version. The cover art didn't change and the song files in the music folder say the songs were last modified April 30, 2003. I haven't bought the new release at all yet, so I can't think of any other way this happened. Oh, I don't subscribe to Match.

    The article is to download music from your CDs to the iTunes library.
    roaminggnome is right, you can only copy the music from your iPod to the computer if they're purchased form iTunes.
    You may use a third-party software like senuti, ipodrip, etc.

  • Issue with new itunes version

    Dear All,
    i have a really big issue with the new itunes version. I loaded it today. Besides that every single view changed...
    So coming to my issues:
    1. my playlists changed to a status of Middle of 2011
    2. the songs which i loaded since that and are already on my hdd are only available in the icloud... means to listen to it or to put it to a playlist, means that i would have to load the songs again.... which in my case means 660 Songs.... downloading again on my hdd (means roundabout additional 9 GB of data) and last but not least paying for the 9 GB download...
    Is there any chance to link the songs in the playlist again on my hdd, i mean they are still there and i already loaded it down ?!?!?!?!?! In the past it was possible
    Hope somebody can help me... and please apple tune back.... itunes is not an easy to use interface anymore... and honestly after having 3 Ipods, 1 Pad and 2 iphones and von itv, i should think about changes... it is already the second time that Itunes completly destroys my playlists and costs me more money.....
    HELP!!!!!!
    Thax in advance
    Masta1701

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall press on)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Compile with different JRE Version

    Hello!
    Exists some problem compile application using JRE 1.5.0_8 and run with JRE 1.5.0_11?
    Thanks a lot
    Andrew

    Try it and see, I've ran earlier version bytecode on new releases and also compiled old source on new JDK's without any problems before, but then your app is not my app and you may have used something or combinations of somethings that nobody else ever has and it yacks on you.
    Never know until you try it.
    BTW: I'm still running some of my 1.5, 1.4, 1.3, and 1.2 code on 1.6 no problems, but then not all of it is rocket science either.

  • How to find out if my add-ons are compatible with new firefox version before i install?

    Is there a way to discover whether any of my current add-ons will be disabled/incompatible *Before* I upgrade to a newer version of Firefox?
    Whenever I've updated Firefox, I haven't found out until After the new version is installed that my favorite 'must-have' add-on is incompatible and there is no viable/satisfactory alternative to it. The loss of Certain add-ons is, for me, a deal-breaker to upgrading. And it's a royal pain to downgrade to the previous version to retrieve my add-on.
    I don't know if addiction to particular add-on(s) is common - I figure I can't be the only one . . . ?
    It would be So helpful if there were a database or list that shows which add-ons are/are not compatible with which versions of Firefox. Is there such a thing? If not, could one be created?
    Thanks for your help!

    Firefox 9.0.1 is a real old version and is no longer supported - Firefox 24.0 is the current release version.
    Open the Add-0ns manager tab and click on '''More''' for each extension that you have installed. Near the bottom of each "More" there should be a link that will take you to the download page where you can verify compatibility.
    Or use this extension - https://addons.mozilla.org/en-US/firefox/addon/is-it-compatible/ - but I'm not sure how well it will work when you are so many versions 'behind the curve'.

  • Is it possible to replace my W520 screen with new IPS version?

    My W520 laptop continues to give good reliable service. \
    However I now look with envy the latest versions that use IPS screens. This is important to me as I am a pro photographer.
    I would like to know if is possible to upgrade/replace my existing screen with the latest tech... namely the 3K (2880 x 1620), IPS LED Backlit Anti-Glare Display?
    Is it possible for me to order the part and simply replace it together with the required drivers?
    Thanks

    Someone used an LVDS to eDP adapter to get a newer eDP 1080p IPS panel working in a LVDS connected X220.
    AFAIK, no one's done it for the W520. The extra hurdle is that the 3K resolution probably exceeds the bandwidth of LVDS. No guarantees either way.
    W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
    X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
    Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

  • Does JMF require a particular a new jre version?

    Hi to all the JMF funs.
    I made a simple transmitting - receiving application with JMF211e.
    It works with jre 1.4.2_03 but it seems not working with another Pc that runs jre 1.3.1. No errors, only the receiver program doesn't run completely.
    is it possible the is caused by the older jre ?
    Thank you (again).
    Alessandro

    thanks again and glad to hear of you again.
    Your suggestions are very good but it'all ok with my PC. I ' ve got to analize better the differences making a debug in the two PC.
    The processes seem to start correctly but for some reason
         * SessionListener.
        public synchronized void update(SessionEvent evt) {
         if (evt instanceof NewParticipantEvent) {
             Participant p = ((NewParticipantEvent)evt).getParticipant();
             System.err.println("  - A new participant had just joined: " + p.getCNAME());
        }is not executed. Simply i don't see any
    System.err.println("  - A new participant had just joined: " + p.getCNAME()); I'll study a little more during the week-end
    Best regards
    Alessandro

  • Losing calendar alarms with new Maverick version

    Since I upgraded to Maverick I'm losing calendar alerts if I snooze the alert..
    I set an alert for two days prior to an event.
    If I then snooze the alert for 2 hours, then power off my computer until the next day, I never get another alert.
    If I check the event is says it has an alert at a specific date and time, which was during the time the computer was OFF, 2 hours after I snoozed it..
    The older version did NOT work this way...
    It seems like the new version instead of the snooze delaying the alert, it is setting it for a specific time, and so if the computer is rebooted and powered back on AFTER that time has passed then it doesn't raise an alert...   I suppose they've built this app assuming that everyone just leaves their computers powered on all the time?
    Any ideas of how I can get around this?
    Seems like a lot of the apps got quite a bit worse with the Maverick "upgrade"...

    Check your Options > Advanced > Default Services and confirm you have your calendar set as the defult calendar, as well as in the Calendar options.
    For live support, contact your carrier. There you can be bumped up to the RIM technical support. Live.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to replace old numbers with new mavericks version of numbers

    Thanks to another thread, I have found the new versions of numbers, pages etc. in applications, but how do I get them to replace the old versions in the desktop?

    Good call since Apple dumbed down the new iWork apps to make them compatible with their iOS counterparts.
    See
    http://www.betalogue.com/2013/10/24/pages-5-disaster/
    https://discussions.apple.com/thread/5468056?start=0&tstart=0 and
    http://9to5mac.com/2013/10/25/new-iwork-ilife-apps-go-for-simplicity-upset-power -users-all-over-again/#comments

Maybe you are looking for

  • Windows Store apps on Windows Server 2012 with XenApp?

    We've got asked by a vendor whether our app will be able to support multiple simultaneous users, when installed on Windows Server 2012 and accessed via XenApp. I suppose the real question here is whether or not Windows Store apps can be run in XenApp

  • MM purchase order

    hi all,     what is the difference between warranty and locking period in purchase order.can any one give the complete details? Srinu Edited by: pasupuleti srinivasulu on Jan 6, 2009 5:52 AM

  • E-Recruiting: Attachment size in candidate profile max. 2MB?

    Hello Experts, it is possible to increase the whole max. attachment size from 2MB for documents in the candidates profile area to 5MB? Is this a profile parameter or a setting in the img? How can I do that? Thanks in advance. Thomas

  • Make photos bigger??

    When double clicked, iss there a way to make a photo show bigger than iWeb's standard size?

  • Just Given an IPhone, Should I return It and Wait?

    Hey All, I just unexpectedly received the 16GB IPhone as a gift last night, and have not opened it yet. The reason why is I am tempted to wait until June when Apple may unveil the new version. Does anyone have any insight as to whether a new version