user476566
user476566

Reputation: 1349

.Net web services on linux

I have implemented some web services in .net and hosted it on windows server, how I can port it to linux ? To have the same web services on linux machine, do I have to rewrite it in Java ? Any Ideas.

Upvotes: 4

Views: 6170

Answers (1)

NiladriBose
NiladriBose

Reputation: 1905

A very wide scope of question , so here is a general answer

If you have implemented the service in WCF then mono ( .net on Linux ) ha limited support for it. For all the known issues look at

http://www.mono-project.com/WCF_Development

I have done this before for simple services without much problem.

If you need to support web services on both windows and Linux ,then I can recomend an alternative to WCF

https://github.com/ServiceStack/ServiceStack

Use this to avoid porting effort. This way you won't have to rewrite in java and reuse some of you .net code.

Upvotes: 3

Related Questions