Results 1 to 3 of 3

Thread: Remote Server Stuff???

  1. #1

    Thread Starter
    Fanatic Member venerable bede's Avatar
    Join Date
    Sep 2002
    Location
    The mystic land of Geordies
    Posts
    1,018

    Remote Server Stuff???

    I am just about to start my first web application in .NET and would like to develop on a remote machine acting as the server.

    The server is on a Lan with SQL Server installed.

    I know this might sound stupid but how to I develop on a remote server?

    Do I just create my new project as normal?
    Will I have problems Debugging?

    Parksie

  2. #2
    Your Ad Here! Edneeis's Avatar
    Join Date
    Feb 2000
    Location
    Moreno Valley, CA (SoCal)
    Posts
    7,339
    The server has to have the framework and at least the Remote Debugging components from the VS install. Then when you make your project instead of using localhost as the address you use the remote computer address. I think the user also needs to be part of the VS Debugger group on the server.

  3. #3
    Lively Member
    Join Date
    Jan 2002
    Location
    Malaysia
    Posts
    64
    Well you need to pick which way you want to use for communication with the remote server.

    Either :

    Web Service (where you pick ASP.net Web Service)

    or

    .Net Remoting (where you typically do a console application or a windows service)

    I'd go for .net remoting (there are some books that focuses solely on it) for best performance.

    If you want maximum interoperatability on the internet with other systems, use Web Services.

    BTW, web services are easier to start with IMHO since basically the main difference bis aetween it and a normal component is <WebMethod()> at the beginning of a function/sub.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width