Questions tagged [websphere-7]

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

811 questions
0
votes
0 answers

How to configure Oracle and WebSphere AS 7 interaction via SSL?

I'm trying to configure WAS7 to interact with Oracle via SSL. For connection retrieving I'm using JNDI DataSources. On the Oracle side everything looks fine, OCI applications works. Server public key I put to "NodeDefaultTrustStore" / "Signer" via…
Vladimir Kravets
  • 330
  • 6
  • 21
0
votes
2 answers

when and why to have a HTTP server along with websphere application server?

Applications deployed on Websphere application server can be accessed by the user through the HTTP URL and the context root for that particular application. then when and why people use a Apache / IBM HTTP server in between user and Websphere…
yay_yay_3780
  • 23
  • 1
  • 7
0
votes
1 answer

WAS 7.0 JVMVRFY013 class loading constraint violated

I have a problem about WAS 7.0 class loading constraint problem I see a solution for a problem which is similar to mine, at Stackoverflow(exclude xmlbeans jar from your pom) However this solution didn't work for me. I think my problem is…
0
votes
1 answer

Confused with the Websphere coredump file in Linux

sometimes i can see core dump file of Websphere process generated in my Linux system. I think it as full core file. However, when i check with ulimit -a, that would return with core file size 0 as one of them. From my understanding, that core…
wing2ofsky
  • 926
  • 4
  • 27
  • 48
0
votes
1 answer

Configuring Websphere 7 to use single JAX-WS service instance for all requests

While it's well known that Websphere's JAX-WS implementation is based on Axis2, I have had trouble finding information how to set "scope" for the service. In axis 2 scope can be defined using services.xml. Is this file also available in…
Sami Korhonen
  • 1,254
  • 8
  • 17
0
votes
1 answer

How do I create an XA Compliant topic connection factory in WAS7?

I created a topic connection factory using the WebSphere MQ messaging provider in WAS7. When I lookup the JNDI name, I am given a factory object of type com.ibm.ejs.jms.JMSTopicConnectionFactoryHandle. This implements TopicConnectionFactory, but…
spot35
  • 888
  • 4
  • 9
0
votes
0 answers

Nullpointer exception while persisting entity in websphere 7, ear developed and built on Jboss

We have an application being build and tested in JBoss environment. (Hibernate (Entity Beans) + Oracle DB)...when its deployed in websphere 7, the selects work fine; but when the entity manager tries to persist an entity we get a…
siddhesh jog
  • 160
  • 2
  • 9
0
votes
2 answers

EntityManager injection works in JBoss 7.1.1 but not WebSphere 7

I've built an EJB that will manage my database access. I'm building a web app around it that uses Struts 2. The problem I'm having is when I deploy the ear, the EntityManager doesn't get injected into my service class (and winds up null and results…
0
votes
1 answer

Accessing websphere 8 admin console remotely

I am working on test env setup of WAS 8 on linux machine. can some one tell me how we will be able to access the admin console remotely after the installation? or rather what needs to be done so that we can access the admin console remotely? Also it…
user1374266
  • 323
  • 1
  • 4
  • 19
0
votes
1 answer

From EJB 2.0 to EJB 3.0

Here Is the code that I have to create an EJB 2.0 How can I convert this so can be used for EJB 3.0 java.lang.Object ejbHomeStub = initCtx.lookup(ejbJNDIName); EJBHome ejbHome = (EJBHome) javax.rmi.PortableRemoteObject.narrow(ejbHomeStub,…
otc
  • 694
  • 1
  • 9
  • 40
0
votes
2 answers

JavaEE Application Configuration Management in WebSphere (with restrictions)

We have a JavaEE application running on a WebSphere application server (v7). We want to manage application configuration (key/value pairs) outside the EAR. We cannot use following options due to some valid non-technical reasons: External…
Tushar
  • 670
  • 3
  • 14
0
votes
3 answers

Resolving Mass-loading problems in WebSphere Commerce Instance creation

I am trying to create an instance using the Configuration Manager of WCS 7. I am working on a Win 7 x64 machine with DB2 9.5 64 bit version. I am struck with this Massloading error when the instance creation happens : In createInstanceANT.log file :…
Mor Eru
  • 1,129
  • 3
  • 18
  • 35
0
votes
2 answers

Externalising resource Adapter giving : java.lang.ClassCastException someclass incompatible with someclass

I am working on externalizing Resource adapter rars. Earlier, the rar were packaged inside the /lib of war and everything worked good. Now to make the war light and also generic, I want to externalize resource adapter. What I have done yet Removed…
Mukul Goel
  • 8,387
  • 6
  • 37
  • 77
0
votes
1 answer

error while creating adminclient for websphere 7.0.0.11

I need to develop an application for managing WebSphere Application Server v7.0.0.11. I explored a bit and found out that we can use Mbeans. Actually I need to create something similar as Web-sphere's web console. My problem is that the application…
Apocalyp5e
  • 181
  • 8
0
votes
1 answer

Websphere connection pool issue

I added a new datasource to websphere V7.0 and it works fine, but after some inactivity time the pool will return dead connection, and java would go into waiting till connection timeout expired. The connection pool will work again if I go to…