all groups > dotnet web services > october 2007 >
You're in the

dotnet web services

group:

new project - remoting, webservices or WCF?



new project - remoting, webservices or WCF? Kai Fransson
10/15/2007 10:10:01 AM
dotnet web services: We're starting a new project with a distributed winform client that
communicates with a central server, primarily all on the same LAN. Large
amounts of data may be sent to and from the client.

My first thought was to use WCF but I was sad to learn that Framework 3 is
not supported on Win 2k workstations, so that is unfortunately not an option
:-(

I like the better speed of _remoting_ over _webservices_, especially since
we are talking about an intranet application.

What technology would you recommend for a new project like this, starting
today?

I would like to be able to switch to WCF in the future when we no longer
need to run the client on Win2k workstation. Would it perhaps be best to have
the server expose separate kinds of "facades" so that a client can connect
using either Remoting, asmx webservices or WCF (This would also require the
client to be able to switch between these ways fo communication)?

Advices on technology, and recommendations of good examples on the web, are
greatly appreciated.

Best Regards
/KF
RE: new project - remoting, webservices or WCF? Kai Fransson
10/15/2007 11:23:02 AM
I should perhaps add that the server part of the application will run on a
Win 2003 server.


[quoted text, click to view]
Re: new project - remoting, webservices or WCF? Scott M.
10/15/2007 7:19:39 PM
Since you can't use WCF and you need to make this application today, I would
say that your choice of remoting vs. web services would then come down to
the need for a proprietary/fast solution or the need for an
non-proprietary/slightly slower solution.

Today, it seems that you don't need to worry about a non-proprietary
solution, so remoting would be fine, but what about the future? Will WCF
save the day BEFORE you need to worry about scaling outside of the intranet?
This is really all you need to think about. Converting a remoting app. to
WCF should be no more troublesome that converting a web service app., so WCF
wouldn't really factor into the decision making process.

-Scott


[quoted text, click to view]

Re: new project - remoting, webservices or WCF? Kai Fransson
10/16/2007 12:42:04 AM
I read somewhere that you can expose more than one endpoint from your WCF
service, so that clients running win2000 can also communicate with your WCF
service. Is this worthwhile, or should I just build a classic remoting app
and then convert it to WCF when the time comes?

Also, any good reading or samples would be appreciated.

/Kai



[quoted text, click to view]
Re: new project - remoting, webservices or WCF? Kai Fransson
10/16/2007 12:22:03 PM
Traditionally we've used Com+ Enterprise Services for scalability and
transaction handling. Do you have any recommendations for achieving this
using WCF?

Most examples I find host their WCF services in a console app, which cannot
be best practice for creating a facade for my server application. Is a
windows service a good facade for my server application? Any advice is
greatly appreciated.

/Kai

[quoted text, click to view]
Re: new project - remoting, webservices or WCF? Spam Catcher
10/16/2007 2:29:40 PM
=?Utf-8?B?S2FpIEZyYW5zc29u?= <KaiFransson@discussions.microsoft.com>
wrote in news:4C7FAE44-E774-4FFC-B9EE-9C324BAF4E1B@microsoft.com:

[quoted text, click to view]

Re: new project - remoting, webservices or WCF? Spam Catcher
10/17/2007 7:13:15 PM
=?Utf-8?B?S2FpIEZyYW5zc29u?= <KaiFransson@discussions.microsoft.com>
wrote in news:2CA5D3AB-A4BB-466A-B472-CBA70496A84B@microsoft.com:

[quoted text, click to view]

Here you go:

http://msdn2.microsoft.com/en-us/library/bb735856.aspx

FYI, .NET 2.0 and WCF has transactional support - so perhaps it might be
good enough without resorting to COM+.

[quoted text, click to view]

Absolutely. Console App vs. Windows Form vs. Services is all schematics.
The underlying syntax is identical across the board... and the way WCF
RE: new project - remoting, webservices or WCF? RAJA
10/23/2007 5:12:00 PM
Hi Fransson,

My project also same like this. Let me know whether i can use the WCF or
Remorting? Can you guide me abt this?

Regards,
RAJA

[quoted text, click to view]
Re: new project - remoting, webservices or WCF? Scott M.
10/23/2007 10:29:44 PM
I think if you read the other posts in this thread, you'll have your answer.



[quoted text, click to view]

Re: new project - remoting, webservices or WCF? RAJA
10/23/2007 11:21:01 PM
Thanks. I'll check it.

[quoted text, click to view]
AddThis Social Bookmark Button