Posts

Design Patterns Tutorial

Design Patterns Tutorial

Sterling Integrator issue with MSSQL Database

Error while installing -  The driver could not establish a secure connection to SQL Server by using Secure Sockets Layer (SSL) encryption. Error: "SQL Server returned an incomplete response. The connection has been closed.". [2014-11-13 17:31:50.499] ERRORDTL [1415899910498]com.microsoft. sqlserver.jdbc.SQLServerException: The driver could not establish a secure connection to SQL Server by using Secure Sockets Layer (SSL) encryption. Error: "SQL Server returned an incomplete response. The connection has been closed.". Solution below link.  --  Alternate Solution: http://www-01.ibm.com/support/docview.wss?uid=swg21690335 Other useful links......... http://blogs.msdn.com/b/jdbcteam/archive/2008/09/09/the-driver-could-not-establish-a-secure-connection-to-sql-server-by-using-secure-sockets-layer-ssl-encryption.aspx https://www.microsoft.com/en-us/download/details.aspx?id=44622

Rain

Image

Harmonium Lessons

http://learnraagabasics.blogspot.com/

Encoding a Payload in Sterling Integrator using Java Task

import java.io.InputStream; import java.lang.StringBuilder; import com.sterlingcommerce.woodstock.workflow.Document; import com.sterlingcommerce.woodstock.util.Base64; Document doc = wfc.getPrimaryDocument(); InputStream in = doc.getInputStream(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < in.available(); i++) {    sb.append(in.read()); } byte data[] = sb.toString().getBytes(); byte newdata[] = Base64.encode(data); doc.setBody(new String( " "+ new String(newdata)+" ").getBytes()); return new String(sb.toString());

Sir A.P.J Abdul Kalam

Don't take rest after your first victory because if you fail in second, more lips are waiting to say that your first victory was just luck." - A.P.J Abdul Kalam "All Birds find shelter during a rain. But Eagle avoids rain by flying above the Clouds." - A.P.J Abdul Kalam "Failure will never overtake me if my definition to succeed is strong enough". - A.P.J Abdul Kalam "Man needs difficulties in life because they are necessary to enjoy the success." - A.P.J Abdul Kalam "If you want to shine like a sun. First burn like a sun." - A.P.J Abdul Kalam "It is very easy to defeat someone, but it is very hard to win someone" - A.P.J Abdul Kalam "All of us do not have equal talent. But , all of us have an equal opportunity to develop our talents." - A.P.J Abdul Kalam " Be more dedicated to making solid achievements than in running after swift but synthetic happiness." -A.P.J Abdul Kalam ...

An Enterprise Architecture introduction

Image