Search This Blog

Friday, February 19, 2010

Import/Export WebService

Export Message Schema

set log c:\Temp\webservice_qac\PSIBMSGSCHEMA_EXP.log;

set output c:\Temp\webservice_qac\PSIBMSGSCHEMA_EXP.dat;

export PSIBMSGSCHEMA

  WHERE MSGNAME IN ('M113977','M384127','M484624',' M580849','M594368','M626443') AND APMSGVER = 'V1';

 

Export WebService

set log c:\Temp\webservice_qac\PSIBWSDL_EXP_Web_Services.log;

set output c:\Temp\webservice_qac\PSIBWSDL_EXP_Web_Services.dat;

export PSIBWSDL

  WHERE IB_WSDLNAME in ('CI _PI_JOB_V2.1');

 

Import message 

SET INPUT c:\Temp\webservice_qac\PSIBMSGSCHEMA_EXP.dat;

SET LOG c:\Temp\webservice_qac\PSIBMSGSCHEMA_IMP.LOG;

set no record;

 

delete from PSIBMSGSCHEMA

WHERE MSGNAME IN ('M113977','M384127','M484624',' M580849','M594368','M626443')  AND APMSGVER = 'V1';

import *;

 

Import WSDL

SET INPUT c:\TEMP\webservice_qac\PSIBWSDL_EXP_Web_Services.dat;

SET LOG c:\TEMP\webservice_qac\PSIBWSDL_EXP_Web_Services.log;

set no record;

 

delete from PSIBWSDL

  WHERE IB_WSDLNAME in ('CI_PI_JOB_V2.1');

import *;

 

Anoop Sasikala

 

 

No comments:

Post a Comment