Webspeed start page

san@novare.no

New Member
Hello!

We have a web portal that runs in webspeed. That is all html is returned by the agent - no html files needed.

What is the best was to set up the "index/default" page?
Example url to one web portal:
Code:
http://www.domain.com/scripts/agent.name/procedure.r?id=12324&stuff=kjh

How can I automatically use the ulr abowe as someone go to http://www.domain.com ?
Currently my index.html is doing this:
Code:
<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.domain.com/scripts/agent.name/procedure.r?id=12324&stuff=kjh">

I use Windows 2008 R2 and IIS7

Any better ways to do this?
 

rstanciu

Member
with apache we have modrewrite
RewriteRule ^/$ /cgi-bin/cgiip.exe/WService/ping/ [R]

but IIS the easy way is to add this in index.html

Code:
<html>
  <head>
  <script type="text/javascript">
    window.location = "http://www.domain.com/cgiip.exe/WService......"
  </script>
  </head>
</html>
 

san@novare.no

New Member
Thnx for your response...

I've decided to use this similar .Net C# approach:
Code:
<%@ Import Namespace="System" %>
<%@ Page Language="c#"%>

<script runat="server">
	private void Page_Load(object sender, System.EventArgs e)
	{
		Response.Status = "301 Moved Permanently";
		Response.AddHeader("Location","http://www.domain.com/scripts/agent.name/proc.r?Id=12");
	}
</script>
I put this code in a .aspx file. Works like a charm. I've been told that this is the best way to do this in terms of Search Engine Optimizing (SEO) as search engines like the 301 message best.
 
N

nevaeh.aaric

Guest
WebSpeed Workshop allows you to develop distributed application logic with a Web-specialized language called SpeedScript. You then combine that logic with an HTML user interface. WebSpeed Workshop is integrated in the sense that you develop your application while connected to a Web server and the WebSpeed Transaction Server. This means that you are developing in the environment that your application will run in, thus helping to eliminate any surprises during deployment, and ultimately saving you time in the testing/fixing/testing cycles.
 

markcollins

New Member
Workshop is an integrated suite of development tools for building ITP (Internet Transaction Processing) applications that run on the WebSpeed Transaction Server component of the OpenEdge Application Server. The OpenEdge Application Server is a robust server for deploying ITP applications with very high availability, high scalabilty, and rapid response rates. With WebSpeed,



__________________________________________________________________________________
Want to get-on Google's first page and loads of traffic to your website? Hire a SEO Specialist from Ocean Groups seo pecialist
 
Top