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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Web Services page!

Status
Not open for further replies.

ZenMuster

Technical User
Aug 22, 2003
39
US
Hi,

When I type my domain address istead of going directly to Webaccess login screen I'm on Web services screen. On that screen I have to click on the Go button. Could you guys help me change that so I could go directly to the
instead of just

Thank you.
 
We use GW 6.0x. Your index.html and install point may differ slightly depending on your version of groupwise, where you installed it, and which type of web server you're running. Here is what I did:

1. I found the index page (mine was at \\SERVER\SYS\Novonyx\suitespot\docs\index.html).

2. I modified the HTML to automatically refresh the page to /servlet/webacc. I did this by adding the META tag on line 4.

3. I also made other modifications, like removing the form elements and replacing them with a "Click HERE if this page doesn't refresh..." link and changing the page title.

Here is my index.html after I modified it. I've highlighted in red the major changes that I made to the page:
Code:
<html>
<head>
Code:
<title>WISD WebAccess</title>
<META HTTP-EQUIV=&quot;Refresh&quot; CONTENT=&quot;0;URL=/servlet/webacc&quot;>
Code:
<style media=&quot;screen&quot; type=&quot;text/css&quot;>
<!--

body        { color: black; font-size: 12px; line-height: 17px; font-family: &quot;Trebuchet MS&quot;, Arial, Helvetica, Geneva, Swiss, SunSans-Regular }
td          { font-size: 12px; font-family: &quot;Trebuchet MS&quot;, Arial, Helvetica, Geneva, Swiss, SunSans-Regular }
th          { color: black; font-style: normal; font-weight: 800; font-size: 12px; font-family: &quot;Trebuchet MS&quot;, Arial, Helvetica, Geneva, Swiss, SunSans-Regular; text-indent: 4px }
#header     { position: absolute; z-index: 1; top: 0px; left: 0px; visibility: visible }
#headerUnderLine { position: absolute; z-index: 1; top: 28px; left: 0px; visibility: visible }
#title1     { position: absolute; top: 24px; left: 40px; width: 205px; height: 23px; visibility: visible }
.TopHead    { color: black; font-weight: bold; font-size: 18px; line-height: 18px; font-family: &quot;Trebuchet MS&quot;, Arial, Helvetica, Geneva, Swiss, SunSans-Regular; letter-spacing: 1px }
#Title { position: absolute; z-index: 1; top: 3px; left: 8px; width: 225px; height: 23px; visibility: visible }
.tablehead2 { color: white; font-weight: 800; font-size: 12px; font-family: &quot;Trebuchet MS&quot;, Arial, Helvetica, Geneva; letter-spacing: 2px; margin-left: 8px }
.tablehead3 { color: black; font-weight: bold; font-size: 12px; font-family: &quot;Trebuchet MS&quot;, Arial, Helvetica, Geneva; margin-left: 8px }

#Apptitle1  { position: absolute; z-index: 1; top: 0px; left: 0px; visibility: visible }
#mainForm   { position: absolute; z-index: 0; top: 60px; left: 0px; visibility: visible }
#novellLogo { position: absolute; z-index: 1; top: 6px; right: 0px; visibility: visible; }
-->
</style>
</head>

<body bgcolor=&quot;#ffffff&quot;>

<div id=header>
<img src=&quot;/com/novell/images/header.gif&quot; alt=Novell Web Services align=bottom>
</div>

<div id=&quot;Title&quot; class=&quot;TopHead&quot;>
Web Services
</div>

<div id=headerUnderLine>
<img src=&quot;/com/novell/images/pattern.gif&quot; height=6 width=&quot;103%&quot; alt=&quot;&quot; align=bottom>
</div>

<div id=novellLogo>
<img src=&quot;/com/novell/images/dotzero.gif&quot; width=&quot;400&quot; height=&quot;1&quot; align=&quot;left&quot;>
<img src=&quot;/com/novell/images/logo.gif&quot; alt=&quot;Novell&quot; align=&quot;right&quot;>
</div>

<p>

<table cellspacing=&quot;0&quot; cellpadding=&quot;3&quot;>
    <tr>
        <td colspan=2>
            <img src=&quot;/com/novell/images/dotzero.gif&quot; width=&quot;50&quot; alt=&quot;&quot; align=right>
        </td>
    </tr>
    <tr height=10>
        <td height=&quot;10&quot; align=&quot;left&quot; bgCOLOR=&quot;#6C8899&quot; colspan=&quot;2&quot;>
            <div class=&quot;tablehead2&quot;>
            </div>
        </td>
    </tr>
    <tr>
        <td colspan=2>
            <img src=&quot;/com/novell/images/dotzero.gif&quot; width=&quot;10&quot; alt=&quot;&quot; align=right>
        </td>
    </tr>

<!-- START NOVELL SERVICES -->


<!-- START GROUPWISE WEBACCESS -->
    <tr>
				<td>
Code:
Forwarding to WebAccess login. If this page <BR>
				does not refresh within 5 seconds, click <A HREF=&quot;/servlet/webacc&quot;>here</A>.
Code:
</td>
    </tr>
<!-- STOP GROUPWISE WEBACCESS -->

<!-- STOP NOVELL SERVICES -->
    <tr>
        <td colspan=&quot;2&quot;>
            <hr>
            © Copyright 1993-2001 Novell, Inc. All rights reserved
        </td>
    </tr>
</table>

</body>
</html>
Hope that helps.
-Ron

P.S. Remember, any time you install a SP or patch that affects WebAccess, you may have to redo these changes!
 
The answer Darkshadeau give is right on the money, just seems a little over kill, and there is a pause. Haveing an index.html with just the following in it will send the user to the login page with out any pause.

[sub]
<HTML>
<HEAD>
<META HTTP-EQUIV=&quot;REFRESH&quot;Content=&quot;0;url= </HEAD>
<BODY> </BODY>
</HTML>
[/sub]

=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
Provogeek
CNE Network+
Experience

Certified nut case
 
Thank you Darkshadeau:)

Your sulution works.

Solute!

Alex.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top