Sunday, June 6, 2010

resignation of my first job

2010 April 20 is my last day of my first job.After written my last exam paper of the my Bachelor degree,I was able to join my first job.

My first company is Sabre Technologies.It's under MAS Holdings Group.when selecting process I was fortunate to have my friend's recommendation.I take this opportunity to thank to that friend.

I started my job on the 15 of February 2006.Last four year i was work on the Tradecard project.It's supply chain management system.In my latter part of the job,Sabre came to and join venture with TradeCard Inc and formed a new organizaion called TradeCard Services Pvt Ltd.

There fore In 2008 Dec I have to resign Sabre and rejoin to TradeCard Services Pvt Ltd.

with my first job i have learn lot of things.With the j2EE technologies I have put my foundation.That is in 2007 May I have pass the Sun Certified Java Programmer Exam.during these period I have work with jsp,servlet,and hibrenate technologies.Also I was fortunate to work with MVC architecture.

Tuesday, June 1, 2010

Flow Chart Diagram


A flow chart is a graphical or symbolic representation of a process. Each step in the process is represented by a different symbol and contains a short description of the process step. The flow chart symbols are linked together with arrows showing the process flow direction.
Your can refer the above table for the Flow chart Diagram's Symbol.

Thursday, May 13, 2010

Short Message peer to peer protocol (SMPP)

The Short Message Peer to Peer (SMPP) protocol is an open industry standard messaging protocol designed to simplify integration of data applications with wireless mobile networks such as GSM, TDMA, CDMA and PDC. The protocol is widely deployed in the mobile telecommunications industry. The SMPP protocol specification is freely available from the Documents section of this site. With SMPP you can as an application developer send data to mobile devices or to the other applications over SMSC (Short Messasge Service Centre).

The short message peer-to-peer protocol was initially designed and developed by an Irish company called Aldiscon and is now owned by LogicaCMG plc.

The short message peer-to-peer protocol is based on pairs of request/response packets or binary encoded packets PDUs (protocol data units) exchanged over OSI transport layer (TCP session) connections.

Friday, May 7, 2010

Web Services Description Language (WSDL)

used in the web services.

GUI Interface using batch file



today I have create GUI Interface using batch file.I have attach sample code for your reusage.

====Sample code====

@ECHO off
echo msgbox"Task Complete Successful">a.vbs&a.vbs&del a.vbs

Simple Object Access Protocol (SOAP)



SOAP stands for Simple Object Access Protocol used to create a format for sending messages .It's platform and language independent

SOAP is based on XML

SOAP provides a way to communicate between applications running on different operating systems, with different technologies and programming languages.

Syntax Rules

Here are some important syntax rules which must contains in SOAP message:

A SOAP message Must be encoded using XML ,Must use the SOAP Envelope namespace ,must use the SOAP Encoding namespace ,must NOT contain a DTD reference,must NOT contain XML Processing Instructions

In the above diagram display the simple format of SOAP message.

Thursday, May 6, 2010

Web Services in Nutshell

Web services are services ,usually including some combination of programming and data, but possibly including human resources as well.
These services are made available from a business's Web server for Web users or other Web-connected programs.

Providers of Web services are generally known as application service providers.

Users can access some Web services through a peer-to-peer arrangement.

Some services can communicate with other services and this exchange of procedures and data is generally enabled by a class of software known as middleware.


The basic Web services platform is XML + HTTP.

XML provides a language which can be used between different platforms and programming languages and still express complex messages and functions.

The HTTP protocol is the most used Internet protocol.


Web services platform elements:

SOAP (Simple Object Access Protocol)
UDDI (Universal Description, Discovery and Integration)
WSDL (Web Services Description Language)


XML is used to tag the data,
SOAP is used to transfer the data,
WSDL is used for describing the services available
UDDI is used for listing what services are available.


Web services allow organizations to communicate data without intimate knowledge of each other's IT systems behind the firewall.

Unlike traditional client/server models, such as a Web server/Web page system, Web services do not provide the user with a GUI. Web services instead share business logic, data and processes through a programmatic interface across a network. The applications interface, not the users. Developers can then add the Web service to a GUI (such as a Web page or an executable program) to offer specific functionality to users.


Web services allow different applications from different sources to communicate with each other without time-consuming custom coding, and because all communication is in XML, Web services are not tied to any one operating system or programming language. For example, Java can talk with Perl, Windows applications can talk with UNIX applications.