Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have posted this question on the IBM forums but just in case no answer comes from there I thought I would try my luck here.

I have just upgraded my version of WebSphere Application Server for Developers from 7.0.0.19 to 8.0.0.1. I notice what looks to be a bug in WAS 8. I have an Enhanced EAR, I have a build that creates it. I include a libraries.xml file as well as a deployment.xml in the root of the EAR archive. The application references one shared library. When I deploy the application to WAS 8 the shared library reference does not get configured correctly. When I go into the Admin Console I see that for some reason WAS has surround my library name with quotes. So instead of: Spring 3.0.5.RELEASE

it looks like: "Spring 3.0.5.RELEASE"

I can manually fix this in the Admin Console. This didn't occur in WAS 7 at all so I can only assume it is a bug. I have tested this off Windows XP and AIX and the same behaviour occurs.

Is there an open issue for this? I don't know where I can search / track open issues for WebSphere. If there is a site to search for open issues please can someone forward me the link to that.

Is there a work around to this so that I don't have to manually set the shared library each time I deploy the application?

thanks

share|improve this question
2  
This does sound like a product issue. I would recommend opening a PMR with IBM if possible. I might guess that the issue is the space; perhaps try "Spring-3.0.5.RELEASE" instead? – bkail Oct 7 '11 at 18:49
@bkail thanks removing the space got rid of the problem (still works in was 7 though). If you answer the question I will accept your answer – Ross Oct 10 '11 at 9:10
Sure. I'm glad you were able to workaround the issue. I agree that there is something wrong with 8.0 if the same EAR works fine on 7.0. – bkail Oct 10 '11 at 22:23

2 Answers

up vote 3 down vote accepted

This sounds like a product issue. I would recommend opening a PMR with IBM if possible.

(I might guess that the issue is the space; perhaps try "Spring-3.0.5.RELEASE" instead?)

share|improve this answer

Hi the problem is with a special characters, I had the same problem and I solved changed the blank spaces for underline, in your case Spring_3.0.5.RELEASE maybe you will need quiet the dot too... is better if you try Spring_3005_RELEASE

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.