peter
peter

Reputation: 8682

Technologies used to create webservices

How many types of technologies/frameworks are used to create web services? I know only of Java and .Net frameworks. Are there any other technologies that support creation of web services?

Upvotes: 0

Views: 292

Answers (1)

Jeff Donnici
Jeff Donnici

Reputation: 2738

Nearly any technology/language that can be used on a web server can be used to provide a web services API. Take your pick - Perl, Python, Ruby, C, PHP, and so on...

Java and .NET may be among the most popular, but that's more a function of how widespread their usage is in general. If you're building a site using PHP, Python, or Ruby then it makes sense to use that same language and share code between the web site and the web services (authentication, data access, business logic, etc).

Provided the language is available to respond to server requests, it's just a matter of accepting input in an accepted format and supplying the output in an expected format (XML, JSON, etc).

Upvotes: 1

Related Questions