Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
briefcaseblues  
#1 Posted : Wednesday, June 28, 2006 7:20:56 AM(UTC)
briefcaseblues

Rank: Member

Groups: Member
Joined: 6/28/2006(UTC)
Posts: 3

Good Day,

I am a potential buyer testing ImageUploader on Mac and Windows platforms.

Windows and Mac Platform:

-The Active X/Java bundle which is supposed to switch over when it detects my browser will not switch, it defaults Active X

- Java version will not work on Netscape 7.2 (Mac) and Netscape 8 (Windows) even though proper java applets are installed (it will not start the java applet)

Mac Specific:

-Java version wont work on Firefox, the java applet will load, and i can search images to uplaod but when it waits on response from our coldfusion server when the upload is about to be done, it will re-try and eventually give me the coldfusion error about "Unidentified author for form"

-Java version on Netscape will not work because netscape wont load java applet.

-The active X / Java bundle will default to active x instead of detecting and switching to Java.

Thanks a lot in advance for your responses.


-The Active X/Java bundle still defaults to Active X
Fedor  
#2 Posted : Wednesday, June 28, 2006 11:13:35 AM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
We will check the problem. As you know Netscape 8.0 can work with both Gecko and Internet Explorer engine, so it can supports both Java applets and ActiveX controls.
Best regards,
Fedor Skvortsov
briefcaseblues  
#3 Posted : Friday, June 30, 2006 12:45:31 AM(UTC)
briefcaseblues

Rank: Member

Groups: Member
Joined: 6/28/2006(UTC)
Posts: 3

Thanks for your reply.

My most important concern is your Active X / Java Bundle not switching and defaulting to Active X all the time regardless of what browser or platform youre running.

Please keep me posted and let me know if you need any information.
Fedor  
#4 Posted : Friday, June 30, 2006 12:56:42 AM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
Quote:
My most important concern is your Active X / Java Bundle not switching and defaulting to Active X all the time regardless of what browser or platform youre running.


It switched perfectly on all our test for Windows/Mac OS/Linux // IE/Mozilla/Safari/OmniWeb/Camino/Konqueror/Opera.

However we really didn't test it on Netscape 8. Could you post the code you used to place Image Uploader on page?
Best regards,
Fedor Skvortsov
Fedor  
#5 Posted : Friday, June 30, 2006 8:29:12 PM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
Quote:
-Java version wont work on Firefox, the java applet will load, and i can search images to uplaod but when it waits on response from our coldfusion server when the upload is about to be done, it will re-try and eventually give me the coldfusion error about "Unidentified author for form"


What version of Image Uploader and Netscape do you use?

Quote:
-Java version on Netscape will not work because netscape wont load java applet.


Image Uploader requires JRE 1.4. Some Mac browsers require MRJ Plugin and Java Embedding Plugin to be JRE 1.4-compatible.

These browsers do not require these plugins:
  • Safari
  • Firefox version 1.5 or later
  • Camino version 1.0 or later
  • Seamonkey

    For more detailed answer please post the content of Java console.

    Quote:
    -The active X / Java bundle will default to active x instead of detecting and switching to Java.


    iuembed.js script writes code for Java version when Netscape displays like Firefox, and for ActiveX one when browser displays like Internet Explorer.

    However ActiveX controls are not enabled in Netscape 8. Here is screenshot how to enable its support:

    UserPostedImage

    I am not sure whether we should always display Java applet for Netscape, however if you think so, than you can do it the following way:

    Code:
    //Create JavaScript object that will embed Image Uploader to the page.
    var iu = new ImageUploaderWriter("ImageUploader1", 650, 400);
    
    //For ActiveX control full path to CAB file (including file name) should be specified.
    iu.activeXControlCodeBase = "../ImageUploader4.cab";
    iu.activeXControlVersion = "4,0,22,0";
    
    //For Java applet only path to directory with JAR files should be specified (without file name).
    iu.javaAppletCodeBase = "../";
    iu.javaAppletCached = true;
    iu.javaAppletVersion = "2.0.18.0";
    
    if (isNetscape8()){
        iu.javaAppletEnabled = false;
    }
    
    ..//
    
    //Tell Image Uploader writer object to generate all necessary HTML code to embed 
    //Image Uploader to the page.
    iu.writeHtml();
    



    Note, you should implement yourself isNetscape8() function for Netscape 8 detection.


  • Edited by user Monday, December 21, 2009 2:37:49 AM(UTC)  | Reason: Not specified

    Fedor attached the following image(s):
    Netscape8.png
    Best regards,
    Fedor Skvortsov
    Users browsing this topic
    Forum Jump  
    You cannot post new topics in this forum.
    You cannot reply to topics in this forum.
    You cannot delete your posts in this forum.
    You cannot edit your posts in this forum.
    You cannot create polls in this forum.
    You cannot vote in polls in this forum.