WinForm UserControls in Internet Explorer
Update: Its fixed! Thank you Marc.
I was hoping to post about the cool demo I've been building with a WinForm UserControl in Internet Explorer, but I apparently need some help finishing it up. You can view my page and control and the error here. My control downloads and initializes/displays correctly, but its supposed to call a webservice to get the data. This worked when running locally, even with remote webservice, but now that I've deployed it to production it fails when trying to get the data. The error message mentions an IExplore.exe.config file, but searching on this reveals few references and no real help, and I fail to see how such a file on the server would accomplish anything since security in asp.net will stop my browser from being able to retrieve config files.
Here's majority of the error -- anyone able to help me out?
System.Configuration.ConfigurationException: Error loading XML file http://www.wilsondotnet.com/IEXPLORE.EXE.config This is an unexpected token. The expected token is 'DOCTYPE'. Line 2, position 3. (http://www.wilsondotnet.com/IEXPLORE.EXE.config)
at System.Configuration.ConfigurationSettings.GetConfig(String sectionName)
at System.Web.Services.Configuration.WebServicesConfiguration.get_Current()
at System.Web.Services.Protocols.SoapClientType..ctor(Type type)
at System.Web.Services.Protocols.SoapHttpClientProtocol..ctor()
at Wilson.DotNet.WinForms.Services.TipsWS..ctor()
at Wilson.DotNet.WinForms.TipsControl.TipsControl_Load(Object sender, EventArgs e)
at System.Windows.Forms.UserControl.OnLoad(EventArgs e)