<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The Architecture of LetMeGo.com</title>
	<atom:link href="http://blog.letmego.com/2008/10/the-architecture-of-letmegocom/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.letmego.com/2008/10/the-architecture-of-letmegocom/</link>
	<description></description>
	<lastBuildDate>Wed, 07 Dec 2011 16:45:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alexander Torrenegra</title>
		<link>http://blog.letmego.com/2008/10/the-architecture-of-letmegocom/comment-page-1/#comment-17</link>
		<dc:creator>Alexander Torrenegra</dc:creator>
		<pubDate>Fri, 20 Mar 2009 15:55:54 +0000</pubDate>
		<guid isPermaLink="false">http://alextorrenegra.wordpress.com/2008/10/20/the-architecture-of-letmegocom/#comment-17</guid>
		<description>Julian Amaya also posted an interesting analysis of our architecture: http://julianbot.wordpress.com/2009/02/10/merrcury-engine-architecture-analysis/

Thank you Julian!</description>
		<content:encoded><![CDATA[<p>Julian Amaya also posted an interesting analysis of our architecture: <a href="http://julianbot.wordpress.com/2009/02/10/merrcury-engine-architecture-analysis/" rel="nofollow">http://julianbot.wordpress.com/2009/02/10/merrcury-engine-architecture-analysis/</a></p>
<p>Thank you Julian!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Torrenegra</title>
		<link>http://blog.letmego.com/2008/10/the-architecture-of-letmegocom/comment-page-1/#comment-16</link>
		<dc:creator>Alexander Torrenegra</dc:creator>
		<pubDate>Fri, 21 Nov 2008 02:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://alextorrenegra.wordpress.com/2008/10/20/the-architecture-of-letmegocom/#comment-16</guid>
		<description>I guess this post was made by Cal.Thanks a lot Cal! We will keep all your comments in mind :) - As a matter of fact, we already started using some of them.</description>
		<content:encoded><![CDATA[<p>I guess this post was made by Cal.Thanks a lot Cal! We will keep all your comments in mind <img src='http://blog.letmego.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  &#8211; As a matter of fact, we already started using some of them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.letmego.com/2008/10/the-architecture-of-letmegocom/comment-page-1/#comment-15</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 08 Nov 2008 16:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://alextorrenegra.wordpress.com/2008/10/20/the-architecture-of-letmegocom/#comment-15</guid>
		<description>Hi Alex, first I have to say that I hadn&#039;t seen your other posts, so I don&#039;t understand the complete purpose of the architecture that you&#039;re proposing. However, based on what you&#039;re posting, I&#039;ve got a few questions.The first one is what kind of technologies are you planning to use?It seems to me that the purpose of separating the &#039;subsystems&#039; is that you can make them grow independently based on the load that they receive. Is it true? If true, then how are you going to manage load balancing there?You&#039;re going to use web-services for a lot of the communications. Are you going to use SOAP over HTTP? Have you considered its impact  on efficiency (response-time, throughput, memory load, etc ... )? XML and SOAP as means of communication are very heavy. That&#039;s why it is used mostly in B2B scenarios, and not that much for internal communications between subsystems. Take a look at SOA architectures and evaluate whether it is best to pick other faster and lighter protocols of communication. On the other hand, Web Services are meant to provide advantages for evolution of the interfaces, so maybe you really want to sacrifice efficiency for flexibility.The Business Model Subsystems are going to be directly available for the Presentation Subsystems, or are you going to have some kind of middleware, such as an ESB?I know the figure is very high-level, but have you considered if you can introduce easily some kind of cache schema in case you need it for performance reasons?Have you considered security? There&#039;s no physical deployment information on your figure, but I imagine you&#039;re going to put everything away to prevent unauthorized access. However, with web-services you&#039;ve got to be very careful as the WSDL provides a lot of information. There are several strategies to deal with security on web services, but, as always, there&#039;s a tradeoff: add extra security (WS-Security, Ciphered messages, Https, etc) and decrease performance. The following are some questions to consider about security taken from an IBM&#039;s Redbook called &quot;Understanding SOA Security&quot;:- Are there applications or business services that need to be secured (do they provide access to confidential information)?- Are these services accessible from outside the enterprise environment? Are ther different security requirements for different access paths?- Do service requests cross security domains of the enterprise? Do policies need to be managed across security domains?- Are business partners allowed to access services from business partners using identities defined in their organization?- Are there composite services where a service can access other services for completing its task?- Is the auditing of services required for meeting compliance goals?Last question (maybe it&#039;s a dumb question in this particular context):What kind of strategies are you going to put in place to guarantee consistency in your whole system? Transactions? Remember that these kind of stuff add up on the WS-* stack and they have an impact on performance.Hope these questions help you!Best regards!</description>
		<content:encoded><![CDATA[<p>Hi Alex, first I have to say that I hadn&#8217;t seen your other posts, so I don&#8217;t understand the complete purpose of the architecture that you&#8217;re proposing. However, based on what you&#8217;re posting, I&#8217;ve got a few questions.The first one is what kind of technologies are you planning to use?It seems to me that the purpose of separating the &#8217;subsystems&#8217; is that you can make them grow independently based on the load that they receive. Is it true? If true, then how are you going to manage load balancing there?You&#8217;re going to use web-services for a lot of the communications. Are you going to use SOAP over HTTP? Have you considered its impact  on efficiency (response-time, throughput, memory load, etc &#8230; )? XML and SOAP as means of communication are very heavy. That&#8217;s why it is used mostly in B2B scenarios, and not that much for internal communications between subsystems. Take a look at SOA architectures and evaluate whether it is best to pick other faster and lighter protocols of communication. On the other hand, Web Services are meant to provide advantages for evolution of the interfaces, so maybe you really want to sacrifice efficiency for flexibility.The Business Model Subsystems are going to be directly available for the Presentation Subsystems, or are you going to have some kind of middleware, such as an ESB?I know the figure is very high-level, but have you considered if you can introduce easily some kind of cache schema in case you need it for performance reasons?Have you considered security? There&#8217;s no physical deployment information on your figure, but I imagine you&#8217;re going to put everything away to prevent unauthorized access. However, with web-services you&#8217;ve got to be very careful as the WSDL provides a lot of information. There are several strategies to deal with security on web services, but, as always, there&#8217;s a tradeoff: add extra security (WS-Security, Ciphered messages, Https, etc) and decrease performance. The following are some questions to consider about security taken from an IBM&#8217;s Redbook called &#8220;Understanding SOA Security&#8221;:- Are there applications or business services that need to be secured (do they provide access to confidential information)?- Are these services accessible from outside the enterprise environment? Are ther different security requirements for different access paths?- Do service requests cross security domains of the enterprise? Do policies need to be managed across security domains?- Are business partners allowed to access services from business partners using identities defined in their organization?- Are there composite services where a service can access other services for completing its task?- Is the auditing of services required for meeting compliance goals?Last question (maybe it&#8217;s a dumb question in this particular context):What kind of strategies are you going to put in place to guarantee consistency in your whole system? Transactions? Remember that these kind of stuff add up on the WS-* stack and they have an impact on performance.Hope these questions help you!Best regards!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

