0

I have a dll that is being called like this:

http://xxxx/dllFile.dll 

for security reasons, I want to hide the dll call from the browser, I asked the company that developed that page to hide that dll call and this is their answer:

There’s no development to hidden the url for the “chat.dll”. The most simple is making an alternative start page. On this page have an “IFrame” and inside will contain the complete chat. Thus hidden all chats urls, and show only the URL from the start page. 

so I started working on their suggesting. I have iframe like this:

<iframe> </iframe> 

and my question is how to call that dll file from this iframe?

thanks

4
  • <iframe src="http://xxxx/dllFile.dll"> ? Commented Oct 14, 2014 at 11:24
  • @AlexK. thank, let me try it and update you Commented Oct 14, 2014 at 11:25
  • @AlexK. I am getting 404 page not found, I did this url: ` <iframe src="http:/192.168.1.102/chat">` where 192.168.1.102 is the server where I call that dll. plus, when I go to browser and call http://192.168.1.102/chat/ I got the page Commented Oct 14, 2014 at 11:42
  • @AlexK. it is working now, please write an answer to accept it many thanks Commented Oct 14, 2014 at 11:48

1 Answer 1

1

To tell the iframe to load its content from a url, just set its src attribute:

<iframe src="http://xxxx/dllFile.dll"> 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.