Questions tagged [websphere-7]

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

811 questions
0
votes
4 answers

WebSphere MQ MessageListener (Similar to JMS Message Listener)

I have the MQConsumerClass that retrieves the messages from the queue as follows. while (running) { try { MQMessage rcvMessage = new MQMessage(); MQGetMessageOptions gmo = new MQGetMessageOptions(); gmo.options =…
Lwin Htoo Ko
  • 2,326
  • 4
  • 26
  • 38
0
votes
1 answer

Websphere j_security_check struts2 issue

I have a web project working fine in JBOSS with form-based auth. But when i deploy the same in websphere 7 i am getting HTTP 500 error. My web.xml Test struts2
paramupk
  • 626
  • 1
  • 11
  • 32
0
votes
1 answer

Websphere Cluster - Spring file Listenner

I have a Websphere Cluster Setup v7. Server A1 Load Balancer, A2 (deployment Manager), B(WAS) , C(WAS). In server B and C ejb,web and a spring application is deployed. Spring application listens to a folder and when a file comes to that folder it…
paramupk
  • 626
  • 1
  • 11
  • 32
0
votes
3 answers

What are the advantages of Mojarra JSF over IBM JSF (which is by default on Websphere7 server)

I am using Websphere7 server and it is shipped with a default IBM version of JSF. Are there any benefits that I may get from overriding the default IBM JSF with Mojarra JSF? If I use Mojarra with Webspehere7, will I gain something?Should I go with…
user1455719
  • 1,045
  • 4
  • 15
  • 35
0
votes
2 answers

JSF Application Fails to start in Websphere Application Sever 7

I am facing problems while starting my application in the WAS Console. The application is a simple Hello World JSF servlet. I'm using Websphere Application server version 7.0.0.9. JSF 1.2 with facelets 1.1.14 When I try to start the application, I…
Nithin Satheesan
  • 1,546
  • 3
  • 17
  • 30
0
votes
1 answer

JAX-WS Webservice Class initialisation block in a

A bit of newbie on Webservices, but here's a tricky one I'm struggling with finding a better way to implement. See code below: instead of having to invoke the setClientIPAddress method on each webservice method, is there a way of doing this just…
stack
  • 115
  • 2
  • 6
  • 19
0
votes
3 answers

Facing issue in Webservice Call from IBM WAS7

I have a web service deployed on Oracle Weblogic 11G. The web service has been tested using weblogic's internal test client and is working. The Client stubs for this web service is built using IBM WAS 7 inbuilt script (WSDL2JAVA.SH). The stub is…
Fr_nkenstien
  • 1,923
  • 7
  • 33
  • 66
0
votes
2 answers

consequences of adding class files directly into an exploded deployed ear in WAS 7

I would like to know what are the pros and cons, if any, of injecting or dropping java class files into an exploded ear file that is deployed in WAS 7. When we install the packaged ear file it gets exploded into a certain temp directory and we can…
sarmahdi
  • 1,098
  • 4
  • 21
  • 61
0
votes
1 answer

OpenJPA Webspere 7 Log4j configuration

Guys I’m struggling with this one. I am trying to redirect logging from systemout. to a log4j rollingappender file with no success, below is a sample of my persistent.xml
stack
  • 115
  • 2
  • 6
  • 19
0
votes
1 answer

WebSphere-7 - Stopping our running application from WAS console shuts down WAS

We've deployed our EAR application in WAS-7. This EAR application uses asynchbeans, Work Manager. Purpose of this application is to have the work manager spawn some works, at the start of a servlet. These works are intended to run constantly, doing…
ranjitp
  • 11
  • 3
0
votes
1 answer

Access EJB 3.0 as an EJB and as a web service on Websphere 7

I want to deploy an EJB 3.0 stateless bean to WAS7 so I can access it as an EJB through a local interface and also as a jax-ws web service. My bean looks as following: @Stateless @WebService public class UserManagerImpl implements UserManager { …
Dmitry Klochkov
  • 2,484
  • 24
  • 31
-1
votes
1 answer

BOD in WebsphereCommerce Version 7

Can anyone explain in detail about BOD in websphere commerce?
sree
  • 43
  • 3
  • 6
-1
votes
1 answer

WAS7 and server Profile with multiple applications

Where i work right now, they have about 60 apps (intranet and internet) running. Most apps use a datasource, JMS Queues, Topics etc. They use WebSphere and right now, each application have a specific profile that we have to import from a backup…
Cygnusx1
  • 5,329
  • 2
  • 27
  • 39
-1
votes
1 answer

Launchpad.exe not working on Websphere V7

After extracting the zip file. The launchpad.exe is not opening up the setup wizard. Please help me set it up.
-1
votes
1 answer

Websphere 7.0 throwing 503 exactly after 180 seconds when the external service hasn't replied yet

I developed a struts2 application that writes the files to an external system (RESTful web service that has been written in PHP) which has to convert the files to TIFF and also scan these files. Here's the code snippet: HttpURLConnection conn =…