Igor Kromin |   Consultant. Coder. Blogger. Tinkerer. Gamer.

Recently after installing ADF 12c and extending my domain to support ADF applications, I could no longer start my managed server. The 'Unresolved reference to WseeJaxwsFileStore' error kept on coming up every time I'd try to start the server.
 WebLogic managed server log
<Aug 22, 2014 2:25:16 PM EST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
There are 1 nested errors:
weblogic.management.ManagementException: [Management:141266]Parsing failure in config.xml: The following failures occurred:
-- Unresolved reference to WseeJaxwsFileStore by [my_domain]/JMSServers[WseeJaxwsJmsServer_auto_2]/PersistentStore
.
at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:128)
at weblogic.management.provider.internal.RuntimeAccessService.start(RuntimeAccessService.java:41)
at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:461)
at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServicesManager.java:166)
at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:895)
at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:572)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:471)
at weblogic.Server.main(Server.java:74)
Caused by: weblogic.descriptor.DescriptorValidateException: The following failures occurred:
-- Unresolved reference to WseeJaxwsFileStore by [my_domain]/JMSServers[WseeJaxwsJmsServer_auto_2]/PersistentStore
at weblogic.descriptor.internal.ReferenceManager.resolveReferences(ReferenceManager.java:324)
at weblogic.descriptor.internal.DescriptorImpl.validate(DescriptorImpl.java:457)
at weblogic.descriptor.BasicDescriptorManager.createDescriptor(BasicDescriptorManager.java:268)
at weblogic.management.provider.internal.DescriptorManagerHelper.loadDescriptor(DescriptorManagerHelper.java:81)
at weblogic.management.provider.internal.RuntimeAccessImpl$IOHelperImpl.parseXML(RuntimeAccessImpl.java:704)
at weblogic.management.provider.internal.RuntimeAccessImpl.parseNewStyleConfig(RuntimeAccessImpl.java:249)
at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:116)
... 7 more
>
<Aug 22, 2014 2:25:16 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED.>
<Aug 22, 2014 2:25:16 PM EST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down.>
<Aug 22, 2014 2:25:16 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN.>


When I checked the config.xml file for my domain, one of the JMS server configurations was indeed referencing the WseeJaxwsFileStore persistent store, however this store did not exist. Instead, the configuration file had the WseeJaxwsFileStore_auto_2 store defined.

The fix was to update the JMS server configuration to use the other persistent store that was already configured in the file like this:
 /u01/app/wls/domains/my_domain/config/config.xml
<jms-server>
<name>WseeJaxwsJmsServer_auto_2</name>
<target>my_server</target>
<persistent-store>WseeJaxwsFileStore_auto_2</persistent-store>
</jms-server>




-i

A quick disclaimer...

Although I put in a great effort into researching all the topics I cover, mistakes can happen. Use of any information from my blog posts should be at own risk and I do not hold any liability towards any information misuse or damages caused by following any of my posts.

All content and opinions expressed on this Blog are my own and do not represent the opinions of my employer (Oracle). Use of any information contained in this blog post/article is subject to this disclaimer.
Hi! You can search my blog here ⤵
NOTE: (2022) This Blog is no longer maintained and I will not be answering any emails or comments.

I am now focusing on Atari Gamer.