Discussion:
[esb-java-user] WSO2 ESB 4.0.2 deployment in Weblogic 10.3.5 is failing!!!!
debarshi.bhattacharya
2011-12-22 05:48:02 UTC
Permalink
Hi All,
We are trying to deploy WSO2ESB 4.0.2 on weblogic 10.3.5 application server. We have followed the following steps.

1. Create a weblogic domain with https enabled

2. Created wso2esb.war using the build script kept under {WSO2 ESB root folder}/bin

3. Created wso2esb_repo and copied the entire repository from WSO2 ESB root folder to wso2esb_repo

4. Created an environment variable CARBON_HOME pointing to wso2esb_repo

5. Modified carbon.xml, axis2.xml, registry.xml, and user-mgt.xml, kept under {CARBON_HOME}/repository/conf

a. Modification in axis.xml

i. Changed the synapse.xml location
<!-- Synapse Configuration file location relative to CARBON_HOME -->
<parameter name="SynapseConfig.ConfigurationFile" locked="false">repository/deployment/server/synapse-configs</parameter>
<!-- Synapse Home parameter -->
<!--<parameter name="SynapseConfig.HomeDirectory" locked="false">.</parameter>-->
<parameter name="SynapseConfig.HomeDirectory" locked="false">E:\WRT_Debarshi\wso2esb_repo</parameter>
<!-- Resolve root used to resolve synapse references like schemas inside a WSDL -->
<parameter name="SynapseConfig.ResolveRoot" locked="false">.</parameter>
<!-- Synapse Server name parameter -->
<parameter name="SynapseConfig.ServerName" locked="false">localhost</parameter>


ii. Changed transport.nhttp.HttpCoreNIOListener port number
<transportReceiver name="http" class="org.apache.synapse.transport.nhttp.HttpCoreNIOListener">
<!--<parameter name="port" locked="false">8280</parameter>-->
<parameter name="port" locked="false">7001</parameter>


<transportReceiver name="https" class="org.apache.synapse.transport.nhttp.HttpCoreNIOSSLListener">
<!--<parameter name="port" locked="false">8243</parameter>-->
<parameter name="port" locked="false">7002</parameter>


iii. Changed the location of the Keystores, provided absolute path

<KeyStore>

<Location>E:\WRT_Debarshi\wso2esb_repo\repository\resources\security\wso2carbon.jks</Location>

<Type>JKS</Type>

<Password>wso2carbon</Password>

<KeyPassword>wso2carbon</KeyPassword>

</KeyStore>



<TrustStore>

<Location>E:\WRT_Debarshi\wso2esb_repo\repository\resources\security\client-truststore.jks</Location>

<Type>JKS</Type>

<Password>wso2carbon</Password>

</TrustStore>


b. Modifications in carbon.xml

i. !--<ServerURL>https://${carbon.local.ip}:${carbon.management.port}${carbon.context}/services/</ServerURL>-->

<ServerURL>https://localhost:7002/wso2esb/services/</ServerURL>

ii. <WebContextRoot>/wso2esb</WebContextRoot>


c. Modifications in registry.xml
<dbConfig name="wso2registry">
<url>jdbc:h2:E:\WRT_Debarshi\wso2esb_repo\repository\database\WSO2CARBON_DB;DB_CLOSE_ON_EXIT=FALSE</url>
Provided absolute path to DB


d. Modifications in user-mgt.xml

<Property name="url">jdbc:h2:E:\WRT_Debarshi\wso2esb_repo\repository\database\WSO2CARBON_DB;DB_CLOSE_ON_EXIT=FALSE</Property>
Provided absolute path to DB


6. Copied xalan-*.jar, xercesImpl-*.jar and xml-apis-*.jar from wso2esb-4.0.2/lib/endorsed to the ext directory of the JDK installation. {JAVA_HOME}/jre/lib/ext

7. Started the weblogic server and set the keystore and ssl setting following steps mentioned in http://ajithvblogs.blogspot.com/2011/08/how-to-deploy-wso2-greg-400-on-weblogic.html

8. Deployed the wso2esb.war using the deployment screen of the weblogic server.

After deployment the carbon server starts and gives the following error.

[2011-12-21 08:39:08,822] INFO - HttpCoreNIOSender HTTPS Sender starting
[2011-12-21 08:39:08,838] WARN - MBeanRegistrar Error registering a MBean with name ' HttpClientWorker ' and category name ' Threading' for JMX management
weblogic.management.NoAccessRuntimeException: Access not allowed for subject: principals=[], on ResourceType: Threading Action: unregister, Target: null
at weblogic.management.internal.SecurityHelper$IsAccessAllowedPrivilegeAction.wlsRun(SecurityHelper.java:819)
at weblogic.management.internal.SecurityHelper$IsAccessAllowedPrivilegeAction.run(SecurityHelper.java:682)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
at weblogic.management.internal.SecurityHelper.isAccessAllowed(SecurityHelper.java:269)
at weblogic.management.internal.SecurityHelper.isAccessAllowed(SecurityHelper.java:157)
at weblogic.management.mbeanservers.internal.SecurityInterceptor.checkUnregisterSecurity(SecurityInterceptor.java:672)
at weblogic.management.mbeanservers.internal.SecurityInterceptor.unregisterMBean(SecurityInterceptor.java:321)
at weblogic.management.jmx.mbeanserver.WLSMBeanServer.unregisterMBean(WLSMBeanServer.java:210)
at org.apache.synapse.commons.jmx.MBeanRegistrar.registerMBean(MBeanRegistrar.java:54)
at org.apache.synapse.commons.jmx.ThreadingView.initMBean(ThreadingView.java:127)
at org.apache.synapse.commons.jmx.ThreadingView.<init>(ThreadingView.java:91)
at org.apache.synapse.commons.jmx.ThreadingView.<init>(ThreadingView.java:95)
at org.apache.synapse.transport.nhttp.ClientHandler.<init>(ClientHandler.java:142)
at org.apache.synapse.transport.nhttp.HttpCoreNIOSender.init(HttpCoreNIOSender.java:190)
at org.apache.axis2.context.ConfigurationContextFactory.initTransportSenders(ConfigurationContextFactory.java:300)
at org.apache.axis2.context.ConfigurationContextFactory.init(ConfigurationContextFactory.java:231)
at org.apache.axis2.context.ConfigurationContextFactory.createConfigurationContext(ConfigurationContextFactory.java:93)
at org.wso2.carbon.core.CarbonConfigurationContextFactory.createNewConfigurationContext(CarbonConfigurationContextFactory.java:65)
at org.wso2.carbon.core.init.CarbonServerManager.initializeCarbon(CarbonServerManager.java:375)
at org.wso2.carbon.core.init.CarbonServerManager.removePendingItem(CarbonServerManager.java:273)
at org.wso2.carbon.core.init.PreAxis2ConfigItemListener.bundleChanged(PreAxis2ConfigItemListener.java:117)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:916)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:330)
[2011-12-21 08:39:08,853] INFO - HttpCoreNIOSender HTTP Sender starting
[2011-12-21 08:39:09,431] INFO - DeploymentInterceptor Deploying Axis2 service: echo {super-tenant}
[2011-12-21 08:39:09,541] INFO - DeploymentEngine Deploying Web service: Echo.aar - file:/E:/WRT_Debarshi/wso2esb_repo/repository/deployment/server/axis2serv
ices/Echo.aar
[2011-12-21 08:39:09,681] INFO - DeploymentInterceptor Deploying Axis2 service: Version {super-tenant}
[2011-12-21 08:39:09,744] INFO - DeploymentEngine Deploying Web service: Version.aar - file:/E:/WRT_Debarshi/wso2esb_repo/repository/deployment/server/axis2s
ervices/Version.aar
[2011-12-21 08:39:10,103] INFO - CarbonServerManager Completed super-tenant Axis2 ConfigurationContext creation in 2.031 sec
[2011-12-21 08:39:10,103] INFO - HttpCoreNIOSSLListener Loading Identity Keystore from : E:\WRT_Debarshi\wso2esb_repo\repository\resources\security\wso2carbo
n.jks
[2011-12-21 08:39:10,119] INFO - HttpCoreNIOSSLListener Loading Trust Keystore from : E:\WRT_Debarshi\wso2esb_repo\repository\resources\security\client-trust
store.jks
[2011-12-21 08:39:10,541] INFO - JMXServerManager JMX Service URL : service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
[2011-12-21 08:39:10,588] INFO - ModuleDeployer Deploying module: addressing-1.6.1-wso2v1 - file:/E:/WRT_Debarshi/wso2esb_repo/repository/deployment/client/m
odules/addressing-1.6.1-wso2v1.mar
[2011-12-21 08:39:10,635] INFO - ModuleDeployer Deploying module: rampart-1.6.1-wso2v1 - file:/E:/WRT_Debarshi/wso2esb_repo/repository/deployment/client/modu
les/rampart-1.6.1-wso2v1.mar
[2011-12-21 08:39:10,650] INFO - TCPTransportSender TCP Sender started
[2011-12-21 08:39:13,072] WARN - DefaultSchemaGenerator We don't support method overloading. Ignoring [saveEndpointTemplate]
[2011-12-21 08:39:13,072] WARN - DefaultSchemaGenerator We don't support method overloading. Ignoring [saveDynamicEndpointTemplate]
[2011-12-21 08:39:13,072] WARN - DefaultSchemaGenerator We don't support method overloading. Ignoring [addDynamicEndpointTemplate]
[2011-12-21 08:39:13,119] INFO - DeploymentEngine Deploying Web service: org.wso2.carbon.message.processor -
[2011-12-21 08:39:13,150] INFO - DeploymentEngine Deploying Web service: org.wso2.carbon.message.store -
[2011-12-21 08:39:14,931] INFO - DeploymentInterceptor Deploying Axis2 service: wso2carbon-sts {super-tenant}
[2011-12-21 08:39:15,150] INFO - DeploymentEngine Deploying Web service: org.wso2.carbon.sts -
[2011-12-21 08:39:15,588] INFO - DeploymentEngine Deploying Web service: org.wso2.carbon.tryit -
[2011-12-21 08:39:16,400] INFO - DeploymentInterceptor Deploying Axis2 service: XKMS {super-tenant}
[2011-12-21 08:39:16,510] INFO - DeploymentEngine Deploying Web service: org.wso2.carbon.xkms -
[2011-12-21 08:39:16,525] INFO - DeploymentEngine Deploying Web service: org.wso2.carbon.xkms.mgt -
[2011-12-21 08:39:16,791] INFO - CarbonServerManager Repository : E:\WRT_Debarshi\wso2esb_repo/repository/deployment/server/
[2011-12-21 08:39:17,244] INFO - PermissionUpdater Permission cache updated for tenant 0
[2011-12-21 08:39:17,244] INFO - CarbonServerManager ConfigurationContextService registered in 453ms
[2011-12-21 08:39:20,025] INFO - Main Qpid broker TCP port : 5672
[2011-12-21 08:39:20,025] INFO - Main Qpid broker TLS port : 8672
[2011-12-21 08:39:20,025] INFO - QpidServiceComponent Successfully connected to the server on port 5672
[2011-12-21 08:39:20,760] INFO - ServiceBusInitializer Starting ESB...
[2011-12-21 08:39:21,728] INFO - CarbonUIServiceComponent Mgt Console URL : https://10.32.21.5:7002/wso2esb/carbon/
[2011-12-21 08:39:21,744] INFO - ServiceBusInitializer Initializing Apache Synapse...
[2011-12-21 08:39:21,760] INFO - SynapseControllerFactory Using Synapse home : E:\WRT_Debarshi\wso2esb_repo
[2011-12-21 08:39:21,760] INFO - SynapseControllerFactory Using synapse.xml location : E:\WRT_Debarshi\wso2esb_repo\repository\deployment\server\synapse-conf
igs\default
[2011-12-21 08:39:21,760] INFO - SynapseControllerFactory Using server name : localhost
[2011-12-21 08:39:21,760] INFO - SynapseControllerFactory The timeout handler will run every : 15s
[2011-12-21 08:39:21,838] INFO - Axis2SynapseController Initializing Synapse at : Wed Dec 21 08:39:21 EST 2011
[2011-12-21 08:39:21,838] INFO - Axis2SynapseController Loading mediator extensions...
[2011-12-21 08:39:21,853] INFO - CarbonSynapseController Loading the mediation configuration from the file system
[2011-12-21 08:39:21,853] INFO - MultiXMLConfigurationBuilder Building synapse configuration from the synapse artifact repository at : E:\WRT_Debarshi\wso2es
b_repo\repository/deployment/server/synapse-configs\default
[2011-12-21 08:39:21,853] INFO - XMLConfigurationBuilder Generating the Synapse configuration model by parsing the XML configuration
[2011-12-21 08:39:22,166] INFO - SynapseConfigurationBuilder Loaded Synapse configuration from the artifact repository at : E:\WRT_Debarshi\wso2esb_repo\repo
sitory/deployment/server/synapse-configs\default
[2011-12-21 08:39:22,166] INFO - RegistryBasedSynapseConfigSerializer Persisting the SynapseConfiguration to the registry...
[2011-12-21 08:39:22,447] INFO - Axis2SynapseController Deploying the Synapse service...
[2011-12-21 08:39:22,447] INFO - Axis2SynapseController Deploying Proxy services...
[2011-12-21 08:39:22,447] INFO - Axis2SynapseController Deploying EventSources...
[2011-12-21 08:39:22,463] INFO - ServerManager Server ready for processing...
[2011-12-21 08:39:22,681] INFO - HttpCoreNIOListener HTTPS Listener started on port : 7002
[2011-12-21 08:39:22,697] WARN - MBeanRegistrar Error registering a MBean with name ' HttpServerWorker ' and category name ' Threading' for JMX management
weblogic.management.NoAccessRuntimeException: Access not allowed for subject: principals=[], on ResourceType: Threading Action: unregister, Target: null
at weblogic.management.internal.SecurityHelper$IsAccessAllowedPrivilegeAction.wlsRun(SecurityHelper.java:819)
at weblogic.management.internal.SecurityHelper$IsAccessAllowedPrivilegeAction.run(SecurityHelper.java:682)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
at weblogic.management.internal.SecurityHelper.isAccessAllowed(SecurityHelper.java:269)
at weblogic.management.internal.SecurityHelper.isAccessAllowed(SecurityHelper.java:157)
at weblogic.management.mbeanservers.internal.SecurityInterceptor.checkUnregisterSecurity(SecurityInterceptor.java:672)
at weblogic.management.mbeanservers.internal.SecurityInterceptor.unregisterMBean(SecurityInterceptor.java:321)
at weblogic.management.jmx.mbeanserver.WLSMBeanServer.unregisterMBean(WLSMBeanServer.java:210)
at org.apache.synapse.commons.jmx.MBeanRegistrar.registerMBean(MBeanRegistrar.java:54)
at org.apache.synapse.commons.jmx.ThreadingView.initMBean(ThreadingView.java:127)
at org.apache.synapse.commons.jmx.ThreadingView.<init>(ThreadingView.java:91)
at org.apache.synapse.commons.jmx.ThreadingView.<init>(ThreadingView.java:95)
at org.apache.synapse.transport.nhttp.ServerHandler.<init>(ServerHandler.java:141)
at org.apache.synapse.transport.nhttp.HttpCoreNIOListener.start(HttpCoreNIOListener.java:229)
at org.apache.axis2.engine.ListenerManager.start(ListenerManager.java:168)
at org.apache.axis2.engine.ListenerManager.startSystem(ListenerManager.java:186)
at org.wso2.carbon.core.internal.StartupFinalizerServiceComponent.completeInitialization(StartupFinalizerServiceComponent.java:162)
at org.wso2.carbon.core.internal.StartupFinalizerServiceComponent.serviceChanged(StartupFinalizerServiceComponent.java:264)
at org.eclipse.osgi.internal.serviceregistry.FilteredServiceListener.serviceChanged(FilteredServiceListener.java:124)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:930)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEventPrivileged(ServiceRegistry.java:757)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEvent(ServiceRegistry.java:712)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistrationImpl.register(ServiceRegistrationImpl.java:129)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.registerService(ServiceRegistry.java:206)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:506)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:524)
at org.wso2.carbon.mediation.initializer.ServiceBusInitializer.activate(ServiceBusInitializer.java:217)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.internal.ds.model.ServiceComponent.activate(ServiceComponent.java:230)
at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.activate(ServiceComponentProp.java:140)
at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.build(ServiceComponentProp.java:330)
at org.eclipse.equinox.internal.ds.InstanceProcess.buildComponent(InstanceProcess.java:560)
at org.eclipse.equinox.internal.ds.InstanceProcess.buildComponents(InstanceProcess.java:182)
at org.eclipse.equinox.internal.ds.Resolver.getEligible(Resolver.java:292)
at org.eclipse.equinox.internal.ds.SCRManager.serviceChanged(SCRManager.java:226)
at org.eclipse.osgi.internal.serviceregistry.FilteredServiceListener.serviceChanged(FilteredServiceListener.java:124)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:930)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEventPrivileged(ServiceRegistry.java:757)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEvent(ServiceRegistry.java:712)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistrationImpl.register(ServiceRegistrationImpl.java:129)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.registerService(ServiceRegistry.java:206)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:506)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:524)
at org.wso2.carbon.event.core.internal.builder.EventBrokerBuilderDS.activate(EventBrokerBuilderDS.java:71)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.internal.ds.model.ServiceComponent.activate(ServiceComponent.java:230)
at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.activate(ServiceComponentProp.java:140)
at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.build(ServiceComponentProp.java:330)
at org.eclipse.equinox.internal.ds.InstanceProcess.buildComponent(InstanceProcess.java:560)
at org.eclipse.equinox.internal.ds.InstanceProcess.buildComponents(InstanceProcess.java:182)
at org.eclipse.equinox.internal.ds.Resolver.getEligible(Resolver.java:292)
at org.eclipse.equinox.internal.ds.SCRManager.serviceChanged(SCRManager.java:226)
at org.eclipse.osgi.internal.serviceregistry.FilteredServiceListener.serviceChanged(FilteredServiceListener.java:124)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:930)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEventPrivileged(ServiceRegistry.java:757)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEvent(ServiceRegistry.java:712)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistrationImpl.register(ServiceRegistrationImpl.java:129)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.registerService(ServiceRegistry.java:206)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:506)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:524)
at org.wso2.carbon.qpid.internal.QpidServiceComponent.activate(QpidServiceComponent.java:134)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.internal.ds.model.ServiceComponent.activate(ServiceComponent.java:230)
at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.activate(ServiceComponentProp.java:140)
at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.build(ServiceComponentProp.java:330)
at org.eclipse.equinox.internal.ds.InstanceProcess.buildComponent(InstanceProcess.java:560)
at org.eclipse.equinox.internal.ds.InstanceProcess.buildComponents(InstanceProcess.java:182)
at org.eclipse.equinox.internal.ds.Resolver.getEligible(Resolver.java:292)
at org.eclipse.equinox.internal.ds.SCRManager.serviceChanged(SCRManager.java:226)
at org.eclipse.osgi.internal.serviceregistry.FilteredServiceListener.serviceChanged(FilteredServiceListener.java:124)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:930)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEventPrivileged(ServiceRegistry.java:757)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEvent(ServiceRegistry.java:712)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistrationImpl.register(ServiceRegistrationImpl.java:129)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.registerService(ServiceRegistry.java:206)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:506)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:524)
at org.wso2.carbon.core.services.internal.CarbonServicesServiceComponent.activate(CarbonServicesServiceComponent.java:72)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.internal.ds.model.ServiceComponent.activate(ServiceComponent.java:230)
at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.activate(ServiceComponentProp.java:140)
at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.build(ServiceComponentProp.java:330)
at org.eclipse.equinox.internal.ds.InstanceProcess.buildComponent(InstanceProcess.java:560)
at org.eclipse.equinox.internal.ds.InstanceProcess.buildComponents(InstanceProcess.java:182)
at org.eclipse.equinox.internal.ds.Resolver.getEligible(Resolver.java:292)
at org.eclipse.equinox.internal.ds.SCRManager.serviceChanged(SCRManager.java:226)
at org.eclipse.osgi.internal.serviceregistry.FilteredServiceListener.serviceChanged(FilteredServiceListener.java:124)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:930)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEventPrivileged(ServiceRegistry.java:757)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEvent(ServiceRegistry.java:712)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistrationImpl.register(ServiceRegistrationImpl.java:129)
at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.registerService(ServiceRegistry.java:206)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:506)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:524)
at org.wso2.carbon.core.init.CarbonServerManager.initializeCarbon(CarbonServerManager.java:471)
at org.wso2.carbon.core.init.CarbonServerManager.removePendingItem(CarbonServerManager.java:273)
at org.wso2.carbon.core.init.PreAxis2ConfigItemListener.bundleChanged(PreAxis2ConfigItemListener.java:117)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:916)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:330)
[2011-12-21 08:39:22,760] INFO - HttpCoreNIOListener HTTP Listener started on port : 7001
[2011-12-21 08:39:22,760] INFO - RegistryEventingServiceComponent Successfully Initialized Eventing on Registry
[2011-12-21 08:39:22,806] INFO - StartupFinalizerServiceComponent Started Transport Listener Manager
[2011-12-21 08:39:22,806] INFO - StartupFinalizerServiceComponent Server : WSO2 ESB-4.0.2
[2011-12-21 08:39:22,806] INFO - StartupFinalizerServiceComponent WSO2 Carbon started in 33 sec
[2011-12-21 08:39:23,353] INFO - EventBrokerBuilderDS Successfully registered the event broker

After this if I try to access the esb admin console, then I'm getting blank page.

Can anybody point us out what is the step we are missing? Or WSO2 ESB has some compatibility issues with weblogic 11g?
I'm attaching all the configuration files.

Thanks & Regards,
Debarshi Bhattacharya


Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email.

www.wipro.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.wso2.org/pipermail/esb-java-user/attachments/20111222/b63b5236/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: weblogic_deployment_error.log
Type: application/octet-stream
Size: 34220 bytes
Desc: weblogic_deployment_error.log
URL: <http://mail.wso2.org/pipermail/esb-java-user/attachments/20111222/b63b5236/attachment-0001.obj>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: axis2.xml
Type: text/xml
Size: 45167 bytes
Desc: axis2.xml
URL: <http://mail.wso2.org/pipermail/esb-java-user/attachments/20111222/b63b5236/attachment-0004.xml>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: carbon.xml
Type: text/xml
Size: 18793 bytes
Desc: carbon.xml
URL: <http://mail.wso2.org/pipermail/esb-java-user/attachments/20111222/b63b5236/attachment-0005.xml>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: registry.xml
Type: text/xml
Size: 4398 bytes
Desc: registry.xml
URL: <http://mail.wso2.org/pipermail/esb-java-user/attachments/20111222/b63b5236/attachment-0006.xml>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: user-mgt.xml
Type: text/xml
Size: 13708 bytes
Desc: user-mgt.xml
URL: <http://mail.wso2.org/pipermail/esb-java-user/attachments/20111222/b63b5236/attachment-0007.xml>
Loading...