Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IE cannot download files over SSL serving on Tomcat

Status
Not open for further replies.

vkha

Programmer
Feb 8, 2005
9
CA
IE cannot download files over a SSL connection but if you try with any other browser, it will work perfectly.

There are fixes but they fix that specific system by editing the registry key.

My problem is that I would like to fix it on server side so I dont need to worry about what system I am on when I try to download a file over a SSL connection.

I've been searching through so many forums and they all post the same fix provided by Microsoft which tells you how to fix the client machine. It's a freaking website, I dont believe everyone visiting the site should be editing their registry keys!

Sorry to vent but IE problems are getting old.
 
No one experienced this problem before?
 
From Apache Extract the Content Transfer and Xcontenttransfer Cab Files. Install to the Downloaded program files folder.

Point the registry Key to a specific download area on the client.

Switch off Java Sun leaving Microsoft VM the default and it should work.

It appears to be linked to whatever login LDAP you are using or Authentication.
This is from Documentum


This article explains how to install Java packages into the Java Package Manager (JPM), without the aid of a download tool, such as Internet Explorer.

MORE INFORMATION
To install a package into the JPM from the command line, using the Rundll32 interface, first put it into a standard ZIP file or a CAB file with an Open Software Distribution (OSD) manifest. Here is a brief explanation of the OSD specification from the Microsoft Developer Network (MSDN):

Software distribution. Recently Microsoft and Marimba co-authored and submitted a specification to the Worldwide Web Consortium (W3C) called Open Software Description (OSD) that describes the delivery of software applications over the Internet. OSD uses unique XML tags to describe software components, including their versions, underlying structure, relationships to other components, and dependencies. It can describe and reference platform-native code (such as Macintosh, Win32, or ActiveX components) as well as Java packages and applications.

Next, use the JPM Rundll32 interface as follows.

NOTE: An alias in %windir%\Downloaded Program Files is created only while installing a CAB file with an OSD, and not while installing a ZIP file. But in both the cases, a ZIP file with a mangled name will be created in %windir%\java\packages as expected. This ZIP file contains the package being installed. %windir% here represents the Windows directory. Replace System32 by System in the example below while using Windows 95/98.

rundll32 %windir%\System32\msjava.dll,JavaPkgMgr_Install <filename>,
<file type>,<hi version>,<lo version>,<build>,<package flags>,
<install flags>,<namespace>

File Type:
0=CAB
1=ZIP

Package Flags:
0=System class
1=Non system class
2=Needs trusted source

Install Flags:
1=No version check
2=No signer check
4=Autodetect packages
8=Delete input file

A sample command line might look like :

rundll32 %windir%\System32\msjava.dll,JavaPkgMgr_Install myclasses.zip,1,4,79,2151,0,12

regards Colin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top