Questions tagged [websphere-7]

Version 7.x of IBM WebSphere Application Server (WAS)

811 questions
0
votes
1 answer

Websphere 7.X. Set enabled connections to JMX via RMI

How to enable JMX connection via RMI in Websphere 7.x? I have a requirement: So the server has to enabled for JMX connection via RMI. Is server has enabled JMX connections via RMI by default? Or I must change in Application servers > server1 >…
WelcomeTo
  • 19,843
  • 53
  • 170
  • 286
0
votes
1 answer

java.lang.ArrayStoreException IBM Websphere

I am getting a java.lang.ArrayStoreException whenever I attempt to run an update query using JPA 2.0 and Websphere. I am using the test utility, and I successfully update the correct rows and so forth, no transactions are rolled back, I just get…
SoftwareSavant
  • 9,467
  • 27
  • 121
  • 195
0
votes
1 answer

EC_GENERIC_REDIRECTVIEW Doesn't works only on production server and after a 30sec load

I've a case I whould like to understand. Here is two different way to redirect to a page after a Command job: (On WCS7) First: TypedProperty rspProp = new TypedProperty(); rspProp.put(ECConstants.EC_VIEWTASKNAME,…
Dekx
  • 402
  • 2
  • 15
0
votes
1 answer

Web servers Error : Message: Missing message for key "" in WAS 7

I am trying to create webservers under Servers ---> Server Types ----> Web Servers ----> New Error : An error occurred while processing request: Message: Missing message for key "" javax.servlet.jsp.JspException: Missing message for key "" …
Mad-D
  • 4,479
  • 18
  • 52
  • 93
0
votes
2 answers

Custom repository adapter in clustered environment

I'm planning to use a Custom Repository to manage security in Websphere Portal V7. According to this article, to get this working I need to edit some configuration files in the Server, run some commands and copy some JARS. The article refers to a…
Carlos Gavidia-Calderon
  • 7,145
  • 9
  • 34
  • 59
0
votes
0 answers

WAS7 Fixpack21Issue

I have WAS7 installed & applied fixpack21 last week, since then i was seeing jax-ws web services xml response contains xsi:nil="true" even the element had a value. this is happening for decimal fields. Any thoughts please? Thanks
Naresh
  • 21
  • 2
0
votes
1 answer

Datasource connection failure in WebSphere Application Server 7: Error Code = 17,433

I am trying to configure data-source in WAS 7 and facing below mentioned error. Error: Messages The test connection operation failed for data source APDataSource on server adminagent at node appsrv01 with the following exception:…
Mad-D
  • 4,479
  • 18
  • 52
  • 93
0
votes
1 answer

JSPG0005E: tld file could not be found for uri[http://myfaces.apache.org/tomahawk] prefix [x]

i m using jsf 1.2 and rich faces 3.3.2. While tying to deploy my application on websphere 7 server , i recieved following error JSPG0227E: Exception caught while translating /pages/summary/summary.jsp: /pages/summary/summary.jsp(0,1) -->…
learner
  • 757
  • 2
  • 14
  • 35
0
votes
1 answer

Basic Authentication on websphere 7

I am using websphere 7 file based basic security for my simple webapplication. My application contains two screen 1.Add Partner 2.List Partner. For this i have created two roles 1.AddPartner 2.ListPartner. I mapped this two roles with different…
Mohan
  • 3,893
  • 9
  • 33
  • 42
0
votes
1 answer

Authenticate application users using Kerberos and WAS7

I am struggling for a while to put things head to head and solve this issue but with no luck. I am trying to authenticate my java application users through AD using Kerberos. I have created the KDC as below: [libdefaults] default_realm =…
0
votes
2 answers

Call bean of project A from servlet of project B

I have a Java EE server that calls a bean in project A from a Servlet in project B. Both projects are in the same "cell" (cluster). I would like to go through a load balancer as well. I do not want to use Message Driven Beans or Web Services. Is…
otc
  • 694
  • 1
  • 9
  • 40
0
votes
2 answers

Websphere 7 EAR using OpenJPA 1.0

We have an EAR application that contains a WAR, Utility project and a JPA project. The JPA project contains all our entity classes and in the META-INF directory is our persistence.xml which is defined as follows:
Burmudar
  • 263
  • 5
  • 14
0
votes
1 answer

Concern on Websphere Portal application file remove

i've got one issue with Websphere Portal application. The situation is when we removed one uploaded image file of Portal application from WAS intsalledApps folder path directly, that file would be regenerated by itself after we restart Websphere…
wing2ofsky
  • 926
  • 4
  • 27
  • 48
0
votes
1 answer

Can we keep the installed application and created servers when running removeNode from WebSphere?

Recently, we've got request to refederate current WAS 6.1 Node to new WAS 7.1 DmgrNode. Right now, that WAS 6.1 Node is running under V6.1 DmgrNode. From my understanding, when using removeNode against 6.1 Node, all the installed applications and…
wing2ofsky
  • 926
  • 4
  • 27
  • 48
0
votes
1 answer

How to load a Properties File when the ClassLoader is in the EJB jar and the Properties File is in war

I have this problem. I want to load a properties file located in a war file but the class loader is in another jar file. But they are compiled in one ear file. When I place the properties file in src folder of the jar file's project, it works but I…