EricRRichards
EricRRichards

Reputation: 474

Developing for IIS and IBM Websphere

My company is looking to develop a web product that will need to run on both Websphere and IIS. Ideally, we would like to use the same framework for both, but I am currently ignorant of the options, if there are any. On IIS, we would most likely use ASP MVC, and JSP on Websphere. Is there some common technology we could use on both platforms?

Upvotes: 0

Views: 173

Answers (2)

Doug Breaux
Doug Breaux

Reputation: 5105

What would be truly common to both is HTML, CSS, and JavaScript. That is, client-side technologies rather than server frameworks. So I'd recommend at least considering one of the JavaScript MVC frameworks. TodoMVC.com compares several of them.

Upvotes: 0

Nick Roth
Nick Roth

Reputation: 3077

IIS is a web server. Websphere (or what just the term Websphere commonly refers to) is an application server, Websphere Application Server (WAS). IIS would be more comparable to IHS (IBM HTTP Server) or Apache HTTP Server.

So the answer to "Is there some common technology we could use on both platforms" is probably JSP since WAS is mostly just a Java application server.

A reference for running JSP on IIS Lightweight servlet engine for serving java application via IIS

Here is a more detailed discussion on application vs web servers What is the difference between application server and web server?

A more general note: Getting the same application to run exactly the same in both environments will likely be a difficult task for any moderately interesting application.

Upvotes: 2

Related Questions