NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: sukhendu on November 13, 2014, 01:11:56 PM

Title: Off Topic: IP Address masking: How?
Post by: sukhendu on November 13, 2014, 01:11:56 PM
My customer using our web application.  On their web site there is a button, when clicked, our NT web program login page comes up.  The address page shows the static ip address and the port number.  How to mask the ip address and port?

Thank you for your help.
Sukhendu
Title: Re: Off Topic: IP Address masking: How?
Post by: Bruce on November 13, 2014, 09:01:21 PM
probably they should create a page on their site which they go to when they press the button.

That page can be a frame around your page. For example;

<html>
<body>
<iframe src="http:\\yourip:port\yoururl">
</iframe>
</body>
</html>

Of course your login page probably goes to another page after login, which makes all of the above completely useless. Unless your app is a "single page app" using all-popups.

If they wanted to embed your site "inside" their site then they'd need to use the <frame> tag and embed your page inside a frame on their page (not an iframe.)

cheers
Bruce