Questions tagged [websphere-6.1]

Use this tag for questions related to version 6.1 of IBM's WebSphere Application Server.

288 questions
0
votes
1 answer

Problem with connecting to a java web service running on WebSphere 6.1

I have one machine running a java web service on IBM WebSphere. It is using port 9081. I also have a client to this web service written in c#.NET. The funny thing is that I can easily reference the web service in Visual Studio 2005 (I get the wsdl…
Borat
0
votes
0 answers

Does LTPA token expiration prevent sending of SOAP response to standalone application

I am using WebSphere 6.1 server. In my application, we use web services for the communication of standalone client(Swing) with web part. From web part, we use WebSphere MQ to communicate with the Pro*C part. When we trigger a button in client part,…
0
votes
0 answers

How to configure Websphere 6.1 to develop applications with Struts 2?

I have developed a small application with Struts 2 using RAD, but when I deploy to the server, it throws this error in the browser: Error 500: Filter [struts2]: could not be initialized and these errors on the console: [20/11/14 16:39:59:534 GMT]…
Cristian1312
  • 1
  • 1
  • 6
0
votes
1 answer

WebSphere 6.1 - com.sun.xml.ws.spi.ProviderImpl Issue

I am running an application in WebSphere 6.1.0.29 and am getting a com.sun.xml.ws.spi.ProviderImpl not found error. Unfortunately the application isn't written by us so resolving this is proving to be a little difficult. In another environment…
hshah
  • 842
  • 4
  • 14
  • 35
0
votes
2 answers

Getting a connection from a Sybase datasource in WAS 6.1 fails with message "User name property missing in DriverManager.getConnection"

I have a standalone application that needs to connect to a Sybase database via a datasource, I'm trying to connect using getConnection() and get the connection from this Sybase datasource which is hosted in WAS 6.1, sadly I'm getting an error JZ004…
Abel Morelos
  • 1,228
  • 5
  • 20
  • 31
0
votes
1 answer

WebSphere: issue merging plugin-cfg.xml for load balancing

I'm trying to merge and load balance several stand-alone WebSphere 6.1 Express servers. I'm using the instructions provided here: Merging plugin-cfg.xml files from multiple…
Michael Sobczak
  • 1,045
  • 1
  • 24
  • 45
0
votes
1 answer

WebSphere: change port of web service from default to 443

I've created a web service using this example: http://www.albeesonline.com/blog/2008/07/27/creating-a-webservice-using-rad-7/ When I call the web service to get the WSDL, I use a URL like…
Michael Sobczak
  • 1,045
  • 1
  • 24
  • 45
0
votes
1 answer

What libraries are used by Tomcat 7 and Websphere v8.5 for compiling xslt?

We notice significant differences in performance between Tomcat 7 and Websphere 6 in our web application. Same war file was deployed in these two web containers. The bottleneck in Websphere is when it compiles the stylesheets (seen in logs as "XL…
0
votes
1 answer

EJB Reference Configuration Error

I have 2 ears—say, Ear1 and Ear2—for my application, which are deployed in clusters. Ear2 is having Ejb which is being called from Ear1. EJB reference is required for communication between Ear2 and Ear1. I am setting the below value to Target…
0
votes
0 answers

jdbc password change in data sources require restart of the server

After a password change for database access test connections were failing in the Websphere 6.1 WAS DMGR. We then changed the password in the jdbc lookup properties and test connection succeded but in the systemout logs we still are getting invalid…
0
votes
1 answer

WebSphere 6.1 - periodically log number of HTTP sessions

We're running an older J2EE application on WebSphere 6.1 Express. There are periods where users are complaining of slow response times. I suspect this is because the server has a lot of active sessions at the time. I'd like to be able to justify…
Michael Sobczak
  • 1,045
  • 1
  • 24
  • 45
0
votes
1 answer

WTRN0124I: When the timeout occurred the thread

I am getting the below error.Kindly help [8/8/14 21:14:56:939 GMT-08:00] 00000005 TimeoutManage I WTRN0006W: Transaction…
Sats
  • 115
  • 1
  • 3
  • 13
0
votes
1 answer

can stale connection exception cause slowness?

While checking SystemOut.log during a reported slowness in the application I found StaleConnectionException occuring frequently. This exception was not observed earlier and I doubt that if this is the reason for slowness and needs to be resolved.
0
votes
1 answer

How can I enhance a legacy system without the legacy environment?

I am updating a legacy application for my company and it runs on WebSphere v6.1. However, since the company has upgraded to WebSphere v8.5 as the company standard, they have gotten rid of WebSphere v6 instances for development. Ideally this project…
JBMac
  • 329
  • 1
  • 6
  • 18
0
votes
2 answers

make a bean run on application start. EJB3/websphere6.1/Java1.5

I am a little new to J2EE. I have a EJB3 project and I want to run a class on application start-up, how can I do that? I know in EJB3.1 I can use @startup and @singleton unfortunately that is not a option and I have to use EJb3 and java 5. I have…