Mark, Not sure if you have solved this, but thought i would drop a couple of links on you. http://aspnet.4guysfromrolla.com/ (check out the webservices section near the bottom) http://aspnet.4guysfromrolla.com/articles/062602-1.aspx http://aspnet.4guysfromrolla.com/articles/100803-1.aspx david
>>> [EMAIL PROTECTED] 07/26/2005 9:49:06 AM >>> David, I have both machine and web config files updated and added the URL to the bypasslist. However, instead of the original error I am getting the same error when I tried to compile the proxy class via wsdl.exe: There was an error downloading 'http://something.something.com/something/something.ao.api.asmx'. The operation has timed-out. What I find interesting is that the left pane shows all the WS methods but VS.NET times-out trying to download it. Any ideas? Thanks, Mark David Renz <[EMAIL PROTECTED]> wrote: Mark, I do all of my proxy class creation via VS.NET, like you, i am not doing it via code. The problem i was having was that i had not allowed addresses in the bypasslist,, along with the change in default proxy settings, were key for me. Our problem was that internally i could not connect the remote server, however, from home i could (it was a publicly accessible service). So, that kind of pointed directly at the proxy server settings. check out this link: http://support.microsoft.com/default.aspx?scid=kb;EN-US;307220 David Renz Jackson County GIS Services GIS Programmer/Analyst [EMAIL PROTECTED] http://www.smartmap.org phone: 541-774-6039 fax: 541-774-6787 >>> [EMAIL PROTECTED] 07/26/2005 9:03:30 AM >>> David, I did but I'm not referencing the URL via code and I was under the impression that you needed to in order for this to work. Do you have a code sample that you could share? Thanks, Mark David Renz <[EMAIL PROTECTED]> wrote: did you try altering your Machine.config or Web.Config with the following: <configuration> <system.net> <defaultProxy> <proxy usesystemdefault = "false" proxyaddress="http://proxyserver" bypassonlocal="true" /> </defaultProxy> </system.net> </configuration> i had the same problem and this fixed it for me. my proxy server was causing problems for me. >>> [EMAIL PROTECTED] 07/26/2005 7:19:09 AM >>> All, I am trying to generate a proxy class from the command line using wsdl.exe but keep getting the following error: The operation has timed out I can't add a web reference directly in VS.NET because I get the following error: The underlying connection was closed: Unable to connect to remote server. My assumotion was that the above error was caused by the fact that I am behind a firewall and cannot supply an ID and password to authenticate to my proxy and that's why I'm trying to create a proxy class using wsdl.exe. I can open the URL to the webservices (http://yadda.com/ws.asmx) fine in IE. Anyone know how to work around any of these errors? Thanks, Mark [Non-text portions of this message have been removed] Yahoo! Groups Links [Non-text portions of this message have been removed] --------------------------------- YAHOO! GROUPS LINKS Visit your group "AspNetAnyQuestionIsOk" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. --------------------------------- [Non-text portions of this message have been removed] Yahoo! Groups Links [Non-text portions of this message have been removed] --------------------------------- YAHOO! GROUPS LINKS Visit your group "AspNetAnyQuestionIsOk" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. --------------------------------- [Non-text portions of this message have been removed] Yahoo! Groups Links [Non-text portions of this message have been removed] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
