I want a user friendly url (e.g. http://servoy/RSOWEB ) that will redirect to a servoy deeplink url, such as:
http://servoy.coh.org:8080/servoy-webcl … RE_RSO_WEB
I created a ASP doc and placed it in folder named RSOWEB on the c drive of the server here:
c:\Inetpub\wwwroot
the tiny .asp doc contains the following:
<% response.redirect ("http://servoy.coh.org:8080/servoy-webclient/solutions/solution/RCS_CORE_RSO_WEB") %>
this typically works for redirects, but doesn’t seem to work with a deeplink into a servoy web client.
I also tried just setting up a redirect in IIS directly (right click on the web site folder, select properties, click “A redirection to a URL” and typed in “Redirect to: http://servoy.coh.org:8080/servoy-webcl … RE_RSO_WEB ”. However, this didn’t work either.
Any suggestions?
Specs:
Server: Windows 2003 Server
ISS: version 6
Servoy: Servoy version 3.5.7-build 520, repository version 31
Westy
October 10, 2008, 8:34pm
2
Try this:
<html>
<head>
<title>Your title</title>
</head>
<body style='margin:0px; padding:0px;'><center>
<iframe src="http://ip_address/servoy-webclient/ss/s/solutionname/m/methodname/a/argumentname" height="100%" width="70%" scrolling="no" frameborder='0' marginwidth='0px' marginheight='0px' style='margin:0px; padding:0px; border-size:0px;'>Warning text.</iframe>
</center>
</valign>
</body>
</html>
You may have to adjust the width setting.
Another alternative is to go to:
http://www.no-ip.com/services/managed_d … c_dns.html
Where you can setup a “web redirect”.
Dean Westover
Choices Software, Inc.
tysonj
September 21, 2011, 8:11am
3
Hi,
I aslo want to achive some thing like this…
davidaarong:
I want a user friendly url (e.g. http://servoy/RSOWEB ) that will redirect to a servoy deeplink url, such as:
http://servoy.coh.org:8080/servoy-webcl … RE_RSO_WEB
Any suggestion guyz… ???
tysonj
September 22, 2011, 5:56am
4
I tried the servoy.nice.url present in the servoy admin settings but it just made my solution name stay in the URL.
What I want is some thing like the below.
My actual URL to start the web-client :- [u]http://myServer:8080/servoy-webclient/solutions/solution/MySolution[/u]
URL which redirects to the actual Url :- http://myServer:8080/mySolution
i.e when I enter a short url of my choice it should redirect to my actual URL.
Thanks…
place something like this:
in the server/webapps/ROOT dir
under the name ‘mySolution’
then you can open MySolution solution through the url: http://myServer:8080/mySolution
tysonj
September 22, 2011, 10:51am
6
Thank You jcompagner … this worked for me…