You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Olivier Vanekem (JIRA)" <ji...@apache.org> on 2013/09/16 16:06:52 UTC

[jira] [Commented] (AXIS2-5466) Could not create URL from 'META-INF/

    [ https://issues.apache.org/jira/browse/AXIS2-5466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13768327#comment-13768327 ] 

Olivier Vanekem commented on AXIS2-5466:
----------------------------------------

I am facing the same issue with Weblogic 12c R2. It seems to me that it is also linked to that version of Weblogic (I was before using WL 11g without issue).
Stepping in the code, I see that the DeploymentEngine class calls org.apache.axis2.description.WSDL11ToAxisServiceBuilder populateService method.
Within the setup() method of org.apache.axis2.description.WSDL11ToAxisServiceBuilder is a call to readInTheWSDLFile(InputStream) method. This is where the problem arises.

A WSDLReader implementation is created and this instance is of type oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.

on the line:

{code:java}
// make sure the wsdl definition has the URI for the base document set
def = reader.readWSDL(customWSDLResolver);
{code}

An exception will be thrown by the reader because it cannot construct a URL to read the WSDL file.

The exception is: java.lang.RuntimeException: Could not create URL from 'META-INF/zzz.wsdl' and 'xxx.xsd'

I have done different tests. The name of the WSDL that it looks for is the name of the service. It tries to locate the WSDL on the classpath. So this can be embedded in a JAR file that contains the generated Java classes (and WSDL) if you have generated code from WSDL using wsdl2java. It can also be found possibly inside an AAR deployment.

Now I have found a workaround for this: if the DeploymentEngine does NOT find the WSDL, then the DeploymentEngine will not ask the reader (here an implementation of the container) to load and parse it. As for my case it worked out perfectly, I only renamed the WSDL's (one in the generated JAR file from wsdl2java and one in the AAR) to another name. The services load perfectly and Axis provides the server implementation as before. But this is only a workaround...

 
                
>  Could not create URL from 'META-INF/
> -------------------------------------
>
>                 Key: AXIS2-5466
>                 URL: https://issues.apache.org/jira/browse/AXIS2-5466
>             Project: Axis2
>          Issue Type: Bug
>          Components: wsdl
>    Affects Versions: 1.6.2
>         Environment: Oracle WebLogic Server 
>            Reporter: Jeya
>             Fix For: 1.6.2
>
>         Attachments: limsPC_WS.log
>
>
> Created Apache Axis 2 WebService using Top Down Approach. Generated WebService is deployed everywhere but only on a particular server. The environment details are as follows 
> O.S : Microsoft Windows 2008 R2 64 bit
> JDK Version: 1.6.0_29 for windows 64bit
> Oracle Fusion Middleware
> The following exception is thrown
>  2012-12-11 13:28:22,969 - INFO - [DeploymentEngine.java:314] - Deploying module: mtompolicy-1.6.2 - file:/D:/Oracle/Middleware/user_projects/domains/LimsDEV_Domain/servers/IRCS/tmp/_WL_user/LIMSePayWS/c5l0mr/war/WEB-INF/modules/mtompolicy-1.6.2.mar[LIMSePayWS] 
>  2012-12-11 13:28:23,016 - INFO - [DeploymentEngine.java:314] - Deploying module: ping-1.6.2 - file:/D:/Oracle/Middleware/user_projects/domains/LimsDEV_Domain/servers/IRCS/tmp/_WL_user/LIMSePayWS/c5l0mr/war/WEB-INF/modules/ping-1.6.2.mar[LIMSePayWS] 
>  2012-12-11 13:28:23,031 - INFO - [DeploymentEngine.java:314] - Deploying module: metadataExchange-1.6.2 - file:/D:/Oracle/Middleware/user_projects/domains/LimsDEV_Domain/servers/IRCS/tmp/_WL_user/LIMSePayWS/c5l0mr/war/WEB-INF/modules/mex-1.6.2.mar[LIMSePayWS] 
>  2012-12-11 13:28:23,047 - INFO - [DeploymentEngine.java:314] - Deploying module: script-1.6.2 - file:/D:/Oracle/Middleware/user_projects/domains/LimsDEV_Domain/servers/IRCS/tmp/_WL_user/LIMSePayWS/c5l0mr/war/WEB-INF/modules/scripting-1.6.2.mar[LIMSePayWS] 
>  2012-12-11 13:28:23,063 - INFO - [DeploymentEngine.java:314] - Deploying module: addressing-1.6.2 - file:/D:/Oracle/Middleware/user_projects/domains/LimsDEV_Domain/servers/IRCS/tmp/_WL_user/LIMSePayWS/c5l0mr/war/WEB-INF/modules/addressing-1.6.2.mar[LIMSePayWS] 
>  2012-12-11 13:28:23,078 - INFO - [DeploymentEngine.java:314] - Deploying module: soapmonitor-1.6.2 - file:/D:/Oracle/Middleware/user_projects/domains/LimsDEV_Domain/servers/IRCS/tmp/_WL_user/LIMSePayWS/c5l0mr/war/WEB-INF/modules/soapmonitor-1.6.2.mar[LIMSePayWS] 
>  2012-12-11 13:28:23,281 - INFO - [DeploymentEngine.java:267] - Deploying Web service: version - file:/D:/Oracle/Middleware/user_projects/domains/LimsDEV_Domain/servers/IRCS/tmp/_WL_user/LIMSePayWS/c5l0mr/war/WEB-INF/services/version.aar[LIMSePayWS] 
>  2012-12-11 13:28:23,577 - ERROR - [WSDL11ToAxisServiceBuilder.java:395] - Could not create URL from 'META-INF/PaymentConfirmationService.wsdl' and 'PaymentConfirmation-v1.0.xsd'java.lang.RuntimeException: Could not create URL from 'META-INF/PaymentConfirmationService.wsdl' and 'PaymentConfirmation-v1.0.xsd'
> 	at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.composeURL(SchemaSerializer.java:210)
> 	at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.loadReference(SchemaSerializer.java:133)
> 	at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.processImportIncludeRedefine(SchemaSerializer.java:108)
> 	at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.unmarshall(SchemaSerializer.java:73)
> 	at oracle.j2ee.ws.wsdl.extensions.ParseUtils.createExtensibilityElement(ParseUtils.java:106)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.parseTypes(WSDLReaderImpl.java:1472)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.parseDefinition(WSDLReaderImpl.java:779)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:706)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:338)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:294)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:278)
> 	at org.apache.axis2.description.WSDL11ToAxisServiceBuilder.readInTheWSDLFile(WSDL11ToAxisServiceBuilder.java:2139)
> 	at org.apache.axis2.description.WSDL11ToAxisServiceBuilder.setup(WSDL11ToAxisServiceBuilder.java:805)
> 	at org.apache.axis2.description.WSDL11ToAxisServiceBuilder.populateService(WSDL11ToAxisServiceBuilder.java:312)
> 	at org.apache.axis2.deployment.DeploymentEngine.populateService(DeploymentEngine.java:493)
> 	at org.apache.axis2.deployment.DeploymentEngine.loadServicesFromUrl(DeploymentEngine.java:262)
> 	at org.apache.axis2.deployment.WarBasedAxisConfigurator.loadServices(WarBasedAxisConfigurator.java:292)
> 	at org.apache.axis2.context.ConfigurationContextFactory.createConfigurationContext(ConfigurationContextFactory.java:96)
> 	at org.apache.axis2.transport.http.AxisServlet.initConfigContext(AxisServlet.java:584)
> 	at org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:454)
> 	at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
> 	at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
> 	at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
> 	at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
> 	at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
> 	at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
> 	at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
> 	at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1976)
> 	at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1950)
> 	at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1869)
> 	at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3127)
> 	at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
> 	at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:489)
> 	at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
> 	at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
> 	at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
> 	at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
> 	at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
> 	at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1269)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
> 	at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:43)
> 	at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
> 	at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
> 	at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
> 	at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
> 	at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
> 	at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
> 	at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:164)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:69)
> 	at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
> 	at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
> 	at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
> [LIMSePayWS] 
>  2012-12-11 13:28:23,577 - ERROR - [DeploymentEngine.java:277] - Could not create URL from 'META-INF/PaymentConfirmationService.wsdl' and 'PaymentConfirmation-v1.0.xsd'org.apache.axis2.deployment.DeploymentException: Could not create URL from 'META-INF/PaymentConfirmationService.wsdl' and 'PaymentConfirmation-v1.0.xsd'
> 	at org.apache.axis2.deployment.DeploymentEngine.populateService(DeploymentEngine.java:511)
> 	at org.apache.axis2.deployment.DeploymentEngine.loadServicesFromUrl(DeploymentEngine.java:262)
> 	at org.apache.axis2.deployment.WarBasedAxisConfigurator.loadServices(WarBasedAxisConfigurator.java:292)
> 	at org.apache.axis2.context.ConfigurationContextFactory.createConfigurationContext(ConfigurationContextFactory.java:96)
> 	at org.apache.axis2.transport.http.AxisServlet.initConfigContext(AxisServlet.java:584)
> 	at org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:454)
> 	at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
> 	at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
> 	at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
> 	at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
> 	at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
> 	at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
> 	at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
> 	at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1976)
> 	at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1950)
> 	at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1869)
> 	at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3127)
> 	at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
> 	at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:489)
> 	at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
> 	at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
> 	at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
> 	at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
> 	at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
> 	at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1269)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
> 	at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:43)
> 	at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
> 	at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
> 	at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
> 	at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
> 	at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
> 	at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
> 	at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:164)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:69)
> 	at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
> 	at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
> 	at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
> Caused by: org.apache.axis2.AxisFault: Could not create URL from 'META-INF/PaymentConfirmationService.wsdl' and 'PaymentConfirmation-v1.0.xsd'
> 	at org.apache.axis2.AxisFault.makeFault(AxisFault.java:430)
> 	at org.apache.axis2.description.WSDL11ToAxisServiceBuilder.populateService(WSDL11ToAxisServiceBuilder.java:396)
> 	at org.apache.axis2.deployment.DeploymentEngine.populateService(DeploymentEngine.java:493)
> 	at org.apache.axis2.deployment.DeploymentEngine.loadServicesFromUrl(DeploymentEngine.java:262)
> 	at org.apache.axis2.deployment.WarBasedAxisConfigurator.loadServices(WarBasedAxisConfigurator.java:291)
> 	at org.apache.axis2.context.ConfigurationContextFactory.createConfigurationContext(ConfigurationContextFactory.java:95)
> 	at org.apache.axis2.transport.http.AxisServlet.initConfigContext(AxisServlet.java:584)
> 	at org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:454)
> 	at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
> 	at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
> 	at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
> 	at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
> 	at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
> 	at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
> 	at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
> 	at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1976)
> 	at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1950)
> 	at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1869)
> 	at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3126)
> 	at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
> 	at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
> 	at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
> 	at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
> 	at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
> 	at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
> 	at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
> 	at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1267)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
> 	at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:43)
> 	at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
> 	at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
> 	at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
> 	at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
> 	at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
> 	at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
> 	at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
> 	... 3 more
> Caused by: java.lang.RuntimeException: Could not create URL from 'META-INF/PaymentConfirmationService.wsdl' and 'PaymentConfirmation-v1.0.xsd'
> 	at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.composeURL(SchemaSerializer.java:210)
> 	at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.loadReference(SchemaSerializer.java:133)
> 	at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.processImportIncludeRedefine(SchemaSerializer.java:108)
> 	at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.unmarshall(SchemaSerializer.java:73)
> 	at oracle.j2ee.ws.wsdl.extensions.ParseUtils.createExtensibilityElement(ParseUtils.java:106)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.parseTypes(WSDLReaderImpl.java:1472)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.parseDefinition(WSDLReaderImpl.java:779)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:706)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:338)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:294)
> 	at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:278)
> 	at org.apache.axis2.description.WSDL11ToAxisServiceBuilder.readInTheWSDLFile(WSDL11ToAxisServiceBuilder.java:2139)
> 	at org.apache.axis2.description.WSDL11ToAxisServiceBuilder.setup(WSDL11ToAxisServiceBuilder.java:805)
> 	at org.apache.axis2.description.WSDL11ToAxisServiceBuilder.populateService(WSDL11ToAxisServiceBuilder.java:312)
> 	at org.apache.axis2.deployment.DeploymentEngine.populateService(DeploymentEngine.java:493)
> 	at org.apache.axis2.deployment.DeploymentEngine.loadServicesFromUrl(DeploymentEngine.java:262)
> 	at org.apache.axis2.deployment.WarBasedAxisConfigurator.loadServices(WarBasedAxisConfigurator.java:292)
> 	at org.apache.axis2.context.ConfigurationContextFactory.createConfigurationContext(ConfigurationContextFactory.java:96)
> 	at org.apache.axis2.transport.http.AxisServlet.initConfigContext(AxisServlet.java:584)
> 	at org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:454)
> 	at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
> 	at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
> 	at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
> 	at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
> 	at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
> 	at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
> 	at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
> 	at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1976)
> 	at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1950)
> 	at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1869)
> 	at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3127)
> 	at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
> 	at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:489)
> 	at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
> 	at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
> 	at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
> 	at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
> 	at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
> 	at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1269)
> 	at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
> 	at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
> 	at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:43)
> 	at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
> 	at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
> 	at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
> 	at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
> 	at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
> 	at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
> 	at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
> 	at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:164)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
> 	at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:69)
> 	... 3 more
> [LIMSePayWS] 
>  2012-12-11 13:28:23,593 - WARN - [OnDemandLogger.java:165] - No transportReceiver for org.apache.axis2.transport.http.AxisServletListener found. An instance for HTTP will be configured automatically. Please update your axis2.xml file!

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org