Creating A Proxy For IE (or Other Browsers)
Apr 2, 2011
I'm using VB.net. I need to create an application that sits in between the browser and the actual internet. Basically, I'm creating an online game that will edit some webpages that are incoming so that they contain parts of the game (it's a kind of scavenger hunt). How would I create this?
Does anybody have any ideas for this? I've found nothing online. If you do know something about this, I prefer code examples and not just subjects. I tend to need big pushes in a direction to learn something new.
View 1 Replies
ADVERTISEMENT
Oct 22, 2009
creating an internet filter that is supposed to interface with web browsers, eg. Explorer, Chrome (not a web browser I made) and then block specific websites on the browser. I'm kind of lost on where I need to start with the interface. Could someone please just point me in the direction I need to go for 1) the program to work with any browser 2) For blocking specific sites.
View 2 Replies
Feb 9, 2009
I am a complete Newbie to VB.NET and am migrating up from VB4, so please forgive my mistakes.I am trying to create a proxy class using the WSDL tool included in Visual Basic 2008 Express Edition. I have managed to create the file successfully through WSDL tool, and then am able to add this file as an item in my VB project, however, the file that is added, comes up with 11 errors that I am not familiar with. The command I am using to create the file with WSDL tool is as follows:
wsdl /l:vb /protocol:soap http://direct.racetab.com.au/LiveOdd...gin/Login.wsdl This creates a file called Login, however it creates it, inside the folder that the WSDL tool is located in, which happens to be:Program Files/Microsoft SDKs/Windows/v6.0A/bin I then go to the solution explorer and right click the 'My Project' folder and select ADD>Existing Item, and then navigate it to the file that was just created.
This creates a new item in my solution explorer called Login.vb however, as soon as it is created, I get 9 errors and 2 warnings, that absolutely confuse the hell out of me, and all point to this new item 'Login.vb'
[Code]...
I am doing wrong, what I have forgotten to do, or how I can work to get around this problem? If I need to supply any more information, please let me know what you need to know. Also, if it helps, the only method that I plan to use from the above file is the GETKEY(userName, password) method.
View 2 Replies
May 4, 2010
I am trying to make a DLL for a proxy class of a web service as:[code]Do i have to include system.web.services.protocols.dll but i read it is included in system.web.services.dll then why it is complaining about certain members of the class.Here "Service" is my webservice and "proxy service.vb" is proxy class whose dll is need to be created.
View 1 Replies
Mar 8, 2009
Is there a way to have your program automatically create a proxy for a specific browser, like IE, when your app is running? I was thinking that maybe you could create a VLAN proxy or something and a button on the app to toggle it on and off. But I'm not sure how or if one can do it.
View 1 Replies
Aug 17, 2009
I am working with a old windows app (vb.net), this was working fine before with the old out look (owa) now we moved to 2010 outlookweb acess, after movingis application is unable to sync the exchange applications to web.
Dim
req As
Net.HttpWebRequest
[code].....
View 3 Replies
Aug 5, 2010
IDE :: error creating the web proxy specified in the 'system.net/defaultproxy' configuration section.
View 6 Replies
Oct 15, 2011
I'm making a application to use in college to retrieve my calendar and other things in VB.NET. But my college uses a proxy so when I connect my laptop I need to change the internet settings in my web browser to view web pages. how I would send requests via a proxy server in VB.NET? Or is there a piece of software that I can download which tunnels all connections or is there a setting in win7 does this?
View 1 Replies
Nov 24, 2010
I'd like to set the proxy for a web request. However, when I say, for example, request.proxy = "x.x.x.x:xxxxx", it gives me the error "String cannot be converted to webproxy". How can I get around this and actually set the proxy?
View 2 Replies
Feb 24, 2010
The web browser in vb.net is using IE or maybe its not even a web browser. Maybe its the primitive browser in windows that came before IE. Is it possible to change the browser that is used by the vb.net web browser (dragged from the toolbox)? Maybe through the add reference?
View 2 Replies
Oct 1, 2010
Is there a way to track all url's that browsers are going to?
View 3 Replies
Oct 19, 2011
i use SHDocVw to access current internet explorer and list the open websites and it works !but how can i access other browsers like mozilla or safari or ... to get open websites ?
View 1 Replies
Aug 23, 2011
my code works fine in JavaScript but doesn't work correctly in Firefox or safari and wondering why. What I'm doing is I have a loop going through each element and depending on the variable inside a text box just want to alert something. Like i said earlier this code works fine in IE. Here is the code below:
Here is an example of text box:
<asp:TextBox ID="txtMac" runat="server" req="yes" errMessage="Mac"/>
for (a = 0; a < theForm.elements.length; a++) {
if (theForm.elements[a].type == "text" && theForm.elements[a].req == "yes") {
alert("Made it here")
}
}
View 5 Replies
Jun 13, 2011
In our application, when you go to "Menu > Help...", it opens our help files in Internet Explorer, which is the desirable effect. However, we have the shortcut key "F1" set to open the help files as well. It still opens the help in Internet Explorer... but it also opens them up at the same time in the user's default web browser![code]...
View 1 Replies
Jun 10, 2010
Get Browsers width in CodeBehind ( C# or Vb.Net )
View 2 Replies
Oct 15, 2009
et Browsers width in CodeBehind ( C# or Vb.Net
View 6 Replies
Feb 6, 2011
I am able to create internet explorer instance by using SHDocVw.InternetExplorer, how to create instances for google chrome / mozilla fire fox / opera browsers.
View 4 Replies
Apr 14, 2011
I am making an antivirus program in VB 2008.Everything has gone well,but I am having trouble with web browser monitor.The following are the tasks of web browser monitor:
1 - Whenever the user tries to open a web page in any web browser,it must return the url and html code of the web page to the antivirus.In my program, i have the following function to check whether a given string contains virus codes
[Code]...
View 10 Replies
Dec 18, 2009
I have an application I made to monitor IP cameras. Right now I just have a button for each camera, so that when they want to swithc to that camera, all the user has to do is click the button to switch to that camera.What I would like to do is set it up so that I have multiple web browsers on the form, each one for a camera. However, the problem is that the actual video feed is in a small section of the web page, so the user would have to scroll to the right position for each web browser to be able to see the video feed.What I want to do is configure it so that when the page loads, it automatically scrolls to the right position so the user can see the camera feed for each camera (each in it's own independent browser) without having to adjust each browser.
View 4 Replies
Mar 16, 2011
I,m creating a website that checks to see if the User's browser supports png images at startup.I found this Script in Javascript:
function CheckBrowser()
{
[code].....
View 2 Replies
Dec 15, 2009
Is there an easy way to get a list of the installed web browsers on the system (including the path to their respective .exe)? I have a web application which uses the Web Browser Control, but I would like to give the user the ability to view their web page in any of their other installed browsers.
View 6 Replies
Mar 22, 2012
i have a little company, where my employes work, wanted to know if they are not wasting time in my office, so i decided to make a little application to get history by all browsers, i tried and only could get from IE, but i need cross-browsers history at least minimum from Firefox + IE ?
Ashfaq Ahmed Web Programmer + Software Engineer of the world where nothing is impossible :)
View 2 Replies
Mar 31, 2012
I want to get the address of the browsers open(IE and Chrome) and test if the address is in a block list, if yes the browser is redirected to Access denied.html page..
View 2 Replies
Sep 13, 2011
I'm making a program that will allow people to enter a URL, click on a button and the URL will open in 6 different browsers. Now I can't figure out how to open a specific browser with a specific URL.
I know this though:
process.start(browserpath)
This will just open up the browser, but how can I open the browser with a specific URL?
View 3 Replies
Nov 24, 2009
So I wrote a program, which goes thru the authentication of a website, using a 'webbrowser' element within the program, however, when I want to open a page in an other browser e.g.: Firefox after I went thru with the Auth. in the application , it seems as there have been no authentication at all.
Do I need to set something with the cookies? Or how would firefox know that I am already logged on on another browser? all is in Visual Basic 2008.
View 1 Replies
Apr 9, 2012
I am trying to make a form that has 2 browsers in it. I want them both to be able to login to a site....say for example facebook with separate/different accounts and show the appropriate account info in the appropriate browser. I think it has to do with cookies, but am not sure how to set it up so that each browser uses a separate cookie to maintain info without mixing it up.
View 1 Replies
Sep 10, 2009
I've thought long and hard on how to do this. Since I'm posting here, you see I haven't figured it out. I've found out how to login to a website with GetElementById, but I have another problem. I need to login with multiple web browsers. But when I login on the second, I can't because the session/cookie is already there. I thought usnig a proxy would work, but that just applies to both web browsers. Using the example below, would it be possible to apply this to only one web browser? Or make separate sessions for each web browser control?
[Code]...
View 2 Replies
May 3, 2011
I came across this app yesterday which looked strange to me as it had about 20 web browsers popped up and running all 20 processes seperatly.
View 2 Replies
Jul 2, 2009
I have been tasked to fix a really old website (.net aspx vb). The website currently is not running well in IE8, Firefox, Chrome. The menus are displaying funny and some images are not correct, and in Chrome the complete header with menus and all is missing.
I am not a vb guy, and I have no idea where to start looking.
What will be the most common section that a website will start failing in new browsers?
View 5 Replies
Jun 2, 2012
In VB.Net, how do I make a program to tap into the HTTP requests made by external web browsers? I don't want to edit or stop the headers, only 'read' them, i.e., access its contents. I'm speaking of something like Fiddler2, but I only want the 'reading' part. I also want to read the user-agent.
View 1 Replies