Shanmugam Muthukumarasamy

Ranch Hand
+ Follow
since Jan 11, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Shanmugam Muthukumarasamy

I would like to clear the cache by demand (from JSP maintenance page) for all the websphere application server instances from the cluster. I hope that I can get all clone-ids from webserver plugin-cfg.xml file.

Any help appreciated.

Thanks,
Shan
14 years ago
Hi,

Thanks for sharing.

If I understand the purpose of "Equinox p2 Update" correctly, this provides the "Software Updates..." option under the Help menu.

If that is the case, I have installed other plugins in my RAD using that (Equinox p2 Update) option only.

Installing JADclipse is slightly different in my case, I could not add remote/local site to the JADclipse and I was prompted with error message "there is no update site" and hence I have to do the above steps I have explained already.

If you have tried installing Jadclipse with "Equinox p2 Update" option, can you share the specific details on that.

Thanks,
Shan
15 years ago
Thanks everyone .

I figured out this issue. Here are the steps.

1. Download Jad.exe and extract the content to the desired folder.
example: C:\Jad
2. Download the Jadclipse plugin and keep that under C:\Program Files\IBM\SDP\plugins
3. Create the shortcut for RAD; Right click on the RAD short cut and select "properties"; On the "Target" add the -clean at the end as you see below
"C:\Program Files\IBM\SDP\eclipse.exe" -product com.ibm.rational.rad.product.v75.ide -clean
4. The clean command refreshes the recently added plugins to the RAD
5. Now go to "Windows->Preferences->Java->Jadclipse" and configure "Path to decompiler" to C:\Jad\jad.exe
6. Then go to "Windows->Preferences->Genral->Editors->File Associations, highlight ".class" and set the defaut option with jadclipse.

Hope this will work for other plugins too .

Shan
15 years ago
Thank you for the different options...and here is what I tried so far

I used to setup the JADEclipse plugin in RAD 7.1 as per the instructions from the link below

http://www.devx.com/Java/Article/22657

I want to have the JADEclipse plugin incorporated to the RAD 7.5 and I don't know how to do. The reason is there is no eclipse\plugin folder anywhere under the RAD 7.5 installation directory. Even I kept this plugin under the SDP\Plugins and SDPShared\Plugins, but it is not picking up the plugin.

I have enabled the classic update in RAD and also I tried adding the Local and Remote sites (one at a time) with the respective URLs. It complains that there is no update site available for the selected site. I think it expects the site.xml with the JADEclipse plugin. But in the the JAR file I see only the plugin.xml and I don't see any site.xml.

I am stuck at this point and I don't know how to proceed from here .

Thanks,
Shan
15 years ago
I am trying the same thing for JADEclipse plugin (JAD Decompiler). With RAD 7.0 I have this plugin copied under eclipse\plugin folder and it was working. And now I am using RAD 7.5 and I don't know where to keep this plugin. I can't find the eclipse\plugin folder under RAD 7.5 installation directory.

Any help please?

thanks,
Shan
15 years ago
Thank you Mark! I will try that.
15 years ago
Mark Spritzler,

Another interesting point that I noticed while creating the beans.xml.

I have followed the steps below to create the beans.xml

1. Right click on my project (HelloWorld) and "New" -> "Spring" -> "Create Bean Definition".
2. This creates the beans.xml right under the HelloWorld folder.

That is the reason I kept that file under the same location. I will try your suggestion and let you know.

Shan
15 years ago
Thank you for your responses!

Christophe Verre,
Just curious, how do you edit the execution properties in Eclipse?

Thanks,
Shan
15 years ago
I am using the Eclipse IDE.

1. My workspace location
C:\MY-WORKSHOP\wsSpring

2. Project structure
com.apress.springrecipes.hello.Main.main
(a) C:\MY-WORKSHOP\wsSpring\HelloWorld\src\com\apress\springrecipes\hello\Main.java
(b) C:\MY-WORKSHOP\wsSpring\HelloWorld\beans.xml

Main object loads the beans.xml from main() method like below:

ApplicationContext context =
new ClassPathXMLApplicationContext("beans.xml");

3. Also this beans.xml has been added to the classpath of HelloWorld (Spring) project using "Add Jars".

When I run the Main class it throws the above stated exceptions.

I am new to Spring, your help on this really appreciated.
[ December 22, 2008: Message edited by: Shanmugam Muthukumarasamy ]
15 years ago
Hi,

Though I have added the beans.xml into the classpath of my project, I am getting the FileNotFoundException on the beans configuration file. Any help on this really appreciated.

Dec 21, 2008 10:28:45 PM org.springframework.context.support.AbstractApplicationContext prepareRefresh
INFO: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@ab50cd: display name [org.springframework.context.support.ClassPathXmlApplicationContext@ab50cd]; startup date [Sun Dec 21 22:28:45 PST 2008]; root of context hierarchy
Dec 21, 2008 10:28:45 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from class path resource [beans.xml]
Exception in thread "main" org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [beans.xml]; nested exception is java.io.FileNotFoundException: class path resource [beans.xml] cannot be opened because it does not exist
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:349)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:310)
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:143)
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:178)
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:149)
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:212)
at org.springframework.context.support.AbstractXmlApplicationContext.loadBeanDefinitions(AbstractXmlApplicationContext.java:113)
at org.springframework.context.support.AbstractXmlApplicationContext.loadBeanDefinitions(AbstractXmlApplicationContext.java:80)
at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:123)
at org.springframework.context.support.AbstractApplicationContext.obtainFreshBeanFactory(AbstractApplicationContext.java:422)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:352)
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:139)
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:83)
at com.apress.springrecipes.hello.Main.main(Main.java:10)
Caused by: java.io.FileNotFoundException: class path resource [beans.xml] cannot be opened because it does not exist
at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:143)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:336)
... 13 more
15 years ago
I am getting the following exception, when I start the JBoss 5.0 on Eclipse. Any idea please?

20:19:55,649 INFO [ServerImpl] Starting JBoss (Microcontainer)...
20:19:55,649 INFO [ServerImpl] Release ID: JBoss [Morpheus] 5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812042120)
20:19:55,649 INFO [ServerImpl] Bootstrap URL: null
20:19:55,649 INFO [ServerImpl] Home Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA
20:19:55,649 INFO [ServerImpl] Home URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/
20:19:55,649 INFO [ServerImpl] Library URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/lib/
20:19:55,649 INFO [ServerImpl] Patch URL: null
20:19:55,649 INFO [ServerImpl] Common Base URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/common/
20:19:55,649 INFO [ServerImpl] Common Library URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/common/lib/
20:19:55,649 INFO [ServerImpl] Server Name: default
20:19:55,649 INFO [ServerImpl] Server Base Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server
20:19:55,649 INFO [ServerImpl] Server Base URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/server/
20:19:55,649 INFO [ServerImpl] Server Config URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/server/default/conf/
20:19:55,649 INFO [ServerImpl] Server Home Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default
20:19:55,649 INFO [ServerImpl] Server Home URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/server/default/
20:19:55,649 INFO [ServerImpl] Server Data Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\data
20:19:55,649 INFO [ServerImpl] Server Library URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/server/default/lib/
20:19:55,649 INFO [ServerImpl] Server Log Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\log
20:19:55,649 INFO [ServerImpl] Server Native Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\tmp\native
20:19:55,649 INFO [ServerImpl] Server Temp Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\tmp
20:19:55,649 INFO [ServerImpl] Server Temp Deploy Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\tmp\deploy
20:19:56,195 INFO [ServerImpl] Starting Microcontainer, bootstrapURL=file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/server/default/conf/bootstrap.xml
20:19:56,540 INFO [VFSCacheFactory] Initializing VFSCache [org.jboss.virtual.plugins.cache.IterableTimedVFSCache]
20:19:56,555 INFO [VFSCacheFactory] Using VFSCache [IterableTimedVFSCache{lifetime=1800, resolution=60}]
20:19:56,774 INFO [CopyMechanism] VFS temp dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\tmp
20:19:56,774 INFO [ZipEntryContext] VFS force nested jars copy-mode is enabled.
20:19:57,694 INFO [ServerInfo] Java version: 1.6.0_11,Sun Microsystems Inc.
20:19:57,694 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 11.0-b16,Sun Microsystems Inc.
20:19:57,694 INFO [ServerInfo] OS-System: Windows Vista 6.0,x86
20:19:57,695 INFO [JMXKernel] Legacy JMX core initialized
20:19:58,865 INFO [ProfileServiceImpl] Loading profile: default from: org.jboss.system.server.profileservice.repository.SerializableDeploymentRepository@9bad4f(root=C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server, key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default])
20:19:58,865 INFO [ProfileImpl] Using repository rg.jboss.system.server.profileservice.repository.SerializableDeploymentRepository@9bad4f(root=C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server, key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default])
20:19:58,865 INFO [ProfileServiceImpl] Loaded profile: ProfileImpl@270fc4{key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default]}
20:20:01,019 INFO [WebService] Using RMI server codebase: http://127.0.0.1:8083/
20:20:05,435 INFO [NativeServerConfig] JBoss Web Services - Stack Native Core
20:20:05,435 INFO [NativeServerConfig] 3.0.4.SP1
20:20:15,778 INFO [JMXConnectorServerService] JMX Connector server: service:jmx:rmi://127.0.0.1/jndi/rmi://127.0.0.1:1090/jmxconnector
20:20:16,591 INFO [MailService] Mail Service bound to java:/Mail
20:20:18,151 WARN [JBossASSecurityMetadataStore] WARNING! POTENTIAL SECURITY RISK. It has been detected that the MessageSucker component which sucks messages from one node to another has not had its password changed from the installation default. Please see the JBoss Messaging user guide for instructions on how to do this.
20:20:18,183 WARN [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
20:20:18,339 ERROR [AbstractKernelController] Error installing to Instantiated: name=TransactionManager state=Described
java.lang.ExceptionInInitializerError: java.net.MalformedURLException: unknown protocol: c
at com.arjuna.ats.arjuna.common.arjPropertyManager.<clinit>(arjPropertyManager.java:70)
at com.arjuna.ats.jbossatx.jta.TransactionManagerService.<clinit>(TransactionManagerService.java:107)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at org.jboss.reflect.plugins.introspection.ReflectionUtils.newInstance(ReflectionUtils.java:149)
at org.jboss.reflect.plugins.introspection.ReflectConstructorInfoImpl.newInstance(ReflectConstructorInfoImpl.java:106)
at org.jboss.joinpoint.plugins.BasicConstructorJoinPoint.dispatch(BasicConstructorJoinPoint.java:80)
at org.jboss.aop.microcontainer.integration.AOPConstructorJoinpoint.createTarget(AOPConstructorJoinpoint.java:276)
at org.jboss.aop.microcontainer.integration.AOPConstructorJoinpoint.dispatch(AOPConstructorJoinpoint.java:97)
at org.jboss.kernel.plugins.dependency.KernelControllerContextAction$JoinpointDispatchWrapper.execute(KernelControllerContextAction.java:241)
at org.jboss.kernel.plugins.dependency.ExecutionWrapper.execute(ExecutionWrapper.java:47)
at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchExecutionWrapper(KernelControllerContextAction.java:109)
at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchJoinPoint(KernelControllerContextAction.java:70)
at org.jboss.kernel.plugins.dependency.InstantiateAction.installActionInternal(InstantiateAction.java:66)
at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54)
at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42)
at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:774)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:540)
at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:121)
at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:51)
at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:545)
at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:304)
at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:205)
at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:405)
at org.jboss.Main.boot(Main.java:209)
at org.jboss.Main$1.run(Main.java:547)
at java.lang.Thread.run(Thread.java:619)
20:20:19,493 ERROR [ProfileServiceBootstrap] Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):

*** CONTEXTS MISSING DEPENDENCIES: Name -> Dependency{Required State:Actual State}

CachedConnectionManager
-> TransactionManager{Configured:**ERROR**}

DefaultUserTransactionprovider
-> <UNKNOWN DefaultUserTransactionprovider>{Described:** UNRESOLVED Demands 'TransactionManager' **}

RealTransactionManager
-> TransactionManager{Instantiated:**ERROR**}

UnifiedInvoker
-> TransactionManager{Create:**ERROR**}

WebServer
-> jboss.jca:service=CachedConnectionManager{Create:** NOT FOUND Depends on 'jboss.jca:service=CachedConnectionManager' **}
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}

WorkManager
-> TransactionManager{Configured:**ERROR**}

jboss.admin:service=PluginManager
-> jboss.jmx:name=Invoker,protocol=jrmp,service=proxyFactory,type=adaptor{Create:Configured}

jboss.ejb ersistencePolicy=database,service=EJBTimerService
-> jboss.jca:name=DefaultDS,service=DataSourceBinding{Create:Configured}

jboss.ejb:service=EJB3TimerService
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}
-> jboss.jca:name=DefaultDS,service=DataSourceBinding{Create:Configured}

jboss.ejb:service=EJBTimerService
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}
-> jboss.ejb ersistencePolicy=database,service=EJBTimerService{Create:Configured}

jboss.jca:name='jboss-local-jdbc.rar',service=RARDeployment
-> jboss:service=TransactionManager{Configured:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}
-> jboss.jca:service=WorkManager{Configured:** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **}

jboss.jca:name='jboss-xa-jdbc.rar',service=RARDeployment
-> jboss:service=TransactionManager{Configured:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}
-> jboss.jca:service=WorkManager{Configured:** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **}

jboss.jca:name='jms-ra.rar',service=RARDeployment
-> jboss.jca:service=WorkManager{Configured:** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **}
-> jboss:service=TransactionManager{Configured:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}

jboss.jca:name='mail-ra.rar',service=RARDeployment
-> jboss:service=TransactionManager{Configured:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}
-> jboss.jca:service=WorkManager{Configured:** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **}

jboss.jca:name='quartz-ra.rar',service=RARDeployment
-> jboss:service=TransactionManager{Configured:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}
-> jboss.jca:service=WorkManager{Configured:** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **}

jboss.jca:name=DefaultDS,service=DataSourceBinding
-> jboss.jca:name=DefaultDS,service=LocalTxCM{Create:Configured}

jboss.jca:name=DefaultDS,service=LocalTxCM
-> jboss.jca:name=DefaultDS,service=ManagedConnectionPool{Create:Configured}
-> jboss.jca:service=CachedConnectionManager{Create:** NOT FOUND Depends on 'jboss.jca:service=CachedConnectionManager' **}
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}

jboss.jca:name=DefaultDS,service=ManagedConnectionFactory
-> jboss.jca:name='jboss-local-jdbc.rar',service=RARDeployment{Create:Instantiated}

jboss.jca:name=DefaultDS,service=ManagedConnectionPool
-> jboss.jca:name=DefaultDS,service=ManagedConnectionFactory{Create:Configured}

jboss.jca:name=JmsXA,service=ConnectionFactoryBinding
-> jboss.jca:name=JmsXA,service=TxCM{Create:Configured}

jboss.jca:name=JmsXA,service=ManagedConnectionFactory
-> jboss.messaging:service=ServerPeer{Create:Configured}
-> jboss.jca:name='jms-ra.rar',service=RARDeployment{Create:Instantiated}

jboss.jca:name=JmsXA,service=ManagedConnectionPool
-> jboss.jca:name=JmsXA,service=ManagedConnectionFactory{Create:Configured}

jboss.jca:name=JmsXA,service=TxCM
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}
-> jboss.jca:name=JmsXA,service=ManagedConnectionPool{Create:Configured}
-> jboss.jca:service=CachedConnectionManager{Create:** NOT FOUND Depends on 'jboss.jca:service=CachedConnectionManager' **}

jboss.jmx:name=Invoker,protocol=jrmp,service=proxyFactory,type=adaptor
-> jboss:service=invoker,type=jrmp{Create:Configured}

jboss.jmx:name=MBeanProxyRemote,protocol=jrmp,type=adaptor
-> jboss.jmx:name=Invoker,protocol=jrmp,service=proxyFactory,type=adaptor{Create:Configured}

jboss.messaging.connectionfactory:service=ClusterPullConnectionFactory
-> jboss.messaging:service=PostOffice{Create:Configured}
-> jboss.messaging:service=ServerPeer{Create:Configured}

jboss.messaging.connectionfactory:service=ClusteredConnectionFactory
-> jboss.messaging:service=PostOffice{Create:Configured}
-> jboss.messaging:service=ServerPeer{Create:Configured}

jboss.messaging.connectionfactory:service=ConnectionFactory
-> jboss.messaging:service=ServerPeer{Create:Configured}
-> jboss.messaging:service=PostOffice{Create:Configured}

jboss.messaging.destination:name=DLQ,service=Queue
-> jboss.messaging:service=PostOffice{Create:Configured}
-> jboss.messaging:service=ServerPeer{Create:Configured}

jboss.messaging.destination:name=ExpiryQueue,service=Queue
-> jboss.messaging:service=PostOffice{Create:Configured}
-> jboss.messaging:service=ServerPeer{Create:Configured}

jboss.messaging:service=JMSUserManager
-> jboss.jca:name=DefaultDS,service=DataSourceBinding{Create:Configured}
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}

jboss.messaging:service=PersistenceManager
-> jboss.jca:name=DefaultDS,service=DataSourceBinding{Create:Configured}
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}

jboss.messaging:service=PostOffice
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}
-> jboss.messaging:service=ServerPeer{Create:Configured}
-> jboss.jca:name=DefaultDS,service=DataSourceBinding{Create:Configured}

jboss.messaging:service=ServerPeer
-> jboss.messaging:service=JMSUserManager{Create:Configured}
-> jboss.messaging:service=PersistenceManager{Create:Configured}

jboss.mq:service=DestinationManager
-> jboss.messaging:service=ServerPeer{Create:Configured}

jboss.web.deployment:war=/ROOT
-> jboss.web:service=WebServer{Create:Configured}

jboss.web.deployment:war=/invoker
-> jboss.web:service=WebServer{Create:Configured}

jboss.web.deployment:war=/jbossws
-> jboss.web:service=WebServer{Create:Configured}

jboss.web.deployment:war=/jmx-console
-> jboss.web:service=WebServer{Create:Configured}

jboss.web.deployment:war=/web-console
-> jboss.admin:service=PluginManager{Create:Configured}
-> jboss.web:service=WebServer{Create:Configured}

jboss:service=ClientUserTransaction
-> jboss:service=proxyFactory,target=ClientUserTransactionFactory{Create:Configured}
-> jboss:service=proxyFactory,target=ClientUserTransaction{Create:Configured}

jboss:service=KeyGeneratorFactory,type=HiLo
-> jboss.jca:name=DefaultDS,service=DataSourceBinding{Create:Configured}
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}

jboss:service=invoker,type=jrmp
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}

jboss:service=invoker,type=local
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}

jboss:service=invoker,type=pooled
-> jboss:service=TransactionManager{Create:** NOT FOUND Depends on 'jboss:service=TransactionManager' **}

jboss:service=proxyFactory,target=ClientUserTransaction
-> jboss:service=invoker,type=unified{Create:Configured}

jboss:service=proxyFactory,target=ClientUserTransactionFactory
-> jboss:service=invoker,type=unified{Create:Configured}


*** CONTEXTS IN ERROR: Name -> Error

TransactionManager -> java.lang.ExceptionInInitializerError: java.net.MalformedURLException: unknown protocol: c | **ERROR**

jboss.jca:service=WorkManager -> ** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **

jboss:service=invoker,type=unified -> Configured

<UNKNOWN DefaultUserTransactionprovider> -> ** UNRESOLVED Demands 'TransactionManager' **

jboss:service=TransactionManager -> ** NOT FOUND Depends on 'jboss:service=TransactionManager' **

jboss.jca:service=CachedConnectionManager -> ** NOT FOUND Depends on 'jboss.jca:service=CachedConnectionManager' **

jboss.web:service=WebServer -> Configured


20:20:19,494 INFO [ServerImpl] JBoss (Microcontainer) [5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812042120)] Started in 23s:845ms
[ December 16, 2008: Message edited by: Shanmugam Muthukumarasamy ]
15 years ago
I am getting the following error while I start my JBoss 5.0 server with JRE 1.6. Any idea?

00:45:34,662 INFO [ServerImpl] Starting JBoss (Microcontainer)...
00:45:34,662 INFO [ServerImpl] Release ID: JBoss [Morpheus] 5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812042120)
00:45:34,662 INFO [ServerImpl] Bootstrap URL: null
00:45:34,662 INFO [ServerImpl] Home Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA
00:45:34,662 INFO [ServerImpl] Home URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/
00:45:34,662 INFO [ServerImpl] Library URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/lib/
00:45:34,662 INFO [ServerImpl] Patch URL: null
00:45:34,662 INFO [ServerImpl] Common Base URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/common/
00:45:34,663 INFO [ServerImpl] Common Library URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/common/lib/
00:45:34,663 INFO [ServerImpl] Server Name: default
00:45:34,663 INFO [ServerImpl] Server Base Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server
00:45:34,663 INFO [ServerImpl] Server Base URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/server/
00:45:34,663 INFO [ServerImpl] Server Config URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/server/default/conf/
00:45:34,663 INFO [ServerImpl] Server Home Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default
00:45:34,663 INFO [ServerImpl] Server Home URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/server/default/
00:45:34,663 INFO [ServerImpl] Server Data Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\data
00:45:34,663 INFO [ServerImpl] Server Library URL: file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/server/default/lib/
00:45:34,663 INFO [ServerImpl] Server Log Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\log
00:45:34,663 INFO [ServerImpl] Server Native Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\tmp\native
00:45:34,663 INFO [ServerImpl] Server Temp Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\tmp
00:45:34,663 INFO [ServerImpl] Server Temp Deploy Dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\tmp\deploy
00:45:35,116 INFO [ServerImpl] Starting Microcontainer, bootstrapURL=file:/C:/MY-WORKSHOP/JBoss%205.0/jboss-5.0.0.GA/server/default/conf/bootstrap.xml
00:45:35,599 INFO [VFSCacheFactory] Initializing VFSCache [org.jboss.virtual.plugins.cache.IterableTimedVFSCache]
00:45:35,599 INFO [VFSCacheFactory] Using VFSCache [IterableTimedVFSCache{lifetime=1800, resolution=60}]
00:45:35,974 INFO [CopyMechanism] VFS temp dir: C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server\default\tmp
00:45:35,974 INFO [ZipEntryContext] VFS force nested jars copy-mode is enabled.
00:45:37,457 INFO [ServerInfo] Java version: 1.6.0,Sun Microsystems Inc.
00:45:37,457 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.6.0-b105,Sun Microsystems Inc.
00:45:37,457 INFO [ServerInfo] OS-System: Windows Vista 6.0,x86
00:45:37,520 INFO [JMXKernel] Legacy JMX core initialized
00:45:39,548 INFO [ProfileServiceImpl] Loading profile: default from: org.jboss.system.server.profileservice.repository.SerializableDeploymentRepository@9549af(root=C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server, key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default])
00:45:39,548 INFO [ProfileImpl] Using repository rg.jboss.system.server.profileservice.repository.SerializableDeploymentRepository@9549af(root=C:\MY-WORKSHOP\JBoss 5.0\jboss-5.0.0.GA\server, key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default])
00:45:39,548 INFO [ProfileServiceImpl] Loaded profile: ProfileImpl@1cd427a{key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default]}
00:45:45,383 INFO [WebService] Using RMI server codebase: http://127.0.0.1:8083/
00:45:49,752 ERROR [AbstractKernelController] Error installing to Create: name=ManagedConnectionFactoryParserDeployer state=Configured
java.lang.LinkageError: JAXB 2.0 API is being loaded from the bootstrap classloader, but this RI (from vfszip:/C:/MY-WORKSHOP/JBoss 5.0/jboss-5.0.0.GA/lib/jaxb-impl.jar/com/sun/xml/bind/v2/model/impl/ModelBuilder.class) needs 2.1 API. Use the endorsed directory mechanism to place jaxb-api.jar in the bootstrap classloader. (See http://java.sun.com/j2se/1.5.0/docs/guide/standards/)
at com.sun.xml.bind.v2.model.impl.ModelBuilder.<clinit>(ModelBuilder.java:173)
at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:432)
at com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>(JAXBContextImpl.java:297)
at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:139)
at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:117)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at javax.xml.bind.ContextFinder.newInstance(Unknown Source)
at javax.xml.bind.ContextFinder.find(Unknown Source)
at javax.xml.bind.JAXBContext.newInstance(Unknown Source)
at javax.xml.bind.JAXBContext.newInstance(Unknown Source)
at org.jboss.resource.deployers.ManagedConnectionFactoryParserDeployer.create(ManagedConnectionFactoryParserDeployer.java:106)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:59)
at org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:150)
at org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66)
at org.jboss.kernel.plugins.dependency.KernelControllerContextAction$JoinpointDispatchWrapper.execute(KernelControllerContextAction.java:241)
at org.jboss.kernel.plugins.dependency.ExecutionWrapper.execute(ExecutionWrapper.java:47)
at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchExecutionWrapper(KernelControllerContextAction.java:109)
at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchJoinPoint(KernelControllerContextAction.java:70)
at org.jboss.kernel.plugins.dependency.LifecycleAction.installActionInternal(LifecycleAction.java:221)
at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54)
at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42)
at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:774)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:540)
at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:121)
at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:51)
at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:545)
at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:297)
at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:205)
at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:405)
at org.jboss.Main.boot(Main.java:209)
at org.jboss.Main$1.run(Main.java:547)
at java.lang.Thread.run(Unknown Source)
00:45:52,719 INFO [NativeServerConfig] JBoss Web Services - Stack Native Core
00:45:52,719 INFO [NativeServerConfig] 3.0.4.SP1
00:45:54,842 ERROR [ProfileServiceBootstrap] Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):

*** CONTEXTS IN ERROR: Name -> Error

ManagedConnectionFactoryParserDeployer -> java.lang.LinkageError: JAXB 2.0 API is being loaded from the bootstrap classloader, but this RI (from vfszip:/C:/MY-WORKSHOP/JBoss 5.0/jboss-5.0.0.GA/lib/jaxb-impl.jar/com/sun/xml/bind/v2/model/impl/ModelBuilder.class) needs 2.1 API. Use the endorsed directory mechanism to place jaxb-api.jar in the bootstrap classloader. (See http://java.sun.com/j2se/1.5.0/docs/guide/standards/)


00:45:54,842 INFO [ServerImpl] JBoss (Microcontainer) [5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812042120)] Started in 20s:179ms
15 years ago
Hi Sudhahar Sivakumaran,

Here are the steps you have to take to enroll in to Part2 and Part3.

Part-2: Purchase part-2 exam. After this you can download your assignment from http://www.certmanager.net/sun_assignment/.

After you complete your assignment, again go back to http://www.certmanager.net/sun_assignment/ and there is a way to upload your assignment. Make sure you are 100% done with your assignment, since you are allowed to upload your assignment for only one time.

Part-3: Purchase the exam and do that on the prometric center.

Good luck!!!

Regards,
Shanmugam
Sorry guys for the delayed reply on this.

In part 3, I did write at the max of 3 paragraphs per question and also added addtional references on certain components from the different sections from the Part-II assignment such as ClassDiagram, Sequence Diagram and component diagram.

Yes. EPractizelabs was the useful tool for me. I am very much satisfied with that.

I have used J2EE 1.3 for my assignment.

All the best on your preparations.