NetTalk Central

Author Topic: Off Topic: IP Address masking: How?  (Read 3924 times)

sukhendu

  • Jr. Member
  • **
  • Posts: 92
    • View Profile
    • Email
Off Topic: IP Address masking: How?
« 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

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11300
    • View Profile
Re: Off Topic: IP Address masking: How?
« Reply #1 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