├── .gitignore ├── README.md ├── ant ├── build.num ├── build.properties ├── build.xml ├── deployAll.bat ├── dev.jndi.properties ├── lib │ └── ant-contrib-1.0b3.jar ├── mds │ └── seed │ │ └── apps │ │ ├── common │ │ └── a.xml │ │ └── company │ │ └── a.xml └── workspaces │ ├── wrkspc1 │ └── build.properties │ └── wrkspc2 │ └── build.properties ├── ant_mds ├── build.properties ├── build.xml └── deployAll.bat ├── ant_osb_ps5 ├── README ├── build.properties ├── build.xml ├── export.py ├── export │ ├── Rel_XSD.jar │ └── XSD.jar ├── import.py ├── osb.bat ├── osb.sh ├── plans │ ├── xsd_plan.xml │ └── xsd_plan2.xml └── source │ ├── .metadata │ ├── .lock │ ├── .log │ ├── .mylyn │ │ └── repositories.xml.zip │ ├── .plugins │ │ ├── com.bea.alsb.core │ │ │ ├── sbconfig │ │ │ │ ├── core │ │ │ │ │ ├── System │ │ │ │ │ │ ├── JNDI Providers │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ ├── Operator Settings │ │ │ │ │ │ │ ├── GlobalOperationalSettings.xml │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ ├── Proxy Servers │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ ├── SMTP Servers │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ ├── UDDI │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ └── _projectdata │ │ │ │ │ ├── _binary │ │ │ │ │ │ ├── _index_history_null3 │ │ │ │ │ │ ├── _index_history_null4 │ │ │ │ │ │ ├── _index_system_data0 │ │ │ │ │ │ ├── _index_system_data1 │ │ │ │ │ │ ├── history_null │ │ │ │ │ │ │ ├── 1334093155515.0 │ │ │ │ │ │ │ └── 1338725570103.0 │ │ │ │ │ │ └── system_data │ │ │ │ │ │ │ ├── initialization_record │ │ │ │ │ │ │ └── ootb_refs_created │ │ │ │ │ ├── _index │ │ │ │ │ │ ├── _index_LocationData0 │ │ │ │ │ │ ├── _index_LocationData1 │ │ │ │ │ │ ├── _index_LocationData2 │ │ │ │ │ │ ├── _index_LocationData3 │ │ │ │ │ │ └── _index_Operations0 │ │ │ │ │ ├── _static │ │ │ │ │ │ └── _projectdata │ │ │ │ │ └── default │ │ │ │ │ │ └── _projectdata │ │ │ │ └── sessions │ │ │ │ │ ├── ALSB-IDE_build_1334171426559 │ │ │ │ │ ├── EndPointMonitoring │ │ │ │ │ │ ├── AlertDestination.alertdestination.xml │ │ │ │ │ │ ├── Proxy │ │ │ │ │ │ │ ├── HelloProxyServiceStart.proxy.xml │ │ │ │ │ │ │ ├── Helloworld.xsd │ │ │ │ │ │ │ ├── HelloworldNormal.wsdl │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ ├── _projectdata │ │ │ │ │ │ └── business │ │ │ │ │ │ │ ├── HelloBusinessService.business.xml │ │ │ │ │ │ │ ├── Helloworld.xsd │ │ │ │ │ │ │ ├── HelloworldNormal.wsdl │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ ├── ReliableMessageWS │ │ │ │ │ │ ├── HelloProxyService.proxy.xml │ │ │ │ │ │ ├── _projectdata │ │ │ │ │ │ ├── wsdl │ │ │ │ │ │ │ ├── Helloworld.wsdl │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ └── xsd │ │ │ │ │ │ │ ├── Helloworld.xsd │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ ├── Splitjoin │ │ │ │ │ │ ├── C_Drive.business.xml │ │ │ │ │ │ ├── OrderSplitJoin.business.xml │ │ │ │ │ │ ├── OrderSplitJoin.flow │ │ │ │ │ │ ├── ProxyServiceOrder.proxy.xml │ │ │ │ │ │ ├── ProxyServiceOrders.proxy.xml │ │ │ │ │ │ ├── _projectdata │ │ │ │ │ │ └── resource │ │ │ │ │ │ │ ├── OrderWS.wsdl │ │ │ │ │ │ │ ├── OrdersWS.wsdl │ │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ │ └── messages.xsd │ │ │ │ │ ├── TextToXml │ │ │ │ │ │ ├── C_temp.business.xml │ │ │ │ │ │ ├── Jms.proxy.xml │ │ │ │ │ │ ├── _projectdata │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ │ ├── personel.xml │ │ │ │ │ │ │ └── personel_to_xml.xml │ │ │ │ │ │ ├── mfl │ │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ │ └── personel.mfl │ │ │ │ │ │ ├── wsdl │ │ │ │ │ │ │ ├── XmlData.wsdl │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ ├── xquery │ │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ │ └── personel_to_xml.xquery │ │ │ │ │ │ └── xsd │ │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ │ └── personel.xsd │ │ │ │ │ ├── XSDvalidation │ │ │ │ │ │ ├── _projectdata │ │ │ │ │ │ ├── file.business.xml │ │ │ │ │ │ ├── in.proxy.xml │ │ │ │ │ │ ├── wsdl │ │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ │ └── validation.wsdl │ │ │ │ │ │ └── xsd │ │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ │ ├── request.xsd │ │ │ │ │ │ │ └── response.xsd │ │ │ │ │ ├── _binary │ │ │ │ │ │ ├── SessionData │ │ │ │ │ │ │ └── singleton │ │ │ │ │ │ ├── _index_SessionData1 │ │ │ │ │ │ ├── _index_history_ALSB-IDE_build_13341714265592 │ │ │ │ │ │ ├── _index_undo_ALSB-IDE_build_13341714265592 │ │ │ │ │ │ ├── history_ALSB-IDE_build_1334171426559 │ │ │ │ │ │ │ └── 1334171429555.0 │ │ │ │ │ │ └── undo_ALSB-IDE_build_1334171426559 │ │ │ │ │ │ │ └── 1334171429555.0 │ │ │ │ │ └── _index │ │ │ │ │ │ ├── _index_AlertDestination4 │ │ │ │ │ │ ├── _index_BusinessService0 │ │ │ │ │ │ ├── _index_BusinessService2 │ │ │ │ │ │ ├── _index_BusinessService3 │ │ │ │ │ │ ├── _index_BusinessService4 │ │ │ │ │ │ ├── _index_FLOW0 │ │ │ │ │ │ ├── _index_LocationData0 │ │ │ │ │ │ ├── _index_LocationData1 │ │ │ │ │ │ ├── _index_LocationData2 │ │ │ │ │ │ ├── _index_LocationData3 │ │ │ │ │ │ ├── _index_LocationData4 │ │ │ │ │ │ ├── _index_MFL0 │ │ │ │ │ │ ├── _index_ProxyService0 │ │ │ │ │ │ ├── _index_ProxyService1 │ │ │ │ │ │ ├── _index_ProxyService3 │ │ │ │ │ │ ├── _index_ProxyService4 │ │ │ │ │ │ ├── _index_WSDL0 │ │ │ │ │ │ ├── _index_WSDL2 │ │ │ │ │ │ ├── _index_WSDL3 │ │ │ │ │ │ ├── _index_WSDL4 │ │ │ │ │ │ ├── _index_XML1 │ │ │ │ │ │ ├── _index_XML2 │ │ │ │ │ │ ├── _index_XMLSchema0 │ │ │ │ │ │ ├── _index_XMLSchema3 │ │ │ │ │ │ ├── _index_XMLSchema4 │ │ │ │ │ │ └── _index_Xquery2 │ │ │ │ │ └── ALSB-IDE_build_1349474206701 │ │ │ │ │ ├── ReliableMessageWS │ │ │ │ │ ├── HelloProxyService.proxy.xml │ │ │ │ │ ├── _projectdata │ │ │ │ │ ├── wsdl │ │ │ │ │ │ ├── Helloworld.wsdl │ │ │ │ │ │ └── _folderdata │ │ │ │ │ └── xsd │ │ │ │ │ │ ├── Helloworld.xsd │ │ │ │ │ │ └── _folderdata │ │ │ │ │ ├── XSDvalidation │ │ │ │ │ ├── _projectdata │ │ │ │ │ ├── file.business.xml │ │ │ │ │ ├── in.proxy.xml │ │ │ │ │ ├── wsdl │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ └── validation.wsdl │ │ │ │ │ └── xsd │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ ├── request.xsd │ │ │ │ │ │ └── response.xsd │ │ │ │ │ ├── _binary │ │ │ │ │ ├── SessionData │ │ │ │ │ │ └── singleton │ │ │ │ │ ├── _index_SessionData1 │ │ │ │ │ ├── _index_history_ALSB-IDE_build_13494742067012 │ │ │ │ │ ├── _index_undo_ALSB-IDE_build_13494742067010 │ │ │ │ │ ├── history_ALSB-IDE_build_1349474206701 │ │ │ │ │ │ └── 1349474208747.0 │ │ │ │ │ └── undo_ALSB-IDE_build_1349474206701 │ │ │ │ │ │ └── 1349474208747.0 │ │ │ │ │ └── _index │ │ │ │ │ ├── _index_BusinessService2 │ │ │ │ │ ├── _index_LocationData0 │ │ │ │ │ ├── _index_LocationData2 │ │ │ │ │ ├── _index_LocationData3 │ │ │ │ │ ├── _index_LocationData4 │ │ │ │ │ ├── _index_ProxyService3 │ │ │ │ │ ├── _index_ProxyService4 │ │ │ │ │ ├── _index_WSDL0 │ │ │ │ │ ├── _index_WSDL3 │ │ │ │ │ ├── _index_XMLSchema3 │ │ │ │ │ └── _index_XMLSchema4 │ │ │ └── sessions.xml │ │ ├── oracle.eclipse.tools.common.services │ │ │ ├── EndPointMonitoring │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ │ ├── OSB Configuration │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ │ ├── ReliableMessageWS │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ │ ├── Splitjoin │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ │ ├── TextToXml │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ │ └── XSDvalidation │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ ├── oracle.eclipse.tools.weblogic │ │ │ └── libraries │ │ │ │ └── registry.xml │ │ ├── org.eclipse.core.resources │ │ │ ├── .history │ │ │ │ ├── 3 │ │ │ │ │ └── 40a9abed73ad00111050fb3e22f7de78 │ │ │ │ ├── 4 │ │ │ │ │ └── b0c2cdd0558300111041be929c3f0f87 │ │ │ │ ├── 21 │ │ │ │ │ └── d0ba82d1558300111041be929c3f0f87 │ │ │ │ ├── 25 │ │ │ │ │ └── 406c99d0558300111041be929c3f0f87 │ │ │ │ ├── 31 │ │ │ │ │ └── 90357cc0558300111041be929c3f0f87 │ │ │ │ ├── 37 │ │ │ │ │ └── 701c88c0558300111041be929c3f0f87 │ │ │ │ ├── 54 │ │ │ │ │ └── 10da8ecf558300111041be929c3f0f87 │ │ │ │ ├── 59 │ │ │ │ │ └── c0936bc0558300111041be929c3f0f87 │ │ │ │ ├── 61 │ │ │ │ │ └── 60b991c0558300111041be929c3f0f87 │ │ │ │ ├── 72 │ │ │ │ │ └── 2004f1c9558300111041be929c3f0f87 │ │ │ │ ├── 82 │ │ │ │ │ └── e07500c0558300111041be929c3f0f87 │ │ │ │ ├── 84 │ │ │ │ │ └── 503f58954f0e001210f6b94033a0d6c6 │ │ │ │ ├── 87 │ │ │ │ │ └── e0419dd6538300111041be929c3f0f87 │ │ │ │ ├── 95 │ │ │ │ │ └── b04e70c0558300111041be929c3f0f87 │ │ │ │ ├── 2b │ │ │ │ │ └── d06cddc4558300111041be929c3f0f87 │ │ │ │ ├── 2d │ │ │ │ │ └── 00e71971548300111041be929c3f0f87 │ │ │ │ ├── 3b │ │ │ │ │ └── 12118fd6538300111041be929c3f0f87 │ │ │ │ ├── 9a │ │ │ │ │ └── 1024cad1558300111041be929c3f0f87 │ │ │ │ ├── a5 │ │ │ │ │ └── 10fb33f274ad00111288924b2da0c947 │ │ │ │ ├── a6 │ │ │ │ │ └── 015b91d6538300111041be929c3f0f87 │ │ │ │ ├── aa │ │ │ │ │ └── 80f080c0558300111041be929c3f0f87 │ │ │ │ ├── ad │ │ │ │ │ └── f0f79ad6538300111041be929c3f0f87 │ │ │ │ ├── be │ │ │ │ │ └── 10297a35568300111041be929c3f0f87 │ │ │ │ ├── ca │ │ │ │ │ └── 10118fd6538300111041be929c3f0f87 │ │ │ │ ├── d2 │ │ │ │ │ └── 00eb0cf1558300111041be929c3f0f87 │ │ │ │ ├── d6 │ │ │ │ │ └── 11118fd6538300111041be929c3f0f87 │ │ │ │ ├── e4 │ │ │ │ │ └── 10a08cd6538300111041be929c3f0f87 │ │ │ │ └── fc │ │ │ │ │ └── 005b91d6538300111041be929c3f0f87 │ │ │ ├── .projects │ │ │ │ ├── EndPointMonitoring │ │ │ │ │ ├── .indexes │ │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers.snap │ │ │ │ │ ├── .syncinfo.snap │ │ │ │ │ └── 1.tree │ │ │ │ ├── OSB Configuration │ │ │ │ │ ├── .indexes │ │ │ │ │ │ └── af │ │ │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers.snap │ │ │ │ │ └── .syncinfo.snap │ │ │ │ ├── ReliableMessageWS │ │ │ │ │ ├── .indexes │ │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers.snap │ │ │ │ │ └── .syncinfo.snap │ │ │ │ ├── Splitjoin │ │ │ │ │ ├── .indexes │ │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers.snap │ │ │ │ │ ├── .syncinfo.snap │ │ │ │ │ └── 1.tree │ │ │ │ ├── TextToXml │ │ │ │ │ ├── .indexes │ │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers │ │ │ │ │ ├── .markers.snap │ │ │ │ │ ├── .syncinfo.snap │ │ │ │ │ └── 1.tree │ │ │ │ └── XSDvalidation │ │ │ │ │ ├── .indexes │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers.snap │ │ │ │ │ └── .syncinfo.snap │ │ │ ├── .root │ │ │ │ ├── .indexes │ │ │ │ │ ├── history.version │ │ │ │ │ ├── properties.index │ │ │ │ │ └── properties.version │ │ │ │ ├── .markers.snap │ │ │ │ └── 2.tree │ │ │ ├── .safetable │ │ │ │ ├── oracle.eclipse.tools.common.services.2 │ │ │ │ └── org.eclipse.core.resources │ │ │ └── .snap │ │ ├── org.eclipse.core.runtime │ │ │ └── .settings │ │ │ │ ├── oracle.eclipse.tools.webtier.ui.prefs │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ │ ├── org.eclipse.debug.ui.prefs │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ ├── org.eclipse.jdt.launching.prefs │ │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ │ ├── org.eclipse.jst.j2ee.webservice.ui.prefs │ │ │ │ ├── org.eclipse.jst.jsp.core.prefs │ │ │ │ ├── org.eclipse.mylyn.context.core.prefs │ │ │ │ ├── org.eclipse.mylyn.java.ui.prefs │ │ │ │ ├── org.eclipse.mylyn.monitor.ui.prefs │ │ │ │ ├── org.eclipse.team.cvs.ui.prefs │ │ │ │ ├── org.eclipse.team.ui.prefs │ │ │ │ ├── org.eclipse.ui.ide.prefs │ │ │ │ ├── org.eclipse.ui.prefs │ │ │ │ ├── org.eclipse.ui.workbench.prefs │ │ │ │ ├── org.eclipse.wst.jsdt.ui.prefs │ │ │ │ ├── org.eclipse.wst.server.core.prefs │ │ │ │ ├── org.eclipse.wst.sse.core.prefs │ │ │ │ ├── org.eclipse.wst.ws.service.policy.prefs │ │ │ │ └── org.python.pydev.prefs │ │ ├── org.eclipse.debug.core │ │ │ └── .launches │ │ │ │ ├── Format Builder.launch │ │ │ │ └── Oracle WebLogic Server 11gR1 (10.3.6) at localhost [osb].launch │ │ ├── org.eclipse.debug.ui │ │ │ └── launchConfigurationHistory.xml │ │ ├── org.eclipse.jdt.core │ │ │ ├── invalidArchivesCache │ │ │ ├── nonChainingJarsCache │ │ │ └── variablesAndContainers.dat │ │ ├── org.eclipse.jdt.launching │ │ │ ├── .install.xml │ │ │ └── libraryInfos.xml │ │ ├── org.eclipse.jdt.ui │ │ │ ├── OpenTypeHistory.xml │ │ │ ├── QualifiedTypeNameHistory.xml │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.jst.j2ee.ui │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ltk.core.refactoring │ │ │ └── .refactorings │ │ │ │ └── .workspace │ │ │ │ └── 2012 │ │ │ │ └── 4 │ │ │ │ └── 15 │ │ │ │ ├── refactorings.history │ │ │ │ └── refactorings.index │ │ ├── org.eclipse.ltk.ui.refactoring │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.pde.core │ │ │ └── .cache │ │ │ │ └── clean-cache.properties │ │ ├── org.eclipse.team.cvs.core │ │ │ └── .running │ │ ├── org.eclipse.ui.ide │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ui.intro │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ui.workbench │ │ │ ├── dialog_settings.xml │ │ │ ├── workbench.xml │ │ │ └── workingsets.xml │ │ ├── org.eclipse.wst.jsdt.core │ │ │ ├── externalLibsTimeStamps │ │ │ ├── libraries │ │ │ │ ├── baseBrowserLibrary.js │ │ │ │ ├── browserWindow.js │ │ │ │ ├── dom5.js │ │ │ │ ├── system.js │ │ │ │ └── xhr.js │ │ │ └── variablesAndContainers.dat │ │ ├── org.eclipse.wst.jsdt.ui │ │ │ ├── OpenTypeHistory.xml │ │ │ └── QualifiedTypeNameHistory.xml │ │ ├── org.eclipse.wst.server.core │ │ │ ├── monitors.xml │ │ │ ├── publish.xml │ │ │ ├── publish │ │ │ │ └── publish0.dat │ │ │ ├── servers.xml │ │ │ ├── tmp-data.xml │ │ │ └── tmp0 │ │ │ │ └── osb │ │ │ │ └── _auto_generated_ear_ │ │ │ │ └── META-INF │ │ │ │ └── application.xml │ │ └── org.python.pydev │ │ │ └── ping.log │ └── version.ini │ ├── OSB Configuration │ ├── .project │ └── .settings │ │ ├── com.bea.alsb.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── ReliableMessageWS │ ├── .project │ ├── .settings │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── HelloProxyService.proxy │ ├── wsdl │ │ └── Helloworld.wsdl │ └── xsd │ │ └── Helloworld.xsd │ └── XSDvalidation │ ├── .project │ ├── .settings │ ├── oracle.eclipse.tools.common.services │ │ ├── 16.artifact.sjo │ │ ├── 33.artifact.sjo │ │ └── project.num │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ └── org.eclipse.wst.validation.prefs │ ├── file.biz │ ├── in.proxy │ ├── wsdl │ └── validation.wsdl │ └── xsd │ ├── request.xsd │ └── response.xsd ├── ant_osb_ps6 ├── README.md ├── build.properties ├── build.xml ├── export.py ├── export │ ├── Rel_XSD.jar │ └── XSD.jar ├── import.py ├── osb.bat ├── osb.sh ├── plans │ ├── xsd_plan.xml │ └── xsd_plan2.xml └── source │ ├── OSB Configuration │ ├── .project │ └── .settings │ │ ├── com.bea.alsb.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── ReliableMessageWS │ ├── .project │ ├── .settings │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── HelloProxyService.proxy │ ├── wsdl │ │ └── Helloworld.wsdl │ └── xsd │ │ └── Helloworld.xsd │ └── XSDvalidation │ ├── .project │ ├── .settings │ ├── oracle.eclipse.tools.common.services │ │ ├── 16.artifact.sjo │ │ ├── 33.artifact.sjo │ │ └── project.num │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ └── org.eclipse.wst.validation.prefs │ ├── file.biz │ ├── in.proxy │ ├── wsdl │ └── validation.wsdl │ └── xsd │ ├── request.xsd │ └── response.xsd ├── ant_resourceAdapter ├── build.properties ├── build.xml ├── lib │ └── ant-contrib-1.0b3.jar ├── start.bat └── wlstTaskDefs.xml ├── ant_wls ├── README ├── build.properties ├── build.xml ├── lib │ └── ant-contrib-1.0b3.jar ├── start.bat └── wlstTaskDefs.xml ├── maven_osb_ps5 ├── README.md ├── export.py ├── export │ └── pom.xml ├── import.py ├── osb.sh ├── parent │ ├── project │ │ └── pom.xml │ └── workspace │ │ └── pom.xml ├── plans │ └── all_plan.xml ├── pom.xml └── source │ ├── .metadata │ ├── .lock │ ├── .log │ ├── .mylyn │ │ └── repositories.xml.zip │ ├── .plugins │ │ ├── com.bea.alsb.core │ │ │ ├── sbconfig │ │ │ │ ├── core │ │ │ │ │ ├── System │ │ │ │ │ │ ├── JNDI Providers │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ ├── Operator Settings │ │ │ │ │ │ │ ├── GlobalOperationalSettings.xml │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ ├── Proxy Servers │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ ├── SMTP Servers │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ ├── UDDI │ │ │ │ │ │ │ └── _folderdata │ │ │ │ │ │ └── _projectdata │ │ │ │ │ ├── _binary │ │ │ │ │ │ ├── _index_history_null3 │ │ │ │ │ │ ├── _index_history_null4 │ │ │ │ │ │ ├── _index_system_data0 │ │ │ │ │ │ ├── _index_system_data1 │ │ │ │ │ │ ├── history_null │ │ │ │ │ │ │ ├── 1334093155515.0 │ │ │ │ │ │ │ └── 1338725570103.0 │ │ │ │ │ │ └── system_data │ │ │ │ │ │ │ ├── initialization_record │ │ │ │ │ │ │ └── ootb_refs_created │ │ │ │ │ ├── _index │ │ │ │ │ │ ├── _index_LocationData0 │ │ │ │ │ │ ├── _index_LocationData1 │ │ │ │ │ │ ├── _index_LocationData2 │ │ │ │ │ │ ├── _index_LocationData3 │ │ │ │ │ │ └── _index_Operations0 │ │ │ │ │ ├── _static │ │ │ │ │ │ └── _projectdata │ │ │ │ │ └── default │ │ │ │ │ │ └── _projectdata │ │ │ │ └── sessions │ │ │ │ │ └── ALSB-IDE_build_1334171426559 │ │ │ │ │ ├── EndPointMonitoring │ │ │ │ │ ├── AlertDestination.alertdestination.xml │ │ │ │ │ ├── Proxy │ │ │ │ │ │ ├── HelloProxyServiceStart.proxy.xml │ │ │ │ │ │ ├── Helloworld.xsd │ │ │ │ │ │ ├── HelloworldNormal.wsdl │ │ │ │ │ │ └── _folderdata │ │ │ │ │ ├── _projectdata │ │ │ │ │ └── business │ │ │ │ │ │ ├── HelloBusinessService.business.xml │ │ │ │ │ │ ├── Helloworld.xsd │ │ │ │ │ │ ├── HelloworldNormal.wsdl │ │ │ │ │ │ └── _folderdata │ │ │ │ │ ├── ReliableMessageWS │ │ │ │ │ ├── HelloProxyService.proxy.xml │ │ │ │ │ ├── _projectdata │ │ │ │ │ ├── wsdl │ │ │ │ │ │ ├── Helloworld.wsdl │ │ │ │ │ │ └── _folderdata │ │ │ │ │ └── xsd │ │ │ │ │ │ ├── Helloworld.xsd │ │ │ │ │ │ └── _folderdata │ │ │ │ │ ├── Splitjoin │ │ │ │ │ ├── C_Drive.business.xml │ │ │ │ │ ├── OrderSplitJoin.business.xml │ │ │ │ │ ├── OrderSplitJoin.flow │ │ │ │ │ ├── ProxyServiceOrder.proxy.xml │ │ │ │ │ ├── ProxyServiceOrders.proxy.xml │ │ │ │ │ ├── _projectdata │ │ │ │ │ └── resource │ │ │ │ │ │ ├── OrderWS.wsdl │ │ │ │ │ │ ├── OrdersWS.wsdl │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ └── messages.xsd │ │ │ │ │ ├── TextToXml │ │ │ │ │ ├── C_temp.business.xml │ │ │ │ │ ├── Jms.proxy.xml │ │ │ │ │ ├── _projectdata │ │ │ │ │ ├── data │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ ├── personel.xml │ │ │ │ │ │ └── personel_to_xml.xml │ │ │ │ │ ├── mfl │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ └── personel.mfl │ │ │ │ │ ├── wsdl │ │ │ │ │ │ ├── XmlData.wsdl │ │ │ │ │ │ └── _folderdata │ │ │ │ │ ├── xquery │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ └── personel_to_xml.xquery │ │ │ │ │ └── xsd │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ └── personel.xsd │ │ │ │ │ ├── XSDvalidation │ │ │ │ │ ├── _projectdata │ │ │ │ │ ├── file.business.xml │ │ │ │ │ ├── in.proxy.xml │ │ │ │ │ ├── wsdl │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ └── validation.wsdl │ │ │ │ │ └── xsd │ │ │ │ │ │ ├── _folderdata │ │ │ │ │ │ ├── request.xsd │ │ │ │ │ │ └── response.xsd │ │ │ │ │ ├── _binary │ │ │ │ │ ├── SessionData │ │ │ │ │ │ └── singleton │ │ │ │ │ ├── _index_SessionData1 │ │ │ │ │ ├── _index_history_ALSB-IDE_build_13341714265592 │ │ │ │ │ ├── _index_undo_ALSB-IDE_build_13341714265592 │ │ │ │ │ ├── history_ALSB-IDE_build_1334171426559 │ │ │ │ │ │ └── 1334171429555.0 │ │ │ │ │ └── undo_ALSB-IDE_build_1334171426559 │ │ │ │ │ │ └── 1334171429555.0 │ │ │ │ │ └── _index │ │ │ │ │ ├── _index_AlertDestination4 │ │ │ │ │ ├── _index_BusinessService0 │ │ │ │ │ ├── _index_BusinessService2 │ │ │ │ │ ├── _index_BusinessService3 │ │ │ │ │ ├── _index_BusinessService4 │ │ │ │ │ ├── _index_FLOW0 │ │ │ │ │ ├── _index_LocationData0 │ │ │ │ │ ├── _index_LocationData1 │ │ │ │ │ ├── _index_LocationData2 │ │ │ │ │ ├── _index_LocationData3 │ │ │ │ │ ├── _index_LocationData4 │ │ │ │ │ ├── _index_MFL0 │ │ │ │ │ ├── _index_ProxyService0 │ │ │ │ │ ├── _index_ProxyService1 │ │ │ │ │ ├── _index_ProxyService3 │ │ │ │ │ ├── _index_ProxyService4 │ │ │ │ │ ├── _index_WSDL0 │ │ │ │ │ ├── _index_WSDL2 │ │ │ │ │ ├── _index_WSDL3 │ │ │ │ │ ├── _index_WSDL4 │ │ │ │ │ ├── _index_XML1 │ │ │ │ │ ├── _index_XML2 │ │ │ │ │ ├── _index_XMLSchema0 │ │ │ │ │ ├── _index_XMLSchema3 │ │ │ │ │ ├── _index_XMLSchema4 │ │ │ │ │ └── _index_Xquery2 │ │ │ └── sessions.xml │ │ ├── oracle.eclipse.tools.common.services │ │ │ ├── EndPointMonitoring │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ │ ├── OSB Configuration │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ │ ├── ReliableMessageWS │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ │ ├── Splitjoin │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ │ ├── TextToXml │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ │ └── XSDvalidation │ │ │ │ ├── 2.artifact.sjo │ │ │ │ ├── 2.command.sjo │ │ │ │ ├── command.num │ │ │ │ └── project.num │ │ ├── oracle.eclipse.tools.weblogic │ │ │ └── libraries │ │ │ │ └── registry.xml │ │ ├── org.eclipse.core.resources │ │ │ ├── .history │ │ │ │ ├── 3 │ │ │ │ │ └── 40a9abed73ad00111050fb3e22f7de78 │ │ │ │ ├── 4 │ │ │ │ │ └── b0c2cdd0558300111041be929c3f0f87 │ │ │ │ ├── 21 │ │ │ │ │ └── d0ba82d1558300111041be929c3f0f87 │ │ │ │ ├── 25 │ │ │ │ │ └── 406c99d0558300111041be929c3f0f87 │ │ │ │ ├── 31 │ │ │ │ │ └── 90357cc0558300111041be929c3f0f87 │ │ │ │ ├── 37 │ │ │ │ │ └── 701c88c0558300111041be929c3f0f87 │ │ │ │ ├── 54 │ │ │ │ │ └── 10da8ecf558300111041be929c3f0f87 │ │ │ │ ├── 59 │ │ │ │ │ └── c0936bc0558300111041be929c3f0f87 │ │ │ │ ├── 61 │ │ │ │ │ └── 60b991c0558300111041be929c3f0f87 │ │ │ │ ├── 72 │ │ │ │ │ └── 2004f1c9558300111041be929c3f0f87 │ │ │ │ ├── 82 │ │ │ │ │ └── e07500c0558300111041be929c3f0f87 │ │ │ │ ├── 84 │ │ │ │ │ └── 503f58954f0e001210f6b94033a0d6c6 │ │ │ │ ├── 87 │ │ │ │ │ └── e0419dd6538300111041be929c3f0f87 │ │ │ │ ├── 95 │ │ │ │ │ └── b04e70c0558300111041be929c3f0f87 │ │ │ │ ├── 2b │ │ │ │ │ └── d06cddc4558300111041be929c3f0f87 │ │ │ │ ├── 2d │ │ │ │ │ └── 00e71971548300111041be929c3f0f87 │ │ │ │ ├── 3b │ │ │ │ │ └── 12118fd6538300111041be929c3f0f87 │ │ │ │ ├── 9a │ │ │ │ │ └── 1024cad1558300111041be929c3f0f87 │ │ │ │ ├── a5 │ │ │ │ │ └── 10fb33f274ad00111288924b2da0c947 │ │ │ │ ├── a6 │ │ │ │ │ └── 015b91d6538300111041be929c3f0f87 │ │ │ │ ├── aa │ │ │ │ │ └── 80f080c0558300111041be929c3f0f87 │ │ │ │ ├── ad │ │ │ │ │ └── f0f79ad6538300111041be929c3f0f87 │ │ │ │ ├── be │ │ │ │ │ └── 10297a35568300111041be929c3f0f87 │ │ │ │ ├── ca │ │ │ │ │ └── 10118fd6538300111041be929c3f0f87 │ │ │ │ ├── d2 │ │ │ │ │ └── 00eb0cf1558300111041be929c3f0f87 │ │ │ │ ├── d6 │ │ │ │ │ └── 11118fd6538300111041be929c3f0f87 │ │ │ │ ├── e4 │ │ │ │ │ └── 10a08cd6538300111041be929c3f0f87 │ │ │ │ └── fc │ │ │ │ │ └── 005b91d6538300111041be929c3f0f87 │ │ │ ├── .projects │ │ │ │ ├── EndPointMonitoring │ │ │ │ │ ├── .indexes │ │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers.snap │ │ │ │ │ ├── .syncinfo.snap │ │ │ │ │ └── 1.tree │ │ │ │ ├── OSB Configuration │ │ │ │ │ ├── .indexes │ │ │ │ │ │ └── af │ │ │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers.snap │ │ │ │ │ └── .syncinfo.snap │ │ │ │ ├── ReliableMessageWS │ │ │ │ │ ├── .indexes │ │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers.snap │ │ │ │ │ └── .syncinfo.snap │ │ │ │ ├── Splitjoin │ │ │ │ │ ├── .indexes │ │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers.snap │ │ │ │ │ ├── .syncinfo.snap │ │ │ │ │ └── 1.tree │ │ │ │ ├── TextToXml │ │ │ │ │ ├── .indexes │ │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers │ │ │ │ │ ├── .markers.snap │ │ │ │ │ ├── .syncinfo.snap │ │ │ │ │ └── 1.tree │ │ │ │ └── XSDvalidation │ │ │ │ │ ├── .indexes │ │ │ │ │ └── history.index │ │ │ │ │ ├── .markers.snap │ │ │ │ │ └── .syncinfo.snap │ │ │ ├── .root │ │ │ │ ├── .indexes │ │ │ │ │ ├── history.version │ │ │ │ │ ├── properties.index │ │ │ │ │ └── properties.version │ │ │ │ ├── .markers.snap │ │ │ │ └── 2.tree │ │ │ ├── .safetable │ │ │ │ ├── oracle.eclipse.tools.common.services.2 │ │ │ │ └── org.eclipse.core.resources │ │ │ └── .snap │ │ ├── org.eclipse.core.runtime │ │ │ └── .settings │ │ │ │ ├── oracle.eclipse.tools.webtier.ui.prefs │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ │ ├── org.eclipse.debug.ui.prefs │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ ├── org.eclipse.jdt.launching.prefs │ │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ │ ├── org.eclipse.jst.j2ee.webservice.ui.prefs │ │ │ │ ├── org.eclipse.jst.jsp.core.prefs │ │ │ │ ├── org.eclipse.mylyn.context.core.prefs │ │ │ │ ├── org.eclipse.mylyn.java.ui.prefs │ │ │ │ ├── org.eclipse.mylyn.monitor.ui.prefs │ │ │ │ ├── org.eclipse.team.cvs.ui.prefs │ │ │ │ ├── org.eclipse.team.ui.prefs │ │ │ │ ├── org.eclipse.ui.ide.prefs │ │ │ │ ├── org.eclipse.ui.prefs │ │ │ │ ├── org.eclipse.ui.workbench.prefs │ │ │ │ ├── org.eclipse.wst.jsdt.ui.prefs │ │ │ │ ├── org.eclipse.wst.server.core.prefs │ │ │ │ ├── org.eclipse.wst.sse.core.prefs │ │ │ │ ├── org.eclipse.wst.ws.service.policy.prefs │ │ │ │ └── org.python.pydev.prefs │ │ ├── org.eclipse.debug.core │ │ │ └── .launches │ │ │ │ ├── Format Builder.launch │ │ │ │ └── Oracle WebLogic Server 11gR1 (10.3.6) at localhost [osb].launch │ │ ├── org.eclipse.debug.ui │ │ │ └── launchConfigurationHistory.xml │ │ ├── org.eclipse.jdt.core │ │ │ ├── invalidArchivesCache │ │ │ ├── nonChainingJarsCache │ │ │ └── variablesAndContainers.dat │ │ ├── org.eclipse.jdt.launching │ │ │ ├── .install.xml │ │ │ └── libraryInfos.xml │ │ ├── org.eclipse.jdt.ui │ │ │ ├── OpenTypeHistory.xml │ │ │ ├── QualifiedTypeNameHistory.xml │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.jst.j2ee.ui │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ltk.core.refactoring │ │ │ └── .refactorings │ │ │ │ └── .workspace │ │ │ │ └── 2012 │ │ │ │ └── 4 │ │ │ │ └── 15 │ │ │ │ ├── refactorings.history │ │ │ │ └── refactorings.index │ │ ├── org.eclipse.ltk.ui.refactoring │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.pde.core │ │ │ └── .cache │ │ │ │ └── clean-cache.properties │ │ ├── org.eclipse.team.cvs.core │ │ │ └── .running │ │ ├── org.eclipse.ui.ide │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ui.intro │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ui.workbench │ │ │ ├── dialog_settings.xml │ │ │ ├── workbench.xml │ │ │ └── workingsets.xml │ │ ├── org.eclipse.wst.jsdt.core │ │ │ ├── externalLibsTimeStamps │ │ │ ├── libraries │ │ │ │ ├── baseBrowserLibrary.js │ │ │ │ ├── browserWindow.js │ │ │ │ ├── dom5.js │ │ │ │ ├── system.js │ │ │ │ └── xhr.js │ │ │ └── variablesAndContainers.dat │ │ ├── org.eclipse.wst.jsdt.ui │ │ │ ├── OpenTypeHistory.xml │ │ │ └── QualifiedTypeNameHistory.xml │ │ ├── org.eclipse.wst.server.core │ │ │ ├── monitors.xml │ │ │ ├── publish.xml │ │ │ ├── publish │ │ │ │ └── publish0.dat │ │ │ ├── servers.xml │ │ │ ├── tmp-data.xml │ │ │ └── tmp0 │ │ │ │ └── osb │ │ │ │ └── _auto_generated_ear_ │ │ │ │ └── META-INF │ │ │ │ └── application.xml │ │ └── org.python.pydev │ │ │ └── ping.log │ └── version.ini │ ├── OSB Configuration │ ├── .project │ └── .settings │ │ ├── com.bea.alsb.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── ReliableMessageWS │ ├── .project │ ├── .settings │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── HelloProxyService.proxy │ ├── pom.xml │ ├── wsdl │ │ └── Helloworld.wsdl │ └── xsd │ │ └── Helloworld.xsd │ ├── XSDvalidation │ ├── .project │ ├── .settings │ │ ├── oracle.eclipse.tools.common.services │ │ │ ├── 16.artifact.sjo │ │ │ ├── 33.artifact.sjo │ │ │ └── project.num │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── file.biz │ ├── in.proxy │ ├── pom.xml │ ├── wsdl │ │ └── validation.wsdl │ └── xsd │ │ ├── request.xsd │ │ └── response.xsd │ └── pom.xml ├── maven_osb_ps6 ├── README.md ├── export.py ├── export │ └── pom.xml ├── import.py ├── osb.sh ├── parent │ ├── project │ │ └── pom.xml │ └── workspace │ │ └── pom.xml ├── plans │ └── all_plan.xml ├── pom.xml └── source │ ├── OSB Configuration │ ├── .project │ └── .settings │ │ ├── com.bea.alsb.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── ReliableMessageWS │ ├── .project │ ├── .settings │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── HelloProxyService.proxy │ ├── pom.xml │ ├── wsdl │ │ └── Helloworld.wsdl │ └── xsd │ │ └── Helloworld.xsd │ ├── XSDvalidation │ ├── .project │ ├── .settings │ │ ├── oracle.eclipse.tools.common.services │ │ │ ├── 16.artifact.sjo │ │ │ ├── 33.artifact.sjo │ │ │ └── project.num │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── file.biz │ ├── in.proxy │ ├── pom.xml │ ├── wsdl │ │ └── validation.wsdl │ └── xsd │ │ ├── request.xsd │ │ └── response.xsd │ └── pom.xml ├── maven_osb_ps6_tool ├── README.md ├── export.py ├── export │ ├── pom.xml │ ├── sbconfig-rel.jar │ └── sbconfig-xsd.jar ├── import.py ├── osb.sh ├── osb_configtool.sh ├── osb_export_projects.xml ├── osb_export_sep.xml ├── parent │ └── pom.xml ├── plans │ └── all_plan.xml ├── pom.xml └── source │ ├── OSB Configuration │ ├── .project │ ├── .settings │ │ ├── com.bea.alsb.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ └── JNDIProviderLocal.jndi │ ├── ReliableMessageWS │ ├── .project │ ├── .settings │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── HelloProxyService.proxy │ ├── osb.xml │ ├── pom.xml │ ├── wsdl │ │ └── Helloworld.wsdl │ └── xsd │ │ └── Helloworld.xsd │ ├── XSDvalidation │ ├── .project │ ├── .settings │ │ ├── oracle.eclipse.tools.common.services │ │ │ ├── 16.artifact.sjo │ │ │ ├── 33.artifact.sjo │ │ │ └── project.num │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── file.biz │ ├── in.proxy │ ├── osb.xml │ ├── pom.xml │ ├── wsdl │ │ └── validation.wsdl │ └── xsd │ │ ├── request.xsd │ │ └── response.xsd │ ├── osb.xml │ └── pom.xml ├── maven_sb_1213_ServiceApplication ├── .adf │ └── META-INF │ │ └── adf-config.xml ├── HelloService │ ├── AlertDestination.alert │ ├── HelloService.jpr │ ├── MessageHandling.pipeline │ ├── MessageService.proxy │ ├── pom.xml │ ├── servicebus.sboverview │ ├── wsdl │ │ └── Helloworld.wsdl │ └── xsd │ │ └── Helloworld.xsd ├── ServiceApplication.jws ├── System │ ├── JNDIProvider.jndi │ ├── SMTPServer.smtp │ ├── System.jpr │ ├── pom.xml │ └── servicebus.sboverview ├── pom.xml └── src │ └── main │ └── resources │ └── META-INF │ └── jps-config.xml ├── maven_soa_suite_1213_MyServiceApp ├── .adf │ └── META-INF │ │ └── adf-config.xml ├── .gitignore ├── MyServiceApp.jws ├── myservice │ ├── SOA │ │ ├── BPEL │ │ │ ├── .designer │ │ │ │ └── EchoProcess_graphics.xml │ │ │ └── EchoProcess.bpel │ │ ├── Schemas │ │ │ └── EchoProcess.xsd │ │ ├── WSDLs │ │ │ └── EchoProcess.wsdl │ │ ├── composite.xml │ │ ├── measurements.xml │ │ └── testsuites │ │ │ ├── fileList.xml │ │ │ └── test_suite1 │ │ │ ├── componenttests │ │ │ └── fileList.xml │ │ │ ├── includes │ │ │ └── fileList.xml │ │ │ ├── messages │ │ │ └── fileList.xml │ │ │ └── tests │ │ │ ├── fileList.xml │ │ │ └── test1.xml │ ├── jndi.properties │ ├── myservice.jpr │ └── pom.xml ├── pom.xml ├── scripts │ ├── build-release.sh │ ├── get-maven-release-version.rb │ └── publish-release.sh └── src │ └── META-INF │ └── jps-config.xml ├── maven_soa_suite_ps5 ├── MetaDataServices │ ├── MetaDataServices.jws │ ├── mds │ │ ├── mds.jpr │ │ └── seed │ │ │ └── apps │ │ │ └── tennet │ │ │ ├── wsdl │ │ │ └── Helloworld.wsdl │ │ │ └── xsd │ │ │ └── Helloworld.xsd │ └── pom.xml ├── README.md ├── parent │ └── soa │ │ ├── project │ │ └── pom.xml │ │ └── project_mds │ │ └── pom.xml ├── pom.xml ├── soa.sh └── source2 │ ├── .adf │ └── META-INF │ │ └── adf-config.xml │ ├── bpel1 │ ├── .designer │ │ └── BPELProcess1_graphics.xml │ ├── BPELProcess1.bpel │ ├── BPELProcess1.componentType │ ├── BPELProcess1.wsdl │ ├── bpel1.jpr │ ├── composite.xml │ ├── plans │ │ ├── bpel1_cfgplan_o4.xml │ │ └── bpel1_cfgplan_t4.xml │ ├── pom.xml │ ├── testsuites │ │ └── fileList.xml │ └── xsd │ │ └── BPELProcess1.xsd │ ├── bpel2 │ ├── .designer │ │ ├── BPELProcess2_graphics.xml │ │ └── BPELProcessMDS_graphics.xml │ ├── BPELProcess2.bpel │ ├── BPELProcess2.componentType │ ├── BPELProcess2.wsdl │ ├── BPELProcessMDS.bpel │ ├── BPELProcessMDS.componentType │ ├── HelloworldWrapper.wsdl │ ├── bpel2.jpr │ ├── composite.xml │ ├── plans │ │ ├── bpel2_cfgplan_o4.xml │ │ └── bpel2_cfgplan_t4.xml │ ├── pom.xml │ ├── testsuites │ │ └── fileList.xml │ └── xsd │ │ └── BPELProcess2.xsd │ ├── source2.jws │ └── src │ └── META-INF │ └── jps-config.xml └── maven_soa_suite_ps6 ├── MetaDataServices ├── MetaDataServices.jws ├── mds │ ├── mds.jpr │ └── seed │ │ └── apps │ │ └── tennet │ │ ├── wsdl │ │ └── Helloworld.wsdl │ │ └── xsd │ │ └── Helloworld.xsd └── pom.xml ├── README.md ├── parent └── soa │ ├── project │ └── pom.xml │ └── project_mds │ └── pom.xml ├── pom.xml └── source2 ├── .adf └── META-INF │ └── adf-config.xml ├── bpel1 ├── .designer │ └── BPELProcess1_graphics.xml ├── BPELProcess1.bpel ├── BPELProcess1.componentType ├── BPELProcess1.wsdl ├── SCA-INF\classes │ └── .data │ │ └── 00000000 │ │ ├── 00000000.jdb │ │ └── je.lck ├── bpel1.jpr ├── composite.xml ├── plans │ ├── bpel1_cfgplan_o4.xml │ └── bpel1_cfgplan_t4.xml ├── pom.xml ├── testsuites │ └── fileList.xml └── xsd │ └── BPELProcess1.xsd ├── bpel2 ├── .designer │ ├── BPELProcess2_graphics.xml │ └── BPELProcessMDS_graphics.xml ├── BPELProcess2.bpel ├── BPELProcess2.componentType ├── BPELProcess2.wsdl ├── BPELProcessMDS.bpel ├── BPELProcessMDS.componentType ├── HelloworldWrapper.wsdl ├── SCA-INF\classes │ └── .data │ │ └── 00000000 │ │ ├── 00000000.jdb │ │ └── je.lck ├── bpel2.jpr ├── composite.xml ├── plans │ ├── bpel2_cfgplan_o4.xml │ └── bpel2_cfgplan_t4.xml ├── pom.xml ├── testsuites │ └── fileList.xml └── xsd │ └── BPELProcess2.xsd ├── source2.jws └── src └── META-INF └── jps-config.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .svn 2 | .DS_Store 3 | deploy/ 4 | classes/ 5 | target/ 6 | configfwkdebug.xml 7 | alsbdebug.xml 8 | .metadata/ 9 | osb.*.jar 10 | security/ 11 | maven_osb_ps6_tool/export/sbconfig-resources.jar 12 | 13 | maven_osb_ps6_tool/export/sbconfig-resources.jar 14 | -------------------------------------------------------------------------------- /ant/build.num: -------------------------------------------------------------------------------- 1 | #Build Number for ANT. Do not edit! 2 | #Fri Jul 08 20:07:00 CEST 2011 3 | build.number=32 4 | -------------------------------------------------------------------------------- /ant/deployAll.bat: -------------------------------------------------------------------------------- 1 | 2 | set ORACLE_HOME=C:\oracle\MiddlewareJdev11gR1PS3 3 | set JAVA_HOME=%ORACLE_HOME%\jdk1.6.0_23 4 | rem set ORACLE_HOME=D:\Oracle\MiddlewareJDevPS5 5 | rem set JAVA_HOME=%ORACLE_HOME%\jdk160_24 6 | 7 | set ANT_HOME=%ORACLE_HOME%\jdeveloper\ant 8 | set PATH=%ANT_HOME%\bin;%PATH% 9 | 10 | set CURRENT_FOLDER=%CD% 11 | 12 | ant -f build.xml deployAll 13 | -------------------------------------------------------------------------------- /ant/dev.jndi.properties: -------------------------------------------------------------------------------- 1 | java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory 2 | java.naming.provider.url=t3://localhost:7001/soa-infra 3 | java.naming.security.principal=weblogic 4 | java.naming.security.credentials=weblogic1 5 | dedicated.connection=true 6 | dedicated.rmicontext=true 7 | -------------------------------------------------------------------------------- /ant/lib/ant-contrib-1.0b3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant/lib/ant-contrib-1.0b3.jar -------------------------------------------------------------------------------- /ant/mds/seed/apps/common/a.xml: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /ant/mds/seed/apps/company/a.xml: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /ant/workspaces/wrkspc1/build.properties: -------------------------------------------------------------------------------- 1 | projects=composite1,composite2 2 | 3 | composite1.revision=1.0 4 | composite1.enabled=true 5 | composite1.partition=default 6 | 7 | composite2.revision=1.0 8 | composite2.enabled=true 9 | composite2.partition=default -------------------------------------------------------------------------------- /ant/workspaces/wrkspc2/build.properties: -------------------------------------------------------------------------------- 1 | projects=composite3 2 | 3 | composite3.revision=1.0 4 | composite3.enabled=true 5 | composite3.partition=default 6 | -------------------------------------------------------------------------------- /ant_mds/deployAll.bat: -------------------------------------------------------------------------------- 1 | 2 | set ORACLE_HOME=C:\oracle\MiddlewareJdev11gR1PS2 3 | set ANT_HOME=%ORACLE_HOME%\jdeveloper\ant 4 | set PATH=%ANT_HOME%\bin;%PATH% 5 | set JAVA_HOME=%ORACLE_HOME%\jdk160_18 6 | 7 | set CURRENT_FOLDER=%CD% 8 | 9 | ant -f build.xml deployMDS 10 | -------------------------------------------------------------------------------- /ant_osb_ps5/export/Rel_XSD.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/export/Rel_XSD.jar -------------------------------------------------------------------------------- /ant_osb_ps5/export/XSD.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/export/XSD.jar -------------------------------------------------------------------------------- /ant_osb_ps5/osb.bat: -------------------------------------------------------------------------------- 1 | set FMW_HOME=C:\oracle\MiddlewarePS5 2 | set ANT_HOME=%FMW_HOME%\modules\org.apache.ant_1.7.1 3 | set PATH=%ANT_HOME%\bin;%PATH% 4 | set JAVA_HOME=%FMW_HOME%\jdk160_29 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/osb.sh: -------------------------------------------------------------------------------- 1 | export FMW_HOME=/opt/oracle/wls/wls11g 2 | export ANT_HOME=/opt/apache/apache-ant-1.8.4 3 | export PATH=$ANT_HOME/bin:$PATH 4 | export JAVA_HOME=/usr/java/jdk1.7.0_07 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.lock -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.mylyn/repositories.xml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.mylyn/repositories.xml.zip -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/JNDI Providers/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | This folder contains JNDI Provider configuration 4 | true 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/Operator Settings/GlobalOperationalSettings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | true 5 | true 6 | true 7 | true 8 | true 9 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/Operator Settings/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | This folder contains Operations configuration 4 | true 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/Proxy Servers/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | This folder contains Proxy Server configuration 4 | true 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/SMTP Servers/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | This folder contains SMTP Server configuration 4 | true 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/UDDI/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | This folder contains UDDI Registry resources 4 | true 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | The System project 4 | true 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_history_null3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_history_null3 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_history_null4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_history_null4 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_system_data0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_system_data0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_system_data1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_system_data1 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/history_null/1334093155515.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/history_null/1334093155515.0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/history_null/1338725570103.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/history_null/1338725570103.0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/system_data/initialization_record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/system_data/initialization_record -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/system_data/ootb_refs_created: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/system_data/ootb_refs_created -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData1 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData2 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData3 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_Operations0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_Operations0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_static/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | _static_ 4 | true 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/default/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/EndPointMonitoring/Proxy/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/EndPointMonitoring/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/EndPointMonitoring/business/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/ReliableMessageWS/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/ReliableMessageWS/wsdl/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/ReliableMessageWS/xsd/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/Splitjoin/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/Splitjoin/resource/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/data/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/mfl/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/wsdl/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/xquery/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/xsd/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/XSDvalidation/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/XSDvalidation/wsdl/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/XSDvalidation/xsd/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/SessionData/singleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/SessionData/singleton -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_SessionData1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_SessionData1 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_history_ALSB-IDE_build_13341714265592: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_history_ALSB-IDE_build_13341714265592 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_undo_ALSB-IDE_build_13341714265592: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_undo_ALSB-IDE_build_13341714265592 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/history_ALSB-IDE_build_1334171426559/1334171429555.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/history_ALSB-IDE_build_1334171426559/1334171429555.0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/undo_ALSB-IDE_build_1334171426559/1334171429555.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/undo_ALSB-IDE_build_1334171426559/1334171429555.0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_AlertDestination4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_AlertDestination4 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService2 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService3 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService4 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_FLOW0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_FLOW0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData1 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData2 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData3 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData4 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_MFL0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_MFL0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService1 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService3 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService4 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL2 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL3 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL4 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XML1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XML1 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XML2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XML2 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema3 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema4 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_Xquery2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_Xquery2 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/ReliableMessageWS/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/ReliableMessageWS/wsdl/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/ReliableMessageWS/xsd/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/XSDvalidation/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/XSDvalidation/wsdl/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/XSDvalidation/xsd/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/SessionData/singleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/SessionData/singleton -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/_index_SessionData1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/_index_SessionData1 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/_index_history_ALSB-IDE_build_13494742067012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/_index_history_ALSB-IDE_build_13494742067012 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/_index_undo_ALSB-IDE_build_13494742067010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/_index_undo_ALSB-IDE_build_13494742067010 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/history_ALSB-IDE_build_1349474206701/1349474208747.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/history_ALSB-IDE_build_1349474206701/1349474208747.0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/undo_ALSB-IDE_build_1349474206701/1349474208747.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_binary/undo_ALSB-IDE_build_1349474206701/1349474208747.0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_BusinessService2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_BusinessService2 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_LocationData0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_LocationData0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_LocationData2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_LocationData2 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_LocationData3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_LocationData3 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_LocationData4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_LocationData4 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_ProxyService3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_ProxyService3 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_ProxyService4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_ProxyService4 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_WSDL0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_WSDL0 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_WSDL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_WSDL3 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_XMLSchema3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_XMLSchema3 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_XMLSchema4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1349474206701/_index/_index_XMLSchema4 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sessions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ALSB-IDE_build_1349474206701 5 | 6 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/2.artifact.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/2.command.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/command.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/project.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/2.artifact.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/2.command.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/command.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/project.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/2.artifact.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/2.command.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/command.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/project.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/2.artifact.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/2.command.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/command.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/project.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/2.artifact.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/2.command.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/command.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/project.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/2.artifact.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/2.command.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/command.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/project.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/25/406c99d0558300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:40:37 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY=Oracle WebLogic Server 11gR1 (10.3.6) at localhost [osb] 9 | container.referenced.projects=ReliableMessage|EJB|EndPointMonitoring| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/2b/d06cddc4558300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:30:49 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY=Oracle WebLogic Server 11gR1 (10.3.6) at localhost [osb] 9 | eclipse.preferences.version=1 10 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/2d/00e71971548300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY= 9 | eclipse.preferences.version=1 10 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/3b/12118fd6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | PUBLISH_SESSION_NAME_PROPERTY= 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/54/10da8ecf558300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:40:28 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY=Oracle WebLogic Server 11gR1 (10.3.6) at localhost [osb] 9 | container.referenced.projects=EJB|EndPointMonitoring| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/72/2004f1c9558300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:40:19 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY=Oracle WebLogic Server 11gR1 (10.3.6) at localhost [osb] 9 | container.referenced.projects=EJB| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/84/503f58954f0e001210f6b94033a0d6c6: -------------------------------------------------------------------------------- 1 | #Sun Jun 03 14:09:18 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY=Oracle WebLogic Server 11gR1 (10.3.6) at localhost [osb] 9 | container.referenced.projects=XSDvalidation|ReliableMessageWS| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/87/e0419dd6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY= 8 | SERVER_PROPERTY= 9 | eclipse.preferences.version=1 10 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/a5/10fb33f274ad00111288924b2da0c947: -------------------------------------------------------------------------------- 1 | #Sun Jun 03 14:02:01 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY= 9 | container.referenced.projects=TextToXml|XSDvalidation|EndPointMonitoring|ReliableMessageWS|Splitjoin| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/a6/015b91d6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY= 8 | eclipse.preferences.version=1 9 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/ad/f0f79ad6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY= 8 | SERVER_PROPERTY= 9 | eclipse.preferences.version=1 10 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/ca/10118fd6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | DISCARD_SESSION_PROPERTY=true 4 | eclipse.preferences.version=1 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/d6/11118fd6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | DISCARD_SESSION_PROPERTY=true 4 | PUBLISH_SESSION_NAME_PROPERTY= 5 | eclipse.preferences.version=1 6 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/e4/10a08cd6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | DISCARD_SESSION_PROPERTY=true 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/fc/005b91d6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | PUBLISH_SESSION_NAME_PROPERTY= 7 | eclipse.preferences.version=1 8 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.indexes/history.index -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.markers.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.syncinfo.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/1.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/1.tree -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.indexes/af/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.indexes/af/history.index -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.markers.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.syncinfo.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.indexes/history.index -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.markers.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.syncinfo.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.indexes/history.index -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.markers.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.syncinfo.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/1.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/1.tree -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.indexes/history.index -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.markers -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.markers.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.syncinfo.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/1.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/1.tree -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.indexes/history.index -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.markers.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.syncinfo.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index: -------------------------------------------------------------------------------- 1 | /org.eclipse.core.resourcescontentCacheState3contentCacheTimestamp 1349294760753org.eclipse.jdt.corestateVersionNumber25org.eclipse.wst.jsdt.corestateVersionNumber21 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.safetable/oracle.eclipse.tools.common.services.2: -------------------------------------------------------------------------------- 1 | #safe table 2 | #Wed Apr 11 21:18:18 CEST 2012 3 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.snap -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/oracle.eclipse.tools.webtier.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:01 CEST 2012 2 | madeWPEDefaultEditor=true 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:31 CEST 2012 2 | version=1 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:25:59 CEST 2012 2 | content-types/com.bea.alsb.core.resources.custom.content-type/file-extensions=mqc 3 | eclipse.preferences.version=1 4 | content-types/org.eclipse.jst.jsp.core.jspfragmentsource/file-extensions=jsff 5 | content-types/com.bea.alsb.core.resources.xquery.content-type/file-extensions=xquery 6 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs: -------------------------------------------------------------------------------- 1 | #Sun Jun 03 14:07:02 CEST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=\r\n\r\n 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:29 CEST 2012 2 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 4 | eclipse.preferences.version=1 5 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.6 8 | org.eclipse.jdt.core.compiler.compliance=1.6 9 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jst.j2ee.webservice.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:25:56 CEST 2012 2 | areThereWebServices=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jst.jsp.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | org.eclipse.jst.jsp.core.taglib.TaglibIndex=CLEAN 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:25:49 CEST 2012 2 | eclipse.preferences.version=1 3 | mylyn.attention.migrated=true 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.java.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.mylyn.java.ui.run.count.3_1_0=1 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:25:49 CEST 2012 2 | org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.cvs.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | pref_first_startup=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.team.ui.first_time=false 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs: -------------------------------------------------------------------------------- 1 | #Wed Apr 11 21:18:19 CEST 2012 2 | eclipse.preferences.version=1 3 | TASKS_FILTERS_MIGRATE=true 4 | tipsAndTricks=true 5 | platformState=1334095845469 6 | quickStart=false 7 | PROBLEMS_FILTERS_MIGRATE=true 8 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | eclipse.preferences.version=1 3 | showIntro=false 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.server.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:36:06 CEST 2012 2 | module-start-timeout=300000 3 | runtimes=\r\n\r\n \r\n\r\n 4 | eclipse.preferences.version=1 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.sse.core.prefs: -------------------------------------------------------------------------------- 1 | #Sun Jun 03 14:02:05 CEST 2012 2 | task-tag-projects-already-scanned=EndPointMonitoring,OSB Configuration,ReliableMessageWS,Splitjoin,TextToXml,XSDvalidation 3 | eclipse.preferences.version=1 4 | modelmanager.maxWaitDuringConcurrentLoad=30000 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.ws.service.policy.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:38:12 CEST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsissbp.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/ 4 | org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsiap.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/ 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.python.pydev.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | com.aptana.db.ide-idUUID=47d583bf-743a-4079-849d-b7006d9f6ad5 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.core/invalidArchivesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- 1 |  ECLIPSE_HOMEJRE_SRC 2 | JUNIT_HOME JRE_SRCROOTJRE_LIBJUNIT_SRC_HOME -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.launching/.install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.jst.j2ee.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 |
7 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/.workspace/2012/4/15/refactorings.index: -------------------------------------------------------------------------------- 1 | 1334094093651 Delete resource 'EJB' 2 | 1334094208498 Delete resource 'ReliableMessage' 3 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.ltk.ui.refactoring/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 |
7 |
8 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties: -------------------------------------------------------------------------------- 1 | #Cached timestamps 2 | #Thu Oct 04 20:16:13 CEST 2012 3 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.team.cvs.core/.running: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.team.cvs.core/.running -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 |
7 |
8 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.ui.intro/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 | 7 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.jsdt.core/externalLibsTimeStamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.jsdt.core/externalLibsTimeStamps -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.jsdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.jsdt.ui/OpenTypeHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.jsdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.server.core/monitors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.server.core/publish.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.server.core/publish/publish0.dat: -------------------------------------------------------------------------------- 1 | 8com.bea.alsb.core.internal.deployables:OSB ConfigurationOSB Configurationbea.alsb.container.module1.0.100 -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.server.core/tmp-data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/osb/_auto_generated_ear_/META-INF/application.xml: -------------------------------------------------------------------------------- 1 | 2 | _auto_generated_ear_ 3 | 4 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/.plugins/org.python.pydev/ping.log: -------------------------------------------------------------------------------- 1 | plugin.started%5B%5D=1334093159149%3APydev_2.2.3.2011100616 2 | plugin.started%5B%5D=1334171303109%3APydev_2.2.3.2011100616 3 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/.metadata/version.ini: -------------------------------------------------------------------------------- 1 | org.eclipse.core.runtime=1 -------------------------------------------------------------------------------- /ant_osb_ps5/source/OSB Configuration/.settings/com.bea.alsb.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Oct 04 20:16:14 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY= 9 | container.referenced.projects=XSDvalidation|ReliableMessageWS| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/OSB Configuration/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/OSB Configuration/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/OSB Configuration/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | DELEGATES_PREFERENCE=delegateValidatorList 3 | USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 4 | USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 5 | USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.302.v201107140600 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/ReliableMessageWS/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/ReliableMessageWS/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/ReliableMessageWS/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | #Sat Jun 04 20:37:39 CEST 2011 2 | DELEGATES_PREFERENCE=delegateValidatorList 3 | USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 4 | USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 5 | USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.201.v201101270100 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/ReliableMessageWS/xsd/Helloworld.xsd: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/16.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/16.artifact.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/33.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/33.artifact.sjo -------------------------------------------------------------------------------- /ant_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/project.num -------------------------------------------------------------------------------- /ant_osb_ps5/source/XSDvalidation/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ant_osb_ps5/source/XSDvalidation/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ant_osb_ps6/export/Rel_XSD.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps6/export/Rel_XSD.jar -------------------------------------------------------------------------------- /ant_osb_ps6/export/XSD.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps6/export/XSD.jar -------------------------------------------------------------------------------- /ant_osb_ps6/osb.bat: -------------------------------------------------------------------------------- 1 | set FMW_HOME=C:\oracle\MiddlewarePS5 2 | set ANT_HOME=%FMW_HOME%\modules\org.apache.ant_1.7.1 3 | set PATH=%ANT_HOME%\bin;%PATH% 4 | set JAVA_HOME=%FMW_HOME%\jdk160_29 5 | -------------------------------------------------------------------------------- /ant_osb_ps6/osb.sh: -------------------------------------------------------------------------------- 1 | export FMW_HOME=/opt/wls/Middleware11gR1 2 | export ANT_HOME=/opt/apache/apache-ant-1.8.4 3 | export PATH=$ANT_HOME/bin:$PATH 4 | export JAVA_HOME=/usr/java/jdk1.7.0_09 5 | -------------------------------------------------------------------------------- /ant_osb_ps6/source/OSB Configuration/.settings/com.bea.alsb.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Oct 04 20:16:14 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY= 9 | container.referenced.projects=XSDvalidation|ReliableMessageWS| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /ant_osb_ps6/source/OSB Configuration/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ant_osb_ps6/source/OSB Configuration/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ant_osb_ps6/source/OSB Configuration/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | DELEGATES_PREFERENCE=delegateValidatorList 3 | USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 4 | USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 5 | USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.302.v201107140600 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /ant_osb_ps6/source/ReliableMessageWS/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ant_osb_ps6/source/ReliableMessageWS/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ant_osb_ps6/source/ReliableMessageWS/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | #Sat Jun 04 20:37:39 CEST 2011 2 | DELEGATES_PREFERENCE=delegateValidatorList 3 | USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 4 | USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 5 | USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.201.v201101270100 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /ant_osb_ps6/source/ReliableMessageWS/xsd/Helloworld.xsd: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ant_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/16.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/16.artifact.sjo -------------------------------------------------------------------------------- /ant_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/33.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/33.artifact.sjo -------------------------------------------------------------------------------- /ant_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/project.num -------------------------------------------------------------------------------- /ant_osb_ps6/source/XSDvalidation/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ant_osb_ps6/source/XSDvalidation/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ant_resourceAdapter/lib/ant-contrib-1.0b3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_resourceAdapter/lib/ant-contrib-1.0b3.jar -------------------------------------------------------------------------------- /ant_resourceAdapter/start.bat: -------------------------------------------------------------------------------- 1 | set ORACLE_HOME=C:\oracle\MiddlewarePS5 2 | set JAVA_HOME=C:\oracle\jrockit-jdk1.6.0_29-R28.2.2-4.1.0 3 | set ANT_HOME=%ORACLE_HOME%\modules\org.apache.ant_1.7.1 4 | set PATH=%ANT_HOME%\bin;%PATH% 5 | 6 | ant -f build.xml createResourceAdapterEntries -------------------------------------------------------------------------------- /ant_wls/lib/ant-contrib-1.0b3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/ant_wls/lib/ant-contrib-1.0b3.jar -------------------------------------------------------------------------------- /ant_wls/start.bat: -------------------------------------------------------------------------------- 1 | set ORACLE_HOME=C:\oracle\JDev11114PS 2 | set JAVA_HOME=C:\oracle\jrockit-jdk1.6.0_26-R28 3 | set ANT_HOME=%ORACLE_HOME%\jdeveloper\ant 4 | set ANT_OPTS=%ANT_OPTS% -XX:MaxPermSize=128m 5 | set CLASSPATH=%CLASSPATH%;%ORACLE_HOME%\wlserver_10.3\server\lib\weblogic.jar 6 | 7 | set CURRENT_FOLDER=%CD% 8 | 9 | set PATH=%ANT_HOME%\bin;%PATH% 10 | ant -f build.xml help 11 | -------------------------------------------------------------------------------- /maven_osb_ps5/osb.sh: -------------------------------------------------------------------------------- 1 | M2_HOME=/opt/apache/apache-maven-3.0.4 2 | M2=/opt/apache/apache-maven-3.0.4/bin 3 | 4 | MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=256m" 5 | 6 | JAVA_HOME=/usr/java/jdk1.7.0_09 7 | PATH=/usr/java/jdk1.7.0_09/bin:/opt/apache/apache-maven-3.0.4/bin:$PATH 8 | 9 | export M2_HOME M2 JAVA_HOME PATH MAVEN_OPTS 10 | 11 | 12 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.lock -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.mylyn/repositories.xml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.mylyn/repositories.xml.zip -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/JNDI Providers/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | This folder contains JNDI Provider configuration 4 | true 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/Operator Settings/GlobalOperationalSettings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | true 5 | true 6 | true 7 | true 8 | true 9 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/Operator Settings/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | This folder contains Operations configuration 4 | true 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/Proxy Servers/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | This folder contains Proxy Server configuration 4 | true 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/SMTP Servers/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | This folder contains SMTP Server configuration 4 | true 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/UDDI/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | This folder contains UDDI Registry resources 4 | true 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/System/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | The System project 4 | true 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_history_null3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_history_null3 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_history_null4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_history_null4 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_system_data0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_system_data0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_system_data1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/_index_system_data1 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/history_null/1334093155515.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/history_null/1334093155515.0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/history_null/1338725570103.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/history_null/1338725570103.0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/system_data/initialization_record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/system_data/initialization_record -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/system_data/ootb_refs_created: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_binary/system_data/ootb_refs_created -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData1 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData2 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_LocationData3 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_Operations0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_index/_index_Operations0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/_static/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | _static_ 4 | true 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/core/default/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/EndPointMonitoring/Proxy/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/EndPointMonitoring/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/EndPointMonitoring/business/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/ReliableMessageWS/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/ReliableMessageWS/wsdl/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/ReliableMessageWS/xsd/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/Splitjoin/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/Splitjoin/resource/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/data/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/mfl/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/wsdl/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/xquery/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/TextToXml/xsd/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/XSDvalidation/_projectdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/XSDvalidation/wsdl/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/XSDvalidation/xsd/_folderdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/SessionData/singleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/SessionData/singleton -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_SessionData1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_SessionData1 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_history_ALSB-IDE_build_13341714265592: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_history_ALSB-IDE_build_13341714265592 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_undo_ALSB-IDE_build_13341714265592: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/_index_undo_ALSB-IDE_build_13341714265592 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/history_ALSB-IDE_build_1334171426559/1334171429555.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/history_ALSB-IDE_build_1334171426559/1334171429555.0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/undo_ALSB-IDE_build_1334171426559/1334171429555.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_binary/undo_ALSB-IDE_build_1334171426559/1334171429555.0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_AlertDestination4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_AlertDestination4 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService2 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService3 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_BusinessService4 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_FLOW0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_FLOW0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData1 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData2 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData3 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_LocationData4 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_MFL0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_MFL0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService1 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService3 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_ProxyService4 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL2 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL3 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_WSDL4 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XML1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XML1 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XML2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XML2 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema0 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema3 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_XMLSchema4 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_Xquery2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sbconfig/sessions/ALSB-IDE_build_1334171426559/_index/_index_Xquery2 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/com.bea.alsb.core/sessions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ALSB-IDE_build_1363536480157 5 | 6 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/2.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/2.command.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/command.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/EndPointMonitoring/project.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/2.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/2.command.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/command.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/OSB Configuration/project.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/2.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/2.command.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/command.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/ReliableMessageWS/project.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/2.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/2.command.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/command.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/Splitjoin/project.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/2.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/2.command.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/command.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/TextToXml/project.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/2.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/2.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/2.command.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/2.command.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/command.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/command.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/oracle.eclipse.tools.common.services/XSDvalidation/project.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/2b/d06cddc4558300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:30:49 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY=Oracle WebLogic Server 11gR1 (10.3.6) at localhost [osb] 9 | eclipse.preferences.version=1 10 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/2d/00e71971548300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY= 9 | eclipse.preferences.version=1 10 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/3b/12118fd6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | PUBLISH_SESSION_NAME_PROPERTY= 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/54/10da8ecf558300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:40:28 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY=Oracle WebLogic Server 11gR1 (10.3.6) at localhost [osb] 9 | container.referenced.projects=EJB|EndPointMonitoring| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/72/2004f1c9558300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:40:19 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY=Oracle WebLogic Server 11gR1 (10.3.6) at localhost [osb] 9 | container.referenced.projects=EJB| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/84/503f58954f0e001210f6b94033a0d6c6: -------------------------------------------------------------------------------- 1 | #Sun Jun 03 14:09:18 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY=Oracle WebLogic Server 11gR1 (10.3.6) at localhost [osb] 9 | container.referenced.projects=XSDvalidation|ReliableMessageWS| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/87/e0419dd6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY= 8 | SERVER_PROPERTY= 9 | eclipse.preferences.version=1 10 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/a5/10fb33f274ad00111288924b2da0c947: -------------------------------------------------------------------------------- 1 | #Sun Jun 03 14:02:01 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY= 9 | container.referenced.projects=TextToXml|XSDvalidation|EndPointMonitoring|ReliableMessageWS|Splitjoin| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/a6/015b91d6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY= 8 | eclipse.preferences.version=1 9 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/ad/f0f79ad6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY= 8 | SERVER_PROPERTY= 9 | eclipse.preferences.version=1 10 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/ca/10118fd6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | DISCARD_SESSION_PROPERTY=true 4 | eclipse.preferences.version=1 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/d6/11118fd6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | DISCARD_SESSION_PROPERTY=true 4 | PUBLISH_SESSION_NAME_PROPERTY= 5 | eclipse.preferences.version=1 6 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/e4/10a08cd6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | DISCARD_SESSION_PROPERTY=true 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.history/fc/005b91d6538300111041be929c3f0f87: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY= 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | PUBLISH_SESSION_NAME_PROPERTY= 7 | eclipse.preferences.version=1 8 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.indexes/history.index -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.markers.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/.syncinfo.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/1.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/EndPointMonitoring/1.tree -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.indexes/af/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.indexes/af/history.index -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.markers.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/OSB Configuration/.syncinfo.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.indexes/history.index -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.markers.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/ReliableMessageWS/.syncinfo.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.indexes/history.index -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.markers.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/.syncinfo.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/1.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/Splitjoin/1.tree -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.indexes/history.index -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.markers -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.markers.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/.syncinfo.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/1.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/TextToXml/1.tree -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.indexes/history.index -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.markers.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.projects/XSDvalidation/.syncinfo.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index: -------------------------------------------------------------------------------- 1 | /org.eclipse.core.resourcescontentCacheState1contentCacheTimestamp 1361475417938org.eclipse.jdt.corestateVersionNumber25org.eclipse.wst.jsdt.corestateVersionNumber21 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.safetable/oracle.eclipse.tools.common.services.2: -------------------------------------------------------------------------------- 1 | #safe table 2 | #Wed Apr 11 21:18:18 CEST 2012 3 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.resources/.snap -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/oracle.eclipse.tools.webtier.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:01 CEST 2012 2 | madeWPEDefaultEditor=true 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:31 CEST 2012 2 | version=1 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:25:59 CEST 2012 2 | content-types/com.bea.alsb.core.resources.custom.content-type/file-extensions=mqc 3 | eclipse.preferences.version=1 4 | content-types/org.eclipse.jst.jsp.core.jspfragmentsource/file-extensions=jsff 5 | content-types/com.bea.alsb.core.resources.xquery.content-type/file-extensions=xquery 6 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs: -------------------------------------------------------------------------------- 1 | #Sun Jun 03 14:07:02 CEST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=\r\n\r\n 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:29 CEST 2012 2 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 4 | eclipse.preferences.version=1 5 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.6 8 | org.eclipse.jdt.core.compiler.compliance=1.6 9 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jst.j2ee.webservice.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:25:56 CEST 2012 2 | areThereWebServices=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jst.jsp.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | org.eclipse.jst.jsp.core.taglib.TaglibIndex=CLEAN 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:25:49 CEST 2012 2 | eclipse.preferences.version=1 3 | mylyn.attention.migrated=true 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.java.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.mylyn.java.ui.run.count.3_1_0=1 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:25:49 CEST 2012 2 | org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.cvs.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | pref_first_startup=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.team.ui.first_time=false 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs: -------------------------------------------------------------------------------- 1 | #Wed Apr 11 21:18:19 CEST 2012 2 | eclipse.preferences.version=1 3 | TASKS_FILTERS_MIGRATE=true 4 | tipsAndTricks=true 5 | platformState=1334095845469 6 | quickStart=false 7 | PROBLEMS_FILTERS_MIGRATE=true 8 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | eclipse.preferences.version=1 3 | showIntro=false 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.server.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:36:06 CEST 2012 2 | module-start-timeout=300000 3 | runtimes=\r\n\r\n \r\n\r\n 4 | eclipse.preferences.version=1 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.sse.core.prefs: -------------------------------------------------------------------------------- 1 | #Sun Jun 03 14:02:05 CEST 2012 2 | task-tag-projects-already-scanned=EndPointMonitoring,OSB Configuration,ReliableMessageWS,Splitjoin,TextToXml,XSDvalidation 3 | eclipse.preferences.version=1 4 | modelmanager.maxWaitDuringConcurrentLoad=30000 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.ws.service.policy.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:38:12 CEST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsissbp.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/ 4 | org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsiap.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/ 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.python.pydev.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:46:32 CEST 2012 2 | com.aptana.db.ide-idUUID=47d583bf-743a-4079-849d-b7006d9f6ad5 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.core/invalidArchivesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- 1 |  ECLIPSE_HOMEJRE_SRC 2 | JUNIT_HOME JRE_SRCROOTJRE_LIBJUNIT_SRC_HOME -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.launching/.install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.jst.j2ee.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 |
7 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/.workspace/2012/4/15/refactorings.index: -------------------------------------------------------------------------------- 1 | 1334094093651 Delete resource 'EJB' 2 | 1334094208498 Delete resource 'ReliableMessage' 3 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.ltk.ui.refactoring/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 |
7 |
8 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties: -------------------------------------------------------------------------------- 1 | #Cached timestamps 2 | #Sat Oct 06 12:20:11 CEST 2012 3 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.team.cvs.core/.running: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.team.cvs.core/.running -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 |
7 |
8 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.ui.intro/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 | 7 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.jsdt.core/externalLibsTimeStamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.jsdt.core/externalLibsTimeStamps -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.jsdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.jsdt.ui/OpenTypeHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.jsdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.server.core/monitors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.server.core/publish.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.server.core/publish/publish0.dat: -------------------------------------------------------------------------------- 1 | 8com.bea.alsb.core.internal.deployables:OSB ConfigurationOSB Configurationbea.alsb.container.module1.0.100 -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.server.core/tmp-data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/osb/_auto_generated_ear_/META-INF/application.xml: -------------------------------------------------------------------------------- 1 | 2 | _auto_generated_ear_ 3 | 4 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/.plugins/org.python.pydev/ping.log: -------------------------------------------------------------------------------- 1 | plugin.started%5B%5D=1334093159149%3APydev_2.2.3.2011100616 2 | plugin.started%5B%5D=1334171303109%3APydev_2.2.3.2011100616 3 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/.metadata/version.ini: -------------------------------------------------------------------------------- 1 | org.eclipse.core.runtime=1 -------------------------------------------------------------------------------- /maven_osb_ps5/source/OSB Configuration/.settings/com.bea.alsb.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Oct 04 20:16:14 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY= 9 | container.referenced.projects=XSDvalidation|ReliableMessageWS| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/OSB Configuration/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/OSB Configuration/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/OSB Configuration/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | DELEGATES_PREFERENCE=delegateValidatorList 3 | USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 4 | USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 5 | USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.302.v201107140600 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/ReliableMessageWS/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/ReliableMessageWS/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/ReliableMessageWS/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | #Sat Jun 04 20:37:39 CEST 2011 2 | DELEGATES_PREFERENCE=delegateValidatorList 3 | USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 4 | USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 5 | USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.201.v201101270100 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/ReliableMessageWS/xsd/Helloworld.xsd: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/16.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/16.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/33.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/33.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps5/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/project.num -------------------------------------------------------------------------------- /maven_osb_ps5/source/XSDvalidation/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_osb_ps5/source/XSDvalidation/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /maven_osb_ps6/osb.sh: -------------------------------------------------------------------------------- 1 | M2_HOME=/opt/apache/apache-maven-3.0.4 2 | M2=/opt/apache/apache-maven-3.0.4/bin 3 | 4 | MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=256m" 5 | 6 | JAVA_HOME=/usr/java/jdk1.7.0_09 7 | PATH=/usr/java/jdk1.7.0_09/bin:/opt/apache/apache-maven-3.0.4/bin:$PATH 8 | 9 | export M2_HOME M2 JAVA_HOME PATH MAVEN_OPTS 10 | 11 | 12 | -------------------------------------------------------------------------------- /maven_osb_ps6/source/OSB Configuration/.settings/com.bea.alsb.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Oct 04 20:16:14 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY= 9 | container.referenced.projects=XSDvalidation|ReliableMessageWS| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /maven_osb_ps6/source/OSB Configuration/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_osb_ps6/source/OSB Configuration/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /maven_osb_ps6/source/OSB Configuration/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | DELEGATES_PREFERENCE=delegateValidatorList 3 | USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 4 | USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 5 | USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.302.v201107140600 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /maven_osb_ps6/source/ReliableMessageWS/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_osb_ps6/source/ReliableMessageWS/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /maven_osb_ps6/source/ReliableMessageWS/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | #Sat Jun 04 20:37:39 CEST 2011 2 | DELEGATES_PREFERENCE=delegateValidatorList 3 | USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 4 | USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 5 | USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.201.v201101270100 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /maven_osb_ps6/source/ReliableMessageWS/xsd/Helloworld.xsd: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /maven_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/16.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/16.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/33.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/33.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps6/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/project.num -------------------------------------------------------------------------------- /maven_osb_ps6/source/XSDvalidation/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_osb_ps6/source/XSDvalidation/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/export/sbconfig-rel.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps6_tool/export/sbconfig-rel.jar -------------------------------------------------------------------------------- /maven_osb_ps6_tool/export/sbconfig-xsd.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps6_tool/export/sbconfig-xsd.jar -------------------------------------------------------------------------------- /maven_osb_ps6_tool/osb.sh: -------------------------------------------------------------------------------- 1 | M2_HOME=/Users/edwin/apache-maven-3.0.5 2 | M2=/Users/edwin/apache-maven-3.0.5/bin 3 | 4 | MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=256m" 5 | 6 | JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home 7 | PATH=/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home/bin:/Users/edwin/apache-maven-3.0.5/bin:$PATH 8 | 9 | export M2_HOME M2 JAVA_HOME PATH MAVEN_OPTS 10 | 11 | 12 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/OSB Configuration/.settings/com.bea.alsb.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Oct 04 20:16:14 CEST 2012 2 | ACTIVATION_DESCRIPTION_PROPERTY=Publish from Oracle Service Bus IDE. 3 | CUSTOMIZATION_FILE_PROPERTY= 4 | DISCARD_SESSION_PROPERTY=true 5 | KEYSTORE_PROPERTYfile= 6 | KEYSTORE_PROPERTYpassword= 7 | PUBLISH_SESSION_NAME_PROPERTY=OSB_Publish 8 | SERVER_PROPERTY= 9 | container.referenced.projects=XSDvalidation|ReliableMessageWS| 10 | eclipse.preferences.version=1 11 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/OSB Configuration/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/OSB Configuration/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/OSB Configuration/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | #Tue Apr 10 23:26:30 CEST 2012 2 | DELEGATES_PREFERENCE=delegateValidatorList 3 | USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 4 | USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 5 | USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.302.v201107140600 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/OSB Configuration/JNDIProviderLocal.jndi: -------------------------------------------------------------------------------- 1 | 2 | 3 | Local JNDI 4 | t3://localhost:7001 5 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/ReliableMessageWS/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/ReliableMessageWS/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/ReliableMessageWS/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | #Sat Jun 04 20:37:39 CEST 2011 2 | DELEGATES_PREFERENCE=delegateValidatorList 3 | USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 4 | USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsi.ui.internal.WSIMessageValidator; 5 | USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.201.v201101270100 6 | eclipse.preferences.version=1 7 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/ReliableMessageWS/osb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/ReliableMessageWS/xsd/Helloworld.xsd: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/16.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps6_tool/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/16.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/33.artifact.sjo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps6_tool/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/33.artifact.sjo -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/project.num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_osb_ps6_tool/source/XSDvalidation/.settings/oracle.eclipse.tools.common.services/project.num -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/XSDvalidation/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/XSDvalidation/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/XSDvalidation/osb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /maven_osb_ps6_tool/source/osb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /maven_sb_1213_ServiceApplication/HelloService/servicebus.sboverview: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /maven_sb_1213_ServiceApplication/HelloService/xsd/Helloworld.xsd: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /maven_sb_1213_ServiceApplication/System/JNDIProvider.jndi: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | t3://10.10.10.10:7001 5 | weblogic.jndi.WLInitialContextFactory 6 | 7 | -------------------------------------------------------------------------------- /maven_sb_1213_ServiceApplication/System/SMTPServer.smtp: -------------------------------------------------------------------------------- 1 | 2 | 3 | my.de.de 4 | 5 | 110 6 | -------------------------------------------------------------------------------- /maven_sb_1213_ServiceApplication/System/servicebus.sboverview: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /maven_soa_suite_1213_MyServiceApp/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .data 3 | classes 4 | target 5 | deploy 6 | 7 | 8 | myservice/SOA/SCA-INF/myservice.diagram.jpg 9 | 10 | myservice/SOA/SCA-INF/myservice.diagram.xml 11 | -------------------------------------------------------------------------------- /maven_soa_suite_1213_MyServiceApp/myservice/SOA/testsuites/fileList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_soa_suite_1213_MyServiceApp/myservice/SOA/testsuites/test_suite1/componenttests/fileList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /maven_soa_suite_1213_MyServiceApp/myservice/SOA/testsuites/test_suite1/includes/fileList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /maven_soa_suite_1213_MyServiceApp/myservice/SOA/testsuites/test_suite1/messages/fileList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /maven_soa_suite_1213_MyServiceApp/myservice/SOA/testsuites/test_suite1/tests/fileList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /maven_soa_suite_1213_MyServiceApp/myservice/jndi.properties: -------------------------------------------------------------------------------- 1 | java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory 2 | java.naming.provider.url=t3://localhost:7101/soa-infra 3 | java.naming.security.principal=weblogic 4 | java.naming.security.credentials=weblogic1 5 | dedicated.connection=true 6 | dedicated.rmicontext=true 7 | -------------------------------------------------------------------------------- /maven_soa_suite_1213_MyServiceApp/scripts/build-release.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eu 3 | : ${GO_PIPELINE_COUNTER:?} 4 | : ${PWD:?} 5 | set -x 6 | 7 | RELEASE_VERSION=`ruby scripts/get-maven-release-version.rb $GO_PIPELINE_COUNTER` 8 | TAG="v$RELEASE_VERSION" 9 | 10 | mkdir artifacts 11 | 12 | echo "${RELEASE_VERSION}" > artifacts/version 13 | echo "${TAG}" > artifacts/tag 14 | 15 | mvn versions:set \ 16 | --batch-mode \ 17 | --errors \ 18 | -DgenerateBackupPoms=false \ 19 | -DnewVersion="$RELEASE_VERSION" \ 20 | --file pom.xml 21 | -------------------------------------------------------------------------------- /maven_soa_suite_ps5/soa.sh: -------------------------------------------------------------------------------- 1 | M2_HOME=/opt/apache/apache-maven-3.0.4 2 | M2=/opt/apache/apache-maven-3.0.4/bin 3 | 4 | MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=256m" 5 | 6 | JAVA_HOME=/usr/java/jdk1.7.0_09 7 | PATH=/usr/java/jdk1.7.0_09/bin:/opt/apache/apache-maven-3.0.4/bin:$PATH 8 | 9 | export M2_HOME M2 JAVA_HOME PATH MAVEN_OPTS 10 | 11 | 12 | -------------------------------------------------------------------------------- /maven_soa_suite_ps5/source2/bpel1/testsuites/fileList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /maven_soa_suite_ps5/source2/bpel2/testsuites/fileList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /maven_soa_suite_ps5/source2/bpel2/xsd/BPELProcess2.xsd: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /maven_soa_suite_ps6/source2/bpel1/SCA-INF\classes/.data/00000000/00000000.jdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_soa_suite_ps6/source2/bpel1/SCA-INF\classes/.data/00000000/00000000.jdb -------------------------------------------------------------------------------- /maven_soa_suite_ps6/source2/bpel1/SCA-INF\classes/.data/00000000/je.lck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_soa_suite_ps6/source2/bpel1/SCA-INF\classes/.data/00000000/je.lck -------------------------------------------------------------------------------- /maven_soa_suite_ps6/source2/bpel1/testsuites/fileList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /maven_soa_suite_ps6/source2/bpel2/SCA-INF\classes/.data/00000000/00000000.jdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_soa_suite_ps6/source2/bpel2/SCA-INF\classes/.data/00000000/00000000.jdb -------------------------------------------------------------------------------- /maven_soa_suite_ps6/source2/bpel2/SCA-INF\classes/.data/00000000/je.lck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/soa_tools/48b3378d581192f2056be1f8548d7c4370ea66e4/maven_soa_suite_ps6/source2/bpel2/SCA-INF\classes/.data/00000000/je.lck -------------------------------------------------------------------------------- /maven_soa_suite_ps6/source2/bpel2/testsuites/fileList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /maven_soa_suite_ps6/source2/bpel2/xsd/BPELProcess2.xsd: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | --------------------------------------------------------------------------------