Friday, 14 September 2007

Communication between distributed program via internet

IIOP is a critical part of a strategic indusctry standard, the Common Object Request Broker Architecture (CORBA). Using CORBA's IIOP and related protocols, a company can write programs that will be able to communicate with their own or other company's existing or future programs whereever they are located and without having to understand anything about the program other than its service and name.

SOAP was developed by Microsoft, DevelopMentor, and Userland Software, and has been proposed as a standard interface to the Internet Engieering Task Force (IETF). SOAP(Simple Object Access Protocol) is a way for a program running in one kind of operating system to communicate with a program in the same or another kind of an operating system such as Linux by using HTTP and its XML as the mechanisms for information exchange.

No comments:

Can Jackson Deserialize Java Time ZonedDateTime

Yes, but must include JSR310. Thus ZonedDateTime can be deserialized directly from JSON response to POJO field. <dependency> <g...