Posts

Read and Write Primary Document in ​ IBM B2B Sterling Integrator using MESA

​Read​  ​and Write Primary Document while implementing ​a ​ Custom Service in ​​ IBM B2B Sterling Integrator ​ using MESA Studio​ . ​ public WorkFlowContext processData(WorkFlowContext wfc)             throws WorkFlowException {         Document outputDocument;         String codeListOutputXML = null;         OutputStream outputStream;         BufferedOutputStream bos;         String svcName = wfc.getServiceName();         XLogger log = new XLogger("SI_Auto_DeployImpl", svcName);         wfc.harnessRegister();         wfc.setBasicStatus(WorkFlowContext.SUCCESS);         try {             CodeListDeployer codeListDeployer = new CodeListDeployer();             // Read the input from PrimaryDocument              Document srcDoc = wfc.getPrimaryDocument();                 codeListOutputXML = codeListDeployer.readCodeListExcel(srcDoc.getInputStream());              //Write output to new PrimaryDocument              outputDocument = wfc.newDocument();           ...

Oracle Documentation Links

Few good oracle documentation links we can learn pretty much oracle by self, Oracle® Server Concepts http://docs.oracle.com/cd/E11882_01/server.112/e25789/toc.htm Oracle® 2-Day Developers Guide http://docs.oracle.com/cd/E11882_01/appdev.112/e10766/toc.htm Oracle® Database 2 Day DBA http://docs.oracle.com/cd/E11882_01/server.112/e10897/toc.htm Oracle® Database 2 Day + Performance Tuning Guide http://docs.oracle.com/cd/E11882_01/server.112/e10822/toc.htm

File Compress Service in IBM B2B Sterling Integrator

<operation name="Compress">   <participant name="CompressionService"/>  <output message="outputMessage">  <assign to="." from="*"/>  <assign to="compression_action">Compress</assign>  <assign to="compressed_filename" from="concat('FileName__','.gz')"/>  <assign to="compression_level">1</assign> <!-- 1 Cost Less CPU cycles -->  <assign to="file_name">string(OriginalFileName)</assign> <assign to="doc_to_compress">primary_doc</assign> </output>  <input message="inputMessage">  <assign to="." from="*"/> </input>  </operation>

How to Launch Your Business While Working Full Time – QA with Tai Goodwin

http://succeedasyourownboss.com/06/2011/how-to-launch-your-business-while-working-full-time-qa-with-tai-goodwin/ http://launchwhileworking.com/

Marketing concepts Explained...

Image

40 Useful Websites

www.marcandangel.com/2010/05/24/top-40-useful-sites-to-learn-new-skills

IBM B2B Sterling Integrator (SI) and Sterling File Gateway Installation Procedure

1. Install and Configure Sterling Integrator DB. Follow the below link to create and configure database,          http://sirishg.blogspot.com/2012/12/sterling-integrator-oracle-user-and.html 2. Update License Set.    Need to update the License Set because while installing SI it will take the out of box license file which needs to be overriden after post installation. Below command will update the Sterling Integrator license,          InstallDirectory/bin$ AddLicenseSet.sh          3. Start SI and go to Operations --> System --> Licenses and do List All and check all carefully that we have got license for all    required SI components for instance File Gateway Core    Note: Check under InstallDirectory/properties/licensefiles for SI and SFG License.   4. Shutdown Sterling Integrator and proceed for Sterling File Gateway Installation ...