Friday, January 21, 2011

Warnings while starting Oracle SOA 11g

Hello,

Few days back while starting SOA i noticed that SOA gave me the following warning :
"
Warning: JMS queue 'weblogic.wsee.DefaultQueue' is not found, as a result, Web Service async responses via jms transport is not supported. If the target service uses JMS transport, the responses will not be able to come back.
"
I was worried for this warning msg but when i tried to solve it i came accross following conclusion :

It's a harmless warning message and that can be avoided.But still if you don't want to see this WARNING message then please apply the following flag in the JAVA_OPTIONS of your Server :

-Dweblogic.wsee.skip.async.response=true

Why we see this WARNING is your Server Log:

Async web service support is not fully configured. The async response web service uri for this server was not fully deployed because the JMS reliability queue was not defined/deployed: queueName. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message,

set -Dweblogic.wsee.skip.async.response=true.

Enjoy Working with fusion middleware... All the best..


I hope it will help you while working with SOA,

Regards,
Ajinkya

WLST Error - java.lang.UnsupportedClassVersionError

Hello Everyone,

Today i have gone through issue working with WLST, it gives me following error while stopping weblogic server via WLST

" Problem invoking WLST - java.lang.UnsupportedClassVersionError: Bad version number in .class file Done "

I have gone through some documents which gives me some idea about this issue, finally i got solution for the same.

Solution: The jdk version used while creating the domain is not supported. Use higher version ( present in the same WebLogic server installed location) and point it while domain creation.

I hope it will help you while working with WLST...

Keep working and smiling..... :)


Regards,
Ajinkya

Friday, January 7, 2011

Error while accessing Websphere Application Server console

Hi Everyone,

Today i have faced one issues while working on Websphere application server on AIX.

I finished my websphere application server installation successfully but while accesing console, was getting following error.

WebSphere Admin Console SRVE0190E: FileNotFound Errors when clicking certain hyperlinks

Should you find that you have some links in your WebSphere Administration console that generate an error in the following format:

com.ibm.ws.webcontainer.webapp.WebAppErrorReport:

SRVE0190E: File not found: /xxxxxxxxxxx.content.main
at com.ibm.ws.webcontainer.webapp.WebAppDispatcherContext.sendError(WebAppDispatcherContext.java)
at com.ibm.ws.webcontainer.srt.SRTServletResponse.sendError(SRTServletResponse.java)
at com.ibm.ws.webcontainer.servlet.FilterProxyServlet.dispatch(FilterProxyServlet.java)
at com.ibm.ws.webcontainer.servlet.FilterProxyServlet.service(FilterProxyServlet.java)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java(Compiled Code))
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java(Compiled Code))
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java(Compiled Code))
at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java(Compiled Code))
at com.ibm.wsspi.webcontainer.extension.WebExtensionProcessor.invokeFilters(WebExtensionProcessor.java)
at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java)It appears that the admin console couldn’t find the servlet that should be used to display the page.


I did some R & D on it, and finally i got resolution for the same.

in my case, had corrupted Admin console registry. so i run following command for the same from profiles.

iscdeploy -restore


This will cause WebSphere Application Server to reinstall the admin console.

this is very helpful while working with Websphere Application server console...... :)


Hope it will help you...


Regards,
Ajinkya Vichare