|
-
Oct 24th, 2002, 04:23 AM
#1
Thread Starter
Fanatic Member
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?
-
Oct 24th, 2002, 10:26 AM
#2
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.
-
Oct 24th, 2002, 11:48 AM
#3
Lively Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|