Lakshmi Kishore

Ranch Hand
+ Follow
since Aug 04, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Lakshmi Kishore

Hi,
We Created multiple AppServers on a Node and deployed the applications. we observered more connection at the DB Side from the WAS Server(It is giving only node name). Is there any way to find which appserver created a perticular connection, as we are using the same frame work for all the applications its difficult to find which application is causing the connection problem.
20 years ago
use the command from wscp
Module install /Node:$node/ "War File Path " -contextroot "context" -redeploy -appname "App Name" -modvirtualhosts "Virt Host" -moduleappservers "App Server Name"
21 years ago
hi,
Which version of the IHS U r using? i tried with 1.3.19, but could not successed. I was told by IBM guys that, mod_gzip equalient is mod_deflate in IHS, try that. In IHS 2.0 it was included, i tried , it is working form me.
21 years ago
try this,
Module install /Node:$myNode/ $warLocation -contextroot $myContextRoot -appname /EnterpriseApp:$EnterpriseAppName/Module:$ModuleName/ -modvirtualhosts $virthostlist -moduleappservers $appsvrlist
21 years ago
Hi howard,
I am not able to tell what was the problem exactly, could you please send the client (just client) code, so that i can take a look and see if i can find some thing.
21 years ago

Originally posted by Dan Pete:
Hi All,
I was trying to start Websphere Admin Server 4.0 service in control panel, services. But I am getting the following error.
"servcice-specific error code 10"
I am enclosing the log file contents also here.
[03.09.19 13:28:39:568 MST] 4c4132a5 Server U Version : 4.0.1
[03.09.19 13:28:39:598 MST] 4c4132a5 Server U Edition: Advanced Edition for Multiplatforms
[03.09.19 13:28:39:598 MST] 4c4132a5 Server U Build date: Thu Aug 09 00:00:00 MST 2001
[03.09.19 13:28:39:598 MST] 4c4132a5 Server U Build number: a0131.07
[03.09.19 13:28:39:999 MST] 4c4132a5 ORBRas W com.ibm.CORBA.iiop.Util Util P=319648 =0:CT JORB0012: Pass by reference has been set to: true (NoLocalCopies = true)
[03.09.19 13:28:44:165 MST] 4c4132a5 DBMgr F SMTL0026E: Failure to create a data source: com.ibm.ejs.cm.portability.ResourceAllocationException: [IBM][CLI Driver][DB2] SQL0904N Unsuccessful execution caused by an unavailable resource. Reason code: "00D70025", type of resource: "00000220", and resource name: "DB2.DSNDBC.DSNDB04.LOCKRTAB.I0001.A001 ". SQLSTATE=57011
at java.lang.reflect.Constructor.newInstance(Native Method)
at com.ibm.ejs.cm.portability.PortabilityLayerImpl.translateException(PortabilityLayerImpl.java:184)
at com.ibm.ejs.cm.portability.DB2ConnectPortabilityLayer.createTable(DB2ConnectPortabilityLayer.java:228)
at com.ibm.ejs.cm.pool.ConnectO.createTable(ConnectO.java:1725)
at com.ibm.ejs.cm.proxy.ConnectionProxy.createTable(ConnectionProxy.java:157)
at com.ibm.ejs.cm.lock.RowUpdateLock.<init>(RowUpdateLock.java:43)
at com.ibm.ejs.cm.portability.PortabilityLayerImpl.createLock(PortabilityLayerImpl.java:870)
at com.ibm.ejs.sm.util.db.DBMgr.initialize(DBMgr.java:212)
at com.ibm.ejs.sm.server.AdminServer.initializeConnectionManager(AdminServer.java:1135)
at com.ibm.ws.runtime.Server.initializeRuntime0(Server.java:943)
at com.ibm.ejs.sm.server.ManagedServer.initializeRuntime0(ManagedServer.java:407)
at com.ibm.ejs.sm.server.AdminServer.initializeRuntime0(AdminServer.java:1104)
at com.ibm.ws.runtime.Server.initializeRuntime(Server.java:882)
at com.ibm.ejs.sm.server.AdminServer.main(AdminServer.java:391)
at java.lang.reflect.Method.invoke(Native Method)
at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:158)
It seems to be similas problem which you were discussing. Please help me to get out of this error. Thanks for ur help


---
Hi, its problem with Admin Repository. please check the Repository Database, whether you gave the correct URL username and passwd.
21 years ago
hi,
it is hard to tell what exactly went wrong with the info you provided. could you please provide more info about the error message. if possible copy the error message here.
verifier fails with different reasons, its hard to tell the what went worng.
21 years ago
use the DrAdmin
DrAdmin.sh -serverPort $PORT -dumpThreads , this will give the thread dumps on WAS4.x versions.
21 years ago
its works in the same way, no special setting are necessary and it won't impact your applications.
21 years ago
try this, its working for me in WAS4,
Hashtable env = new Hashtable();
env.put( Context.INITIAL_CONTEXT_FACTORY , "com.ibm.websphere.naming.WsnInitialContextFactory");
javax.sql.DataSource ds =(javax.sql.DataSource)javax.rmi.PortableRemoteObject.narrow((new InitialContext()).lookup("DataSourceName"),javax.sql.DataSource.c
lass);
java.sql.Connection con = ds.getConnection();
java.sql.Statement stmt = con.createStatement();
java.sql.ResultSet rs = stmt.executeQuery("select * from tab");
21 years ago
Hi,
While starting AppServer in WAS4, i am getting following error
---error_start---
W WTRN0017W: Encountered an error in XA recover operation: XAER_RMERR
X WTRN0031E: Error to recover XAResource:
--error_end----
If i get this error, i have to restart the complete node. can anyone tell me how to over come this problem? and y this error occurs. plz ....
21 years ago
Congrats man....,
Thanks for all the links....
Do u have Oracle client installed in your system?
21 years ago
Hi,
Check the action path in struts-config.xml file and action path of your calling/submitting from JSP/Servlt.
check whether u r url mapping schema is mapped correctly.
if u feel every thing is correct. give me some more details of u r code and .xml file mapping.i will try to see.
[ January 15, 2003: Message edited by: Lakshmi Kishore ]
21 years ago
Hi,
I think following code might be helpfull to you.
// Remove the obsolete form bean
if (mapping.getAttribute() != null) {
if ("request".equals(mapping.getScope()))
request.removeAttribute(mapping.getAttribute());
else
session.removeAttribute(mapping.getAttribute());
}
this is the code used to invalidate/reset the form-bean. complete code is avalibale in struts-exampls Action.
21 years ago