Best way to make Linux Web Services? [closed]

2019-02-16 15:31发布

I have a server that is running Ubuntu Linux Server Edition. I once had a Windows Server and it is easy to create web services using ASP.net on Windows. Linux on the other hand does support ASP.net using Mono, but is isn't as full featured as Windows. So what would be the best way to create xml web services on a linux server box?

Thanks

标签: linux service
11条回答
We Are One
2楼-- · 2019-02-16 16:02

I guess the best answer depends a bit on what you really need, but one option is to use any of the recent web frameworks, such as Rails, CakePHP, or Django, which allow you to easily define database backed models, and then compose dynamic sites. Turnaround on these frameworks can be measured in minutes for simple sites.

查看更多
Explosion°爆炸
3楼-- · 2019-02-16 16:05

There's a plethora of materials available with a simple search for "PHP Web Service" on Google. I'm not really sure what language you're using or what type of service you want to set up so I went with PHP Soap.

http://www.onlamp.com/pub/a/php/2007/07/26/php-web-services.html

查看更多
冷血范
4楼-- · 2019-02-16 16:08

Although it is based on a commercial product the following is an excellent primer to assist you in understanding how you would develop a Java based web service on Linux. If you find a similar tutorial based on free software please share it.

查看更多
女痞
5楼-- · 2019-02-16 16:11

There's a lot of industry standard specification and implementation in Java dealing with all aspects of server side web programming. Start off by an open source implementation such as Apache Tomcat and/or any of http://ws.apache.org/

查看更多
别忘想泡老子
6楼-- · 2019-02-16 16:12

If you want to use ASP.net then use a windows server.

If you have to use Linux for some reason then you need to learn another language to work properly in the linux environment.

查看更多
登录 后发表回答