Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by KDavie

  1. KDavie

    Web User Controls in separate project

    How are you loading the controls? Are you using Page.LoadControl?
  2. KDavie

    Irritating issue with Dynamically loaded controls

    When working with dynamically generated controls, you are responsible for recreating the controls in each post-back, this includes wiring up your events. Make sure you are re-subscribing to the event on each post-back.
  3. KDavie

    Cant debug any process on the server.

    From MSDN..... (Although text is reads VS 2005, applies to 2003 too) full article available at http://support.microsoft.com/kb/318041 ..... Set up remote debugging To use remote debugging, you must add the appropriate user to the Debugger Users group on the remote computer. To do this, follow...
  4. KDavie

    Web Service Help

    ok... sounds like there is an issue with the web method itself.... What is the web-method doing? Do you have any error handling?
  5. KDavie

    Web Service Help

    What happens if you browse the web-service from your server and try to invoke a web-method?
  6. KDavie

    Web Service Help

    Can you post the contents of your app config and the constructor from reference.vb?
  7. KDavie

    Web Service Help

    Look at the constructor in the proxy... Make sure it is retrieving the correct key from the config file.
  8. KDavie

    Web Service Help

    Ok... I just double-checked... You should have a Reference.vb file... this is your proxy... you can either view this file in Windows explorer or you can use the show all files option in solution explorer. To view through Windows Explorer: Navigate to your website folder & open the Web...
  9. KDavie

    Web Service Help

    wsdl.exe is used to generate a proxy for the web service outside of Visual Studio... I was just curious if you used it or just added the web-reference in the VS IDE. It's been a while since I've written a web-service in VB, I thought there was still a reference.vb file but maybe its named...
  10. KDavie

    Web Service Help

    How did you create the web-reference in your project? Did you add it through visual studio or did you use wsdl.exe?
  11. KDavie

    Web Service Help

    There is a reference.cs file... Either click the "Show All" button in your solution explorer or navigate to it on your file system.... it will be in your web-reference folder.
  12. KDavie

    Web Service Help

    k... open the proxy (reference.cs) and make sure that it is retrieving the dynamic URL from the config file. Also, make sure the value (url) in the config file is correct and does in fact point to your deployed instance. If all else fails, delete the web reference and create a new one, this...
  13. KDavie

    Web Service Help

    The URL behavior property of the web-reference
  14. KDavie

    Web Service Help

    Check your proxy... It may be pointing to localhost instead of the correct location... did you set it up as dynamic?
  15. KDavie

    Web Service Help

    Are you able to browse the WSDL on the server?

Part and Inventory Search

Back
Top