Open Source Gaining in SOA, ESB and EAI

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Open Source Gaining in SOA, ESB and EAI
# 1  
Old 07-02-2007
Open Source Gaining in SOA, ESB and EAI

It is great for CEP, and event processing in general,*when publish/subscribe messaging, ESB, SOA and EAI become inexpensive commodities.** This is exactly what is happening thanks to companies like MuleSource.* MuleSource*is in production today in hundreds of major enterprises worldwide, including big names like:* American Airlines, Bank of America, British Telecom, Citigroup, Credit Suisse, Deutsche Bank,* HSBC,*Matsushita Electric, *NASA, Nomura Bank, Reuters, Samsung, Southwest Airlines, and Verizon, just to name a few.
MuleSorce now has solutions for ESB, SOA, B2B,*and EAI and*is supported on Red Hat / Fedora Linux, Windows Server, Solaris SPARC / X86, Suse / Ubuntu / Debian*Linux,* FreeBSD and OSX.* * Here is a graphic of the Mule Services Backbone:
Image
There is solid momentum*for open source solutions*at the messaging and integration layer. This is good news for complex event processing architects who need solid open source platforms for messaging and integration.*


More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Open Source

Hi Friends I'm new to this UNIX - I'm working on the porting project from Solaris To Linux i just want to map some commands from solaris to Linux so can any one please tell me how to get the source code of the commands like "ls", "cu", "du" Regards sabee (1 Reply)
Discussion started by: sabee.prakash
1 Replies

2. Cybersecurity

is open source more secure ?

Hi Guys, I'd like to know your opinion. A friend of mine claims, an open source OS like linux is more secure than a closed one like AIX because 'if he is hacked, he can do countermeasures'. I believe the opposite is the case - it's more secure if not everybody knows the kernel and is able to... (6 Replies)
Discussion started by: zxmaus
6 Replies

3. Post Here to Contact Site Administrators and Moderators

open source for the forum

This is a slick looking forum. Any chance on making the code for the forum open source? (1 Reply)
Discussion started by: ecupirate1998
1 Replies
Login or Register to Ask a Question
ARES_PARSE_SOA_REPLY(3) 				     Library Functions Manual					   ARES_PARSE_SOA_REPLY(3)

NAME
ares_parse_soa_reply - Parse a reply to a DNS query of type SOA SYNOPSIS
#include <ares.h> int ares_parse_soa_reply(const unsigned char* abuf, int alen, struct ares_soa_reply** soa_out); DESCRIPTION
The ares_parse_soa_reply function parses the response to a query of type SOA into a struct ares_soa_reply. The parameters abuf and alen give the contents of the response. The result is stored in allocated memory and a pointer to it stored into the variable pointed to by soa_out. It is the caller's responsibility to free the resulting soa_out structure when it is no longer needed using the function ares_free_data The structure ares_soa_reply contains the following fields: struct ares_soa_reply { char *nsname; char *hostmaster; unsigned int serial; unsigned int refresh; unsigned int retry; unsigned int expire; unsigned int minttl; }; RETURN VALUES
ares_parse_soa_reply can return any of the following values: ARES_SUCCESS The response was successfully parsed. ARES_EBADRESP The response was malformatted. ARES_ENODATA The response did not contain an answer to the query. ARES_ENOMEM Memory was exhausted. AVAILABILITY
This function was first introduced in c-ares version 1.9.0. SEE ALSO
ares_query(3) ares_free_data(3) 29 May 2012 ARES_PARSE_SOA_REPLY(3)