Exception in Admin Console: Can't view Enterprise applications
Hi all,
I tried to deploy my web/enterprise project to the application server. It did not work and after looking at the server console i saw the exception
here is the exception below. Please help I am new to Web applications go easy on the jargon.
A "com.sun.enterprise.tools.guiframework.exception.FrameworkError" was caught. The message from the exception: "Unable to get View for ViewDescriptor 'enterpriseApplications'"
The root cause is "com.sun.enterprise.admin.common.exception.MBeanConfigException: Component not registered"
[565 byte] By [
Scientist2] at [2007-11-26 8:10:57]

# 1
You forgot to state which appserver version you are using. Anyway, this type of error usually indicates an issue with an application. You should have a closer look at your application, especially deployment descriptors.
# 2
Thanks Sultal for your reply. The sever I am deploing to is the java sun application server. You say I should look at my deployment
descriptors. I am new to this area of development so please excuse my ignorance: where are the deployment descriptors and what sort of errors should i be looking at within them?
thanks
# 3
What version of the Sun Application Server? 8.2? 9.0?
Can you look at your server.log (located under $AS_INSTALL/domains/domain1/logs/server.log)
see if there are any exceptions there?
You could try to use command line to list the components and undeploy it.
$AS_INSTALL/bin/asadmin list-components
(this is to see whether your application is still there)
$AS_INSTALL/bin/asadmin undeploy [your application name]
(if it's there, you could try to undeploy it)
I've seen quite a few similar problems as what you encountered: after deployment through admin console failed, admin console starts to act weird.
If you are able to share your application, and you've seen this problem consistently with the application, we would like to take a look at this and investigate it.