cancel
Showing results for 
Search instead for 
Did you mean: 

Error when map SOAP service to OData Qeury service through Integration Gateway

Former Member
0 Kudos

Hi

    I am trying to map SOAP webservice to OData service through Integration Gateway. SMP3.0 Version: 3.0.0 Build: 20131003-1857

    I setup one SOAP webservice using Axis1.6.2 and Tomcat7.0 and built several webservice methods to get the airlines and the flights data. All the methods work well, please find the WSDL file in the attached. For example,  I can get all the flights of one airline from the getFlights URL: http://localhost:8888/axis2/services/MyAirlineService/getFlights?airlineID=1


<ns:getFlightsResponse xmlns:ns="http://axis2test.sap.com" xmlns:ax21="http://axis2test.sap.com/xsd">

<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax21:Flight">

<ax21:airlineID>1</ax21:airlineID>

<ax21:fid>F1_0</ax21:fid>

<ax21:id>0</ax21:id>

<ax21:name>Flight Number 1_0</ax21:name>

</ns:return>

<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax21:Flight">

<ax21:airlineID>1</ax21:airlineID>

<ax21:fid>F1_1</ax21:fid>

<ax21:id>1</ax21:id>

<ax21:name>Flight Number 1_1</ax21:name>

</ns:return>

<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax21:Flight">

<ax21:airlineID>1</ax21:airlineID>

<ax21:fid>F1_2</ax21:fid>

<ax21:id>2</ax21:id>

<ax21:name>Flight Number 1_2</ax21:name>

</ns:return>

</ns:getFlightsResponse>

    I can also get one specified Flight through getFlight URL:

http://localhost:8888/axis2/services/MyAirlineService/getFlight?airlineID=1&flightID=1


<ns:getFlightResponse xmlns:ns="http://axis2test.sap.com">

<ns:return xmlns:ax21="http://axis2test.sap.com/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax21:Flight">

<ax21:airlineID>1</ax21:airlineID>

<ax21:fid>F1_1</ax21:fid>

<ax21:id>1</ax21:id>

<ax21:name>Flight Number 1_1</ax21:name>

</ns:return>

</ns:getFlightResponse>

Then I create one entity named with 'Flight' in GWPA OData Modeler, and firt to map 'READ' method to getFlight method, it works well, I can get retrieve the specified flight from this OData URI: http://localhost:8080/gateway/odata/sap/MyS2O;v=1/FlightSet(AirlineID=1,FlightID=1)


<entry xmlns="http://www.w3.org/2005/Atom" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xml:base="http://localhost:8080/gateway/odata/sap/MyS2O;v=1/">

<id>

http://localhost:8080/gateway/odata/sap/MyS2O;v=1/FlightSet(FlightID=1L,AirlineID=1L)

</id>

<title type="text">FlightSet</title>

<updated>2013-12-31T11:43:52.62+08:00</updated>

<category term="S2O.Flight" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>

<link href="FlightSet(FlightID=1L,AirlineID=1L)" rel="edit" title="Flight"/>

<content type="application/xml">

<m:properties>

<d:FlightID>1</d:FlightID>

<d:AirlineID>1</d:AirlineID>

<d:FID>F1_1</d:FID>

<d:Name>Flight Number 1_1</d:Name>

</m:properties>

</content>

</entry>

Then I mapped 'Flight' 'Query' method to getFlights SOAP method, and 'Define Costom Logic for Request' . At this point I didn't modify the Java class file. When I deoply this service to Integration Gateway, the error comes up in SMP3.0 server.log:


2013 12 31 11:48:36#+0800#ERROR#com.sap.it.gb.referenceresolver.ReferenceResolverImpl##anonymous#pool-32-thread-1###Reference resolver result: null|

2013 12 31 11:48:36#+0800#ERROR#com.sap.it.ide.ui.core.api.gen.pluggability.ResourceProviderImpl##anonymous#pool-32-thread-1###Reference Resolver is unable to find the resource : src/main/resources/parameters.propcom.sap.it.gb.share.reference.resolver.ReferenceResolverException: Reference Resolver is unable to find the resource : src/main/resources/parameters.prop

at com.sap.it.gb.referenceresolver.ReferenceResolverImpl.internalResolveReference(ReferenceResolverImpl.java:69)

at com.sap.it.gb.referenceresolver.ReferenceResolverImpl.resolveReference(ReferenceResolverImpl.java:52)

at com.sap.it.ide.ui.core.api.gen.pluggability.ResourceProviderImpl.resolveReference(ResourceProviderImpl.java:63)

at com.sap.it.ifl.core.common.ParameterizationUtil.getProjectProperties(ParameterizationUtil.java:61)

at com.sap.it.ifl.core.checks.MessageFlowCheck.validateAdapterAttributes(MessageFlowCheck.java:552)

at com.sap.it.ifl.core.checks.MessageFlowCheck.executeChecks(MessageFlowCheck.java:144)

at com.sap.it.gnb.ifl.common.validation.api.ComponentCheckManager.executeChecks(ComponentCheckManager.java:33)

at com.sap.ifl.gnb.validation.blueprint.IFlowValidator.validate(IFlowValidator.java:69)

at com.sap.it.gb.validation.ValidatorInvokerImpl.invoke(ValidatorInvokerImpl.java:91)

at com.sap.it.gb.processor.facade.GBOperations.performValidation(GBOperations.java:200)

at com.sap.it.gb.processor.push.GenerationAndBuild.doValidateAndGenerate(GenerationAndBuild.java:231)

at com.sap.it.gb.processor.push.GenerationAndBuild.doGenerateAndBuild(GenerationAndBuild.java:137)

at com.sap.it.gb.processor.push.GenerationAndBuild.access$2(GenerationAndBuild.java:116)

at com.sap.it.gb.processor.push.GenerationAndBuild$1.call(GenerationAndBuild.java:324)

at com.sap.it.gb.processor.push.GenerationAndBuild$1.call(GenerationAndBuild.java:1)

at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)

at java.util.concurrent.FutureTask.run(FutureTask.java:166)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)

at java.lang.Thread.run(Thread.java:791)


2013 12 31 11:48:37#+0800#ERROR#com.sap.it.ifl.core.common.ParameterizationUtil##anonymous#pool-32-thread-1###Unable to resolve file:src/main/resources/parameters.propcom.sap.it.gnb.ifl.common.gen.pluggability.api.IFlowReferenceResolverException: Unable to resolve file:src/main/resources/parameters.prop

at com.sap.it.ide.ui.core.api.gen.pluggability.ResourceProviderImpl.resolveReference(ResourceProviderImpl.java:69)

at com.sap.it.ifl.core.common.ParameterizationUtil.getProjectProperties(ParameterizationUtil.java:61)

at com.sap.it.ifl.core.checks.MessageFlowCheck.validateAdapterAttributes(MessageFlowCheck.java:552)

at com.sap.it.ifl.core.checks.MessageFlowCheck.executeChecks(MessageFlowCheck.java:144)

at com.sap.it.gnb.ifl.common.validation.api.ComponentCheckManager.executeChecks(ComponentCheckManager.java:33)

at com.sap.ifl.gnb.validation.blueprint.IFlowValidator.validate(IFlowValidator.java:69)

at com.sap.it.gb.validation.ValidatorInvokerImpl.invoke(ValidatorInvokerImpl.java:91)

at com.sap.it.gb.processor.facade.GBOperations.performValidation(GBOperations.java:200)

at com.sap.it.gb.processor.push.GenerationAndBuild.doValidateAndGenerate(GenerationAndBuild.java:231)

at com.sap.it.gb.processor.push.GenerationAndBuild.doGenerateAndBuild(GenerationAndBuild.java:137)

at com.sap.it.gb.processor.push.GenerationAndBuild.access$2(GenerationAndBuild.java:116)

at com.sap.it.gb.processor.push.GenerationAndBuild$1.call(GenerationAndBuild.java:324)

at com.sap.it.gb.processor.push.GenerationAndBuild$1.call(GenerationAndBuild.java:1)

at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)

at java.util.concurrent.FutureTask.run(FutureTask.java:166)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)

at java.lang.Thread.run(Thread.java:791)

Caused by: com.sap.it.gb.share.reference.resolver.ReferenceResolverException: Reference Resolver is unable to find the resource : src/main/resources/parameters.prop

at com.sap.it.gb.referenceresolver.ReferenceResolverImpl.internalResolveReference(ReferenceResolverImpl.java:69)

at com.sap.it.gb.referenceresolver.ReferenceResolverImpl.resolveReference(ReferenceResolverImpl.java:52)

at com.sap.it.ide.ui.core.api.gen.pluggability.ResourceProviderImpl.resolveReference(ResourceProviderImpl.java:63)

... 17 common frames omitted


2013 12 31 11:48:38#+0800#ERROR#com.sap.it.gb.referenceresolver.ReferenceResolverImpl##anonymous#pool-32-thread-1###Reference resolver result: null|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Extra illegal tokens: '/', '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Extra illegal tokens: '/', '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Extra illegal tokens: '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Extra illegal tokens: '/', '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Extra illegal tokens: '/', '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Extra illegal tokens: '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Extra illegal tokens: '/', '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Extra illegal tokens: '/', '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Extra illegal tokens: '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #6; Column #114; Extra illegal tokens: '/', '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #14; Column #105; Extra illegal tokens: '/', '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #30; Column #83; Extra illegal tokens: '/'|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #33; Column #68; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; Prefix must resolve to a namespace: bpmn2|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; Prefix must resolve to a namespace: ifl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #42; Column #69; A location step was expected following the '/' or '//' token.|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###SystemId Unknown; Line #92; Column #95; Prefix must resolve to a namespace: exsl|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #91; Column #61; Attempting to generate a namespace prefix with a null URI|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #233; Column #16; runtime:SMP|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #276; Column #16; |

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #313; Column #16; SOAP1xSOAP1xSOAP1xSOAP1x|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #346; Column #16; |

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #382; Column #16; |

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #420; Column #16; |

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #565; Column #16; |

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _Participant_191:_Participant_191|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _EndEvent_137:_Participant_191|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _EndEvent_138:_Participant_191|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _Participant_195:_Participant_191|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _EndEvent_140:_Participant_191|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _EndEvent_141:_Participant_191|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _Participant_191:_Participant_195|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _EndEvent_137:_Participant_195|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _EndEvent_138:_Participant_195|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _Participant_195:_Participant_195|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _EndEvent_140:_Participant_195|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/BPMN2ToCamel.xsl; Line #879; Column #18; _EndEvent_141:_Participant_195|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1426; Column #20; opmap uri:dir://opmap/src\main\resources\mapping/S2OdefaultFlightSet_Query.opmap|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1426; Column #20; opmap uri:dir://opmap/src\main\resources\mapping/S2OdefaultFlightSet_Read.opmap|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1426; Column #20; opmap uri:dir://opmap/src\main\resources\mapping/S2OdefaultAirlineSet_Read.opmap|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1426; Column #20; opmap uri:dir://opmap/src\main\resources\mapping/S2OdefaultAirlineSet_Query.opmap|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1436; Column #16; opmaptruetruetruetrue|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #247; Column #26; Generating camel:simple|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1529; Column #16; calling to endpoint Called :condition|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #211; Column #23; Handle endpoint call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #747; Column #16; calling createCamelto :_EndEvent_137|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #879; Column #16; calling generate adapter0 for  :SOAP|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #222; Column #23; Starting Post Response Call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1494; Column #16; Template Called :_EndEvent_137|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #230; Column #23; Done Post Response Call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #247; Column #26; Generating camel:simple|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1529; Column #16; calling to endpoint Called :condition|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #211; Column #23; Handle endpoint call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #747; Column #16; calling createCamelto :_EndEvent_138|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #879; Column #16; calling generate adapter0 for  :SOAP|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #222; Column #23; Starting Post Response Call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1494; Column #16; Template Called :_EndEvent_138|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #230; Column #23; Done Post Response Call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #688; Column #17; calling default route :_SequenceFlow_319|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #693; Column #17; inside foreach :_SequenceFlow_319|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1009; Column #16; handler called in|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1082; Column #19; message flow found|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1096; Column #20; calling response template|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1082; Column #19; message flow found|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1112; Column #16; handler called out|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1426; Column #20; opmap uri:dir://opmap/src\main\resources\mapping/S2OdefaultFlightSet_Query.opmap|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1426; Column #20; opmap uri:dir://opmap/src\main\resources\mapping/S2OdefaultFlightSet_Read.opmap|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1426; Column #20; opmap uri:dir://opmap/src\main\resources\mapping/S2OdefaultAirlineSet_Read.opmap|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1426; Column #20; opmap uri:dir://opmap/src\main\resources\mapping/S2OdefaultAirlineSet_Query.opmap|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1436; Column #16; opmaptruetruetruetrue|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #247; Column #26; Generating camel:simple|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1529; Column #16; calling to endpoint Called :condition|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #211; Column #23; Handle endpoint call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #747; Column #16; calling createCamelto :_EndEvent_140|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #879; Column #16; calling generate adapter0 for  :SOAP|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #222; Column #23; Starting Post Response Call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1494; Column #16; Template Called :_EndEvent_140|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #230; Column #23; Done Post Response Call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #247; Column #26; Generating camel:simple|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1529; Column #16; calling to endpoint Called :condition|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #211; Column #23; Handle endpoint call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #747; Column #16; calling createCamelto :_EndEvent_141|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #879; Column #16; calling generate adapter0 for  :SOAP|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #222; Column #23; Starting Post Response Call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1494; Column #16; Template Called :_EndEvent_141|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #230; Column #23; Done Post Response Call|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #688; Column #17; calling default route :_SequenceFlow_326|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #693; Column #17; inside foreach :_SequenceFlow_326|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1009; Column #16; handler called in|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1082; Column #19; message flow found|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1082; Column #19; message flow found|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1096; Column #20; calling response template|

2013 12 31 11:48:38#+0800#ERROR#System.err##anonymous#pool-32-thread-1###jar:file:/C:/SAP/MobilePlatform3/Server/plugins/com.sap.it.gnb.ifl.common_1.3.3.jar!/resources/com/sap/ifl/gnb/generator/blueprint/RouteBuilder.xsl; Line #1112; Column #16; handler called out|

2013 12 31 11:48:39#+0800#ERROR#com.sap.it.gb.storageprovider.StorageProvider##anonymous#pool-32-thread-1###parameters.propdefdoes not exists in the specified location/src/main/resources|

2013 12 31 11:48:39#+0800#ERROR#com.sap.it.gb.storageprovider.StorageProvider##anonymous#pool-32-thread-1###parameters.propdoes not exists in the specified location/src/main/resources|

2013 12 31 11:48:39#+0800#ERROR#com.sap.it.gb.storageprovider.StorageProvider##anonymous#pool-32-thread-1###No files with extension jar was found in location /src/main/resources/mapping|

2013 12 31 11:48:39#+0800#ERROR#com.sap.it.gb.storageprovider.StorageProvider##anonymous#pool-32-thread-1###No files with extension xslt was found in location /src/main/resources/mapping|

2013 12 31 11:48:39#+0800#ERROR#com.sap.it.gb.storageprovider.StorageProvider##anonymous#pool-32-thread-1###No files with extension xsl was found in location /src/main/resources/mapping|

2013 12 31 11:48:39#+0800#ERROR#com.sap.it.gb.storageprovider.StorageProvider##anonymous#pool-32-thread-1###No files with extension odata was found in location /src/main/resources/model|

2013 12 31 11:48:39#+0800#ERROR#com.sap.it.gb.storageprovider.StorageProvider##anonymous#pool-32-thread-1###No files with extension odatasrv was found in location /src/main/resources/model|

2013 12 31 11:48:39#+0800#ERROR#com.sap.it.gb.storageprovider.StorageProvider##anonymous#pool-32-thread-1###No files with extension xsd was found in location /src/main/resources/xsd|

2013 12 31 11:48:39#+0800#WARN#com.sap.it.nm.core.deploy.shared.BundleDeployer##anonymous#AvatarThread-13###Framework Wiring is null..fallback to packageadmin|

2013 12 31 11:48:40#+0800#ERROR#org.apache.aries.blueprint.container.BlueprintContainerImpl##anonymous#Blueprint Extender: 3###Unable to start blueprint container for bundle MyS2Oorg.osgi.service.blueprint.container.ComponentDefinitionException: Unable to load class FlightSetQuery_Req from recipe BeanRecipe[name='FlightSetQuery_Req']

at org.apache.aries.blueprint.di.AbstractRecipe.loadType(AbstractRecipe.java:112)

at org.apache.aries.blueprint.container.BeanRecipe.loadClass(BeanRecipe.java:187)

at org.apache.aries.blueprint.container.BeanRecipe.getType(BeanRecipe.java:761)

at org.apache.aries.blueprint.container.BeanRecipe.getInstance(BeanRecipe.java:259)

at org.apache.aries.blueprint.container.BeanRecipe.internalCreate(BeanRecipe.java:706)

at org.apache.aries.blueprint.di.AbstractRecipe.create(AbstractRecipe.java:64)

at org.apache.aries.blueprint.container.BlueprintRepository.createInstances(BlueprintRepository.java:219)

at org.apache.aries.blueprint.container.BlueprintRepository.createAll(BlueprintRepository.java:147)

at org.apache.aries.blueprint.container.BlueprintContainerImpl.instantiateEagerComponents(BlueprintContainerImpl.java:631)

at org.apache.aries.blueprint.container.BlueprintContainerImpl.doRun(BlueprintContainerImpl.java:337)

at org.apache.aries.blueprint.container.BlueprintContainerImpl.run(BlueprintContainerImpl.java:230)

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)

at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)

at java.util.concurrent.FutureTask.run(FutureTask.java:166)

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:178)

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:292)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)

at java.lang.Thread.run(Thread.java:791)

Caused by: java.lang.ClassNotFoundException: FlightSetQuery_Req

at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:501)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:421)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:412)

at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)

at java.lang.ClassLoader.loadClass(ClassLoader.java:421)

at org.eclipse.osgi.internal.loader.BundleLoader.loadClass(BundleLoader.java:340)

at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:229)

at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:1212)

at org.apache.aries.blueprint.container.BlueprintContainerImpl.loadClass(BlueprintContainerImpl.java:390)

at org.apache.aries.blueprint.container.BlueprintRepository.loadClass(BlueprintRepository.java:381)

at org.apache.aries.blueprint.container.GenericType.parse(GenericType.java:113)

at org.apache.aries.blueprint.di.AbstractRecipe.loadType(AbstractRecipe.java:110)

... 18 common frames omitted

Anyway I was told that this service was actived successfully. But when I clicked the 'Open Service Document' link of this service , I got this error:


<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">

<code/>

<message xml:lang="en">

java.lang.NullPointerException: while trying to invoke the method java.lang.Object.hashCode() of a null object loaded from local variable 'k'

</message>

</error>

From the error message, it looks like the file of 'src/main/resources/parameters.prop' is missing. I think it there is something wrong when I map the 'QUERY',

Who could help me on this? Many thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

I have solved this issue: changed Eclipse JRE from 1.6 to 1.7, then I successfully mapped the QUERY action and deployed the project to Integration Gateway.

agentry_src
Active Contributor
0 Kudos

Thanks for posting your solution!

Regards, Mike

SAP Rapid Innovation Group - RIG

Answers (0)