Berlin Brown
Berlin Brown

Reputation: 11724

Running ibm websphere like setup on Apache Tomcat or some open server

Is there a way to mimic IBM web sphere on an open appserver? There are functions we use, ibm's jsecurity_check and their cookie ltpa token. That should be it to get a functioning ibm like server. Would those be available from an open server. Even an open version of ibm websphere.

Upvotes: 0

Views: 447

Answers (3)

ebullient
ebullient

Reputation: 1280

I'm wondering if you're looking for something open, or something smaller. If you're already using WebSphere, but are looking for something smaller/lighter that still supports LTPA tokens, you might want to check out the new Liberty profile in WebSphere Application Server 8.5 (which was just announced). You can get the low-down and download versions to play with from http://wasdev.net

(disclaimer: I worked on it, I am biased)

Upvotes: 0

Carlos Gavidia-Calderon
Carlos Gavidia-Calderon

Reputation: 7253

The usage of j_security_check is defined in the Servlet Specification, so any Java Web Container is compatible with that.

On the other side, LTPA token is an IBM Techology that's only used by IBM Products, so you need to find another way to implement single sign-on. As @Manglu said, that's more a Container concern that shouldn't have any impact in your application.

Some SSO solutions are described in https://stackoverflow.com/questions/173704/which-sso-framework-to-use

Upvotes: 1

Manglu
Manglu

Reputation: 11344

I am not sure what you mean by open version. If you are looking at free versions of WAS, you should look at WAS Developers edition

http://www-01.ibm.com/software/webservers/appserv/developer/

If your production is WAS then i would suggest you use this

Deploy your applications with complete fidelity to a WAS production environment, rendering development to production migration a non-issue

How are you using the LTPA token in your application? This should typically be under the hood and you don't necessarily need to be using that in your application. I would be interested in hearing what you do with the LTPA token in your application!

HTH

Manglu

Upvotes: 0

Related Questions