moola reddy

Greenhorn
+ Follow
since May 30, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by moola reddy

Hi,

How to get new date from a givenDate+7 days

Ex: today date is 06/11/2006
How to add 7 days to the today date so it should give new date 11/06/2006

Thank you
18 years ago
Hi

How to get week No, week start date and week end date from a given Date range
example: Date Range 01/11/2006 - 30/12/2006

How to get

WeekNO WeekStartDate - WeekEndDate

42 01/11/2006 - 04/11/2006
43 06/11/2006 - 11/11/2006

Thank you
18 years ago
Hi

We have 3 applications EmployerWeb, SalesWeb and CustomerWeb and all are running on WebSphere application server6.0
We would like to maintain the Single Sign-on for all applications.

The current system generating one token when logged in to the system and which is a having encrypted UID and PWD.
The home page will display the hyper links which user have the access.
Example:

Sales
Customers

based on the ticket value the respective application is getting the UID/PWD and again login to the system.

I am not happy with this solution. It is creating two sessions one at employerWeb application and other when they click on the link.

How to make it more meaningful

Thank you
19 years ago
Ye, Ye,

I haven't observed that method.

Thank you
19 years ago
Hi,

How to convert Long Time to Time/Date?.

Ex:
Date dt = new Date();
long lTime = dt.getTime();
System.out.println("Long Time "+lTime);

How to convert this lTime to Time/Date?.

Thank you
19 years ago
Hi,

When the session time out, I would like to remove the user details from the DistributedObjectCache. How to do this?.

Thank you
19 years ago
Hi All,

Is there way in the Websphere App Server 6.0 to make servlets/jsp running in two different servlet contexts to share the Session attributes.

We worked out the solution in the Tomcat. Which allows to share sessions when jsp/servlets are running in two different contexts.

I could not see the session management GUI specifying the option for Shared Session Contexts in Websphere 6.0.

When i browsed through the google, i could see some results pointing session sharing in Websphere 5.0.

Do any one help me out understanding how to make the jsp/servlets share the session attributes in Websphere 6.0

Thank you
19 years ago
Hi

I have two WebSphere applications employerWeb and shoppingWeb.
I am unable to forward the page from employerWeb to shoppingWeb?

I want to forward the page from http://localhost:9080/employerWeb/dept/redirect.jsp to
http://localhost:9080/shoppingWeb/signOn.do

here is my code

String strurl = "../shoppingWeb/signOn.do";
//String strurl = "http://localhost:9080/shoppingWeb/signOn.do";

<jsp:forward page="<%= strurl %>" />

its giving error

org.apache.struts.action.RequestProcessor processMapping Invalid path /dept/../shoppingWeb/signOn.do
=======================================

Can we do crossContext in WebSphere?.

I want to pass two values to shoppingWeb from employerWeb without using query
string(I want to keep them private). How?.


Thank you
19 years ago