deploy a GWT site with aRPC servlet on IIS - iis

is it possible to deploy a gwt site which calles a java servlet on an IIS?
Regards,
Stefan

This thread discusses servlet engines for IIS.

You can use the JK ISAPI plugin to redirect servlet requests to tomcat (assuming you are using tomcat). Then on the gwt client side u can use either Requestbuilder or something as simple as Window.Location.replace("/IISUrl") to send the request to IIS.

Related

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?
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.
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.

Migrating from Java Page Flow to JSF

I am currently working on a project that uses WebLogic Portal and Apache Beehive Page Flow Controller.
The team would like to remove WebLogic Portal and the Page Flow Controllers with JSF. Currently we have not found a way to manage the workflow with JSF as with PFC.
With Spring MVC it would be easy because we only remove Beehive annotations using Spring MVC Annotations but we would like to go directly with JSF so later we can start using icefaces.
Any suggestions of where I can find information about what we want to do?
Thank you very much in advance.

how to separate liferay web server and application server

I have a requirement to separate the liferay into web component in apache web server and service into apache tomcat. Could anyone provide me with some pointers on how to do the same?
thanks
L Raj
Apache cannot execute any jsp page or servlet, so you only could separate the static files (like images, css, js and so on) from the dynamic's (jsp, servlets, etc.).
So, as Olaf indicate in his comment we need more information about your objective or use the Apache features to make the split.
Best regards.

JSF and Phonegap

I am a new Java developer and I would like to develop a JSF mobile application. I know I could use JSF 2.0 together with Richfaces, IceFaces or PrimeFaces to develop my app, but I think it would run only on the server and I am not sure if it would have access to offline storage and device’s camera, required by the application.
Question: is it possible to use Phonegap or a similar framework to make my JSF mobile app go native?
I don't think JSF and phonegap can be used together. Phonegap's app is HTML/CSS/javascript app, which doesn't require server. It is client only. JSF app is client-server: application logic mostly located on server and all html generated by server. You can't port it to phone now.
If you need access phone's stuff: offline storage, camera, you can create app in phonegap, sends ajax request to your server. Server can provide some API and you can write it in java. You don't need JSF in this case. Google for REST and Spring for java web services. Or better check this question: https://stackoverflow.com/questions/1710199/which-is-the-best-java-rest-api-restlet-or-jersey
You might want to look at Primeface Mobile. It is a UI toolkit for writing JSF web applications tailored for mobile clients.
http://www.primefaces.org/showcase-labs/mobile/index.jsf

Integrating IIS 7 and Glassfish server

I'm trying to integrate IIS 7 and glassfish server.
So that the webpages from my web app are pulled up from the glassfish server over the internet.
I just wrote a blog post about this. It's pretty simple to do. All you need to do is install a server farm to route your requests to Glassfish instead. Check this post out for more detailed instructions.
http://jstoup.wordpress.com/2012/04/25/how-to-integrate-glassfish-with-iis/

Resources