manasa asapu

Greenhorn
+ Follow
since Sep 30, 2002
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 manasa asapu

Hi,

We are moving from WAS4 to WAS5. WAS5 docs say that WAS 4 apps. should work as is in a WAS5 env. if u create WAS4 datasources. But there is an issue with an app. which has two web modules. On trying to deploy the application, the following error is dispalyed - ADMA0007E: Validation error in task Mapping Resource References to Resources
JNDI name is not specified for reference binding jdbc/remktHPDC in module VR Security Management."
EnterpriseApp Installation failed
WASX7309W: No "save" was performed before the script "/clocal/wasadm/user/wassys/wasscripts5/jacl/deployApp.jacl" exited; configuration changes will not be saved.

I looked at the web.xml file and the resource reference is defined as:
<resource-ref id="ResourceRef_1">
<description>DB Connection</description>
<res-ref-name>jdbc/remktHPDC</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>CONTAINER</res-auth>
</resource-ref>

Please tell me what needs to be done to overcome this error.
Thank You
Manasa
19 years ago
Does anyone have a solution to the problem described?
Thank You
Manasa
20 years ago
Hi,
I have a clustered websphere environment and a single webserver tied to this and running on a different host. So in total I have 3 independant machines. One running webserver and the other two websphere. The two websphere machines have been configured to support horizontal clustering.
There is this application that uploads a lot of images. Since the webserver is split, I am not sure how to have images written to the webserver docroot. The uploaded files are also getting written to either one of the docroots of the app server machines, depending on which JVM is executing the image upload code. Can anyone suggest a solution of having to write the images to the webserver?
Thank You
20 years ago
Hi Kyle,
Thanks much for the update!
I did find another solution to the problem at hand and it worked. Here's a link to the article -
http://www-3.ibm.com/software/data/db2/udb/ad/db2irfp7/db2ir326.htm
Manasa
21 years ago
Hi,
I am getting the following error while trying to connect to a DB2 database from WSAD.
COM.ibm.db2.jdbc.DB2Exception: [IBM][JDBC Driver] CLI0637E QUERY cannot be found.
My desktop is installed with WSAD411 and the DB2 version is 7 with Fix Pack 6.0.
Here's the snippet of the code that is part of the servlet:
ResultSet rs1 = stmt1.executeQuery("SET SCHEMA srvr1215");
String query = "select * from M_USER_PROFILE where USERID='"+name+"' and PASSWORD ='"+passwd+"'";
ResultSet rs2 = stmt2.executeQuery(query);
while(rs.next()){checkUser = rs.getString(1);checkPass = rs.getString(2);}
Please let me know if you have encounterend this error and what you did as a solution. Thanks in advance!
21 years ago
I've uninstalled WSAD402 and upgraded to WSAD411. So far everything is working great! Thank You
21 years ago
Hi, All of a sudden my WSAD on WIN2000 started acting weird. When I start to do a build on my project or try to export the EAR I come across this error java.lang.NullPointerException encountered while running com.ibm.iwt.linksbuilder.LinksBuilder
On looking for possible solutions on the web, the recommendations were to delete the link_table_states.txt from the workspace directory beneath
.metadata\.plugin\com.ibm.etools.j2ee\yourwebproject\.
I did the above but it didn't seem to work.
Any tips and hints on this problem will be greatly appreciate. Thank You
21 years ago
<UriGroup Name="media/media.war_URIs">
<Uri Name="/media/*"/>
</UriGroup>
21 years ago
Thanks Patrick for your input!
I am working off of a UNIX machine. Either way, I checked the plugin-cfg.xml and this is what I found (I assume this is the file that you are referring to).
<UriGroup Name="media/media.war_URIs">
<Uri Name="/media/*"/>
</UriGroup>
If otherwise, please direct me to where the file is located or what it is called. Once again thanks for your assistance in this matter!
21 years ago
I was able to successfully deploy the EAR on the server. The user input values are posted to a servlet from a HTML page. On submitting the form, I receive a HTTP 404 error.
The websphere version I am using is was4.0.2, the web server is IBM HTTP server.
On looking at the logs, there are no errors logged in the Application Server, but the web server logs a "File does not exist". Has anyone come across this problem? If so please provide feedback in problem resolution. Thanks in advance!
21 years ago