- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Secure Web Server V1.3
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2004 04:59 PM
01-27-2004 04:59 PM
Secure Web Server V1.3
My customer has installed and configured Secure Web Server in a Alpha system running on OpenVMS V7.3-1 and it is working successfully.
The query here is how to configure to read the VMS files with .log extension from the IE.
Whenever he tried to read these files with .log extension, a download window will appear.
He is able to list the contents of those files with .txt extension from IE.
Any advise will be very much appreciated.
Regards,
Ronny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2004 05:23 PM
01-27-2004 05:23 PM
Re: Secure Web Server V1.3
HTTPD.CONF. This file 'connects' file extensions with data type of the file, e.g.:
text/plain asc txt
Add your extension (here log) to the line and it should work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2004 06:59 PM
01-27-2004 06:59 PM
Re: Secure Web Server V1.3
Thank you for the reply.
I have asked the customer to tried your recommendation however he is still getting the file download window.
If he rename the same file to .txt extension, he has no problem to list out the content in the browser.
He has changed
from: text/plain asc txt
to: text/plain asc txt log
Did a shutdown(@sys$startup:apache$shutdown) and restart(@sys$startup:apache$startup) of the secure web server.
Any other recommendations?
Thanks and Regards,
Ronny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2004 11:37 PM
01-27-2004 11:37 PM
Re: Secure Web Server V1.3
I have no problems to display .COM, .TXT and .LOG files. There are no entries in the MIME.TYPES file on a version 1.3.20 server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2004 11:38 PM
01-27-2004 11:38 PM
Re: Secure Web Server V1.3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 04:47 AM
01-28-2004 04:47 AM
Re: Secure Web Server V1.3
Possible solutions:
- Rename the files from .log to .txt on the VMS server
- Write a small CGI that "presents" the files as "text" to IE without an extension
- Maybe (untested) add .log to the known extensions on the clients and define IE as the viewer
HTH, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 02:17 PM
01-28-2004 02:17 PM
Re: Secure Web Server V1.3
The DefaultType entry is already in the HTTPD.CONF, however IE is not able to display .log files.
Hi Martin,
Most of the OpenVMS files are .log extensions, therefore it take much efforts for customer to rename all of them to .txt.
You mentioned about writing a CGI scripts, is it possible for you to provide an example on this script to overcome this problem?
I saw in the HTTPD.CONF, there is a portion explanation the AddHandler, are you refering to this?
# To use CGI scripts:
#
#AddHandler cgi-script .cgi
Thanks and Regards,
Ronny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2004 06:23 AM
01-29-2004 06:23 AM
Re: Secure Web Server V1.3
He has changed
from: text/plain asc txt
to: text/plain asc txt log
Shouldn't the line read
text/plain asc log
Or actually be added after the line
text/plain asc txt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2004 03:28 PM
01-29-2004 03:28 PM
Re: Secure Web Server V1.3
check http://zinser.no-ip.info/htbin/log.pl
for an example.
Source is attached, obviously very sketchy and can be improved in any of various different ways.
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2004 07:41 PM
01-29-2004 07:41 PM
Re: Secure Web Server V1.3
Thanks for the advise to look into the file extension detection in IE.
I tried to add LOG extensions in the file types in my W2K system and define it as HTML document and it works fine.
Customer is, however, running WinNT on the client. Using the same concept, he found there is a LOG definition in the MIME types in IE which is defined as text document,
text/plain.
He changed this to
text/html and it is working now.
We also found an explanation on MIME types in Microsoft website.
http://msdn.microsoft.com/library/default.asp?url=/workshop/networking/moniker/overview/appendix_a.asp
To everyone who responsed,
Thank you for your time and recommendations.
Thanks and Regards,
Ronny