MNP_RU_638 - Middleware Modernization 2024: Servizi GISP lotto5 (DROP 1 - R58-24-0029 - 296987)

This commit is contained in:
manuelstefanile
2024-06-21 10:00:00 +02:00
parent 5b5720cb7e
commit 044efe150b
6 changed files with 147 additions and 78 deletions

View File

@@ -304,6 +304,7 @@
<file name="Castor-AomDataBinding.jar"/>
<file name="Castor-GispRestTP.jar"/>
<file name="WSIBK50client.jar"/>
<file name="WSO2CIBK61Client.jar"/>
<file name="WSEsitoCessMnpCommon.jar"/>
<file name="WSEsitoRicMvnoCommon.jar"/>
<file name="Castor-GispCessTP.jar"/>

View File

@@ -49,9 +49,10 @@
<property name="wsdev.wsdl.gisp.path" value="${wsdev.wsdl.home}/gisp" />
<property name="wsdev.gisp.building.path" value="${wsdev.home}/gisp/building" />
<!-- Per sviluppo Middleware Modernization 2024: Servizi GISP lotto5 WS esposti ad O2C -->
<!-- MNP_RU_638: Middleware Modernization 2024 - Servizi GISP lotto5 WS O2C -->
<property name="wsdev.wsdl.o2c.path" value="${wsdev.wsdl.home}/o2c" />
<property name="wsdev.o2c.building.path" value="${wsdev.home}/o2c/building" />
<property name="wsdev.o2c.client.path" value="${wsdev.home}/o2c/client" />
<!-- Per sviluppo client WS DBSS -->
<property name="wsdbss.clientdev.home" value="${project.home}/mnp/wsdbss" />
@@ -677,6 +678,33 @@ dest="${wsdev.dbss.building.path}/temp" /> -->
</jar>
<delete dir="${wsdev.gisp.client.path}/temp" />
</target>
<!--
***********************************************************************
TARGET CREAZIONE ARTEFATTI CLIENT PER WS IBK61 VERSO O2C
***********************************************************************
-->
<target name="WSO2CIBK61ClientGen" depends="">
<mkdir dir="${wsdev.o2c.client.path}/IBK61/tmp" />
<!-- Nel file handlerClientIBK61.config.xml definire la classe mnp.proxy.ws.o2c.client.IBK61SOAPHandler.java di log -->
<clientgen
wsdl="${wsdev.wsdl.o2c.path}/IBK61/IBK61_Concrete.wsdl"
destDir="${wsdev.o2c.client.path}/IBK61/tmp"
handlerChainFile="${wsdev.wsdl.o2c.path}/IBK61/handlerClientIBK61.config.xml"
packageName="it.valueteam.mnp.ws.o2c.client"
type="JAXRPC"
/>
<!-- Compila i sorgenti e impacchetta le classi in un jar allo scopo di utilizzarlo con Eclipse -->
<javac includeantruntime="false" srcdir="${wsdev.o2c.client.path}/IBK61/tmp" includes="**/*.java">
<classpath refid="ws.gen.all.classpath"/>
</javac>
<jar destfile="${wsdev.o2c.client.path}/IBK61/WSO2CIBK61Client.jar">
<fileset dir="${wsdev.o2c.client.path}/IBK61/tmp"/>
</jar>
<copy todir="${mnp.ear.path}/APP-INF/lib" file="${wsdev.o2c.client.path}/IBK61/WSO2CIBK61Client.jar"/>
<delete dir="${wsdev.o2c.client.path}/IBK61/tmp" />
</target>
</project>