Yogesh Wani

Greenhorn
+ Follow
since Jul 29, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Yogesh Wani

Can you share the script.

And the application has around 900 jsp's in total. And we cannot have more than 1 hr of down time for deployment.
16 years ago
I would prefer the jsp to be precompiled at the packaging time.
Also being an enterprise application the deployment time will be very high as it will compile the jsp.
16 years ago
Put it in the lib folder of the WEB-INF or any folder which is in the classpath.

Regards
Yogesh
16 years ago
I am working on an enterprise application. When I deploy the application ear in AIX m/c one of the jars file when loading goes in a loop.
The error message is

statx("/app/WebSphere6/profiles/profileCustom01/installedApps/Cellgcebsap1eud/application.ear/resources/A.jar", 0x75F048D0, 128, 010) = 0
statx("/app/WebSphere6/profiles/profileCustom01/installedApps/Cellgcebsap1eud/application.ear/resources/A.jar", 0x75F04898, 128, 010) = 0
open("/app/WebSphere6/profiles/profileCustom01/installedApps/Cellgcebsap1eud/application.ear/resources/A.jar", O_RDONLY|O_LARGEFILE) = 335

These messages are AIX box process messages.
We get these messages by applying below command

truss -p 678789 ( 678789 is the PID of our application.)

I include the below "-Xdebug" option in Generic JVM arguments and start the server. The server is starting properly with out errors.

-Djava.security.debug=failure -Djava.awt.headless=true -DOapplogpath=/app/appreg1/appserver/applogs/de -Dclient.encoding.override=iso-8859-1 -Dfile.encoding=iso-8859-1 [B] -Xdebug [B].

I cannot use this "-Xdebug" option in the UAT & production.

I am not able to understand the reason for this looping and the way to solve this issue.
[ May 08, 2007: Message edited by: Yogesh Wani ]
16 years ago
Hi,

I want to precompile my JSP files and then create the war files.
Also I would prefer not to have the generated java files in my war.
I tried with the "wsjspc" provided by websphere but it is not working.
Please note that there are static include in these jsp's which i am trying to compile.

I have reached a state where i am able to generate java files of the jsp.
But there as many errors as some of the jsps are static include.

The command that i give to excute this is
ant jspc2 -verbose
After this i get a error
Unable to parse setupCmdLine: null\bin\setupCmdLine.bat (The system cannot find the path specified)

Appreciate if any one could help in this.

Regards
Yogesh

[ May 07, 2007: Message edited by: Yogesh Wani ]
[ May 07, 2007: Message edited by: Yogesh Wani ]
16 years ago
Hi,
I am using a html meta tag to call another url. the meta tag is
<META http-equiv='refresh' content='0;URL="<%=strPath%>"'>
where strPath is my URL
This meta tag in a jsp page.
It works fine in IE. But when i try it on netscape 4.7 and above it says "Document contained no data. Try again later, or Please contact System administrator". The page source at this point is
<TITLE>Missing Post reply data</TITLE>
<H1>Data Missing</H1>
This document resulted from a POST operation and has expired from the
cache. If you wish you can repost the form data to recreate the
document by pressing the <b>reload</b> button.
But if i reload the same page again by clicking on the reload button it works fine.
I am using Webshpere 4.0 as my app server.
What i am doing is that i am calling a peoplesoft url from a jsp page
Can anyone explain me why this happens.
[ July 29, 2003: Message edited by: Yogesh Wani ]
20 years ago
JSP