<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>web-services &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/web-services/</link>
	<description>Feed of posts on WordPress.com tagged "web-services"</description>
	<pubDate>Thu, 15 May 2008 23:12:46 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Precisamos de um descritor de serviços REST?]]></title>
<link>http://blpsilva.wordpress.com/?p=180</link>
<pubDate>Thu, 15 May 2008 01:33:40 +0000</pubDate>
<dc:creator>blpsilva</dc:creator>
<guid>http://blpsilva.wordpress.com/?p=180</guid>
<description><![CDATA[Me perguntaram sobre isso na minha apresentação de REST na Globo.com e isso foi assunto de uma dis]]></description>
<content:encoded><![CDATA[<p>Me perguntaram sobre isso na <a href="http://blpsilva.wordpress.com/2008/04/24/apresentacao-sobre-web-services-rest/" target="_self">minha apresentação de REST</a> na <a href="http://www.globo.com" target="_blank">Globo.com</a> e isso foi assunto de uma discussão interessante hoje no <a href="http://www.cejug.org" target="_blank">CEJUG</a>. Como é um assunto que pode interessar a bastante gente e eu me interesso muito por web services, resolvi falar mais sobre isso aqui no blog.</p>
<p>Os web services WS-* possuem o WSDL (Web Services Description Language), um artefato amplamente aceito que descreve de forma padrão os serviços da aplicação. Ao especificar no WSDL quais são os schemas XML dos documentos que serão trocados e a cardinalidade precisa de cada elemento, conseguimos garantir que qualquer cliente que entenda o padrão estabelecido será capaz de interpretar os documentos e comunicar-se corretamente com os serviços. Além disto, a maturidade deste padrão traz a vantagem de que já existem geradores de clientes em várias linguagens a partir de um documento WSDL.</p>
<p>Entretanto, WSDL (bem como muita coisa em WS-*) é complexo. Um ser humano que tenha que analisar um WSDL grande perderá um bom tempo para entender o que está descrito no documento. Já REST não tem uma forma padrão de especificar os contratos dos serviços.</p>
<p>Embora a versão 2.0 da especificação WSDL permita descrever web services REST, os principais projetos open source da área como o Apache Abdera, Google Data API, Jersey e o Mule não utilizam esta forma de publicação. Não tenho conhecimento de nenhum projeto publicamente divulgado que faça uso do WSDL 2.0 para descrever serviços REST, e a adoção desta capacidade é baixíssima (se é que existe).</p>
<p>O projeto Jersey oferece opcionalmente o WADL, que é uma forma de descrever serviços REST. Confesso que ainda não olhei o WADL para ver se seria interessante usá-lo. Pelo que sei, entretanto, a adoção dele também é muito baixa.</p>
<p>Existe também o documento de serviços do AtomPub, que é bem interessante. Ele é um documento simples que lista quais são as coleções disponíveis e a localização das mesmas. O documento informa também quais são os MIME types aceitos em cada coleção.</p>
<p>Eu considero interessante que a aplicação ofereça uma interface simples de consulta dos serviços disponíveis. Não é obrigatório, mas quando a aplicação tem uma certa quantidade de clientes é bem legal ter isso para facilitar.</p>
<p>Em dois projetos que eu trabalhei, eu implementei um Servlet simples que listava todas as URIs disponíveis na aplicação, quais métodos HTTP são aceitos em cada uma das URIs e além disso um exemplo de XML manipulado em cada uma das URIs. Isso foi algo que eu achei bom o suficiente, e não tão custoso. Normalmente a documentação de verdade dos serviços fica em algum lugar como uma Wiki, ou uma página qualquer com a descrição detalhada de como interagir com os serviços.</p>
<p>A questão principal é que quando você segue as boas práticas de desenvolvimento REST, os seus serviços ficam muito mais claros para quem precisa se integrar. Por exemplo, eu trabalhei em um projeto crítico de integração com o Google esse ano. Tive que usar várias funcionalidades da Google Data API. A API deles é REST, e encapsula os dados com o formato Atom. Eles não oferecem nenhuma interface semelhante ao WSDL, eles simplesmente têm uma <a href="http://code.google.com/apis/apps/overview.html" target="_blank">página com a documentação dos serviços</a>.</p>
<p>Como eles seguiram as boas práticas de implementação REST, eu rapidamente aprendi a utilizar a API deles. Os protocolos de comunicação REST são bem semelhantes, e mais simples de entender do que qualquer coisa com WS-*. Pouco mais de 1 hora depois de olhar a documentação deles, eu já estava conseguindo me integrar com eles, com os primeiros exemplos.</p>
<p>O <a href="http://gc.blog.br" target="_blank">Guilherme</a> fez uma observação interessante durante a discussão disso na minha apresentação no Tech Talk. Quando você segue as boas práticas e implementa um protocolo conciso e claro, de certa forma podemos dizer que a implementação se "auto-documenta". É algo que podemos traçar um paralelo ao que acontece ao utilizarmos Domain Driven Design. Aproximando a linguagem do código do domínio de negócio, facilitamos a compreensão da aplicação por pessoas que nunca a tinham visto antes. Uma boa arquitetura de web services declarativos (REST) fica muito mais clara do que uma arquitetura de web services imperativos (WS-*). Isto acontece porque com REST o que fica em destaque são os <strong>Recursos</strong> (que representam conceitos claros do domínio), em vez de <strong>Operações</strong>.</p>
<p>É claro que as pessoas ainda terão que ler um pouco da documentação, mas como os conceitos em sua maioria já estarão "no sangue", as dificuldades iniciais são menores do que com WS-*.</p>
<p>O <a href="http://weblogs.java.net/blog/felipegaucho/" target="_blank">Felipe Gaúcho</a> comentou no CEJUG sobre a capacidade de gerar clientes automatizados com WSDL. Embora isso seja verdade, no meu ponto de vista isso é meio que um mito. Não conheço ninguém que faça integrações automatizadas sem depender de seres humanos. A motivação disso é clara. Integrações envolvem regras de negócio, e ninguém que eu conheço faz negócios automáticos, sem definir as regras :)</p>
<p>Existia o mito de que as aplicações "descobririam" serviços automaticamente com UDDI e se virariam para fazer as integrações, gerando os clientes automaticamente. Embora isso seja tecnicamente possível, na prática isso pra mim é uma viagem que serviria mais para desenvolvimento de inteligência artificial do que para web services propriamente :)</p>
<p>Embora esta precisão do WSDL seja um ponto positivo, eu tenho a convicção de que a clareza que temos ao usar REST supera e muito as vantagens de termos geradores de clientes automatizados. Quanto a WS-* x REST de uma maneira mais geral, tem uma frase que eu gosto de utilizar. <strong>WS-* é apenas overhead a não ser que você tenha informações relevantes nos seus cabeçalhos SOAP</strong>. Se você nunca se preocupou MUITO (veja bem, MUITO) com o que está indo nos seu cabeçalhos SOAP, <strong>provavelmente</strong> um protocolo REST seria mais interessante.</p>
<p>Tem uma opinião a respeito disso? Estou ansioso para conhecê-la! :)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[How Amazon cashes in on its Cloud]]></title>
<link>http://jshurwitz.wordpress.com/?p=85</link>
<pubDate>Wed, 14 May 2008 21:52:04 +0000</pubDate>
<dc:creator>Judith</dc:creator>
<guid>http://jshurwitz.wordpress.com/?p=85</guid>
<description><![CDATA[I had a very interesting conversation with Jeff Barr, the senior web services evangelist at Amazon. ]]></description>
<content:encoded><![CDATA[<p>I had a very interesting conversation with <a href="http://www.jeff-barr.com/">Jeff Barr</a>, the senior web services evangelist at Amazon.  I have known Jeff for almost 15 years. In those days Jeff was one of the architects at a company called Visix, an early graphical development environment that was ahead of its time.  Visix's software development environment was designed as an abstraction of the underlying infrastructure.  Visix came into the market before the Internet infrastructure became the defacto standard.  But for me, it set the vision for where we are today.  Jeff started at Amazon in the summer of 2002 with the Visix and some Microsoft experience in his consciousness.</p>
<p>Amazon's business model is different than a traditional software company that often spends 18-24 months convincing customers to adopt new hardware/software or services.  Amazon is leveraging a different computing model based on providing customers will a set of predefined services that can be bought without making a long term commitment.  In a sense, Amazon has had the luxury (or good sense) to roll out service after service and see what sticks.  As Jeff sees it, "people's brains light up. They can build their business and applications in a positive way without having to worry about bandwidth, power and cooling." His perception is that customers don't think about whether the cloud provided by Amazon will support their needs.  Clearly, he is able to talk this way because Amazon has made the investment in a scalable architecture to support an infrastructure that is designed for massive scalability.  The other issue is that having built this architecture for its own retail requirements, <a href="http://www.amazon.com/gp/browse.html?node=16427261">Amazon </a>had the foresight to exploit the technology to create a new line of business -- in essence, a compute cloud based on providing a set of tools and product offerings to the market.  The message to  the market is straight forward, use these services so that you can innovate quickly without having to build from scratch.  In taking this approach, Amazon creates both a test bed that allows the company to collaborate on new functionality with partners. In addition, and perhaps most importantly, it allows customers to buy incremental capability so they can scale up and down when they need to. According to Jeff one of the benefits of the cloud is that it isn't dominated by the needs of one customer.  In other words, one customer may have a spike in demand while another has less need at that point in time.  Over the years, Amazon is able to understand usage patterns that are predictable.</p>
<p>Amazon's business model follow this approach.   A customer creates an account with Amazon that in essence gives them a charge account with Amazon.  Customers get access to all of the Web services APIs. Their usage is tracked and they are billed for what they use.  The business model is quite straight forward. Amazon charges 15 cents per gigabyte per month -- not a lot of money even when you scale.  What is interesting to me is there is no contracts to negotiate -- everyone understands the rules.  I asked Jeff if customers ever ask to buy a "private cloud".  While Amazon has been asked by customers, Jeff felt that because of the amount of experience that Amazon has with its hosted services discourages customers from explaining, "This is a business we want to be in. We have a lot of experience in our organization. We build highly cost effective data centers and sophisticated monitoring and operations." He contends that Amazon has the expertise based on its 13 years in the business is enough to keep customers from walking away from its cloud. If you do the math, it would be difficult to argue. For example, if a customer needed 500GB of storage for two years, the cost would be $1800. In addition, it avoids the requirements for managing that environment.</p>
<p>Jeff makes a good point. If a customer needs to scale from 10GB to 100 TB in a month it might be hard to pull off. "This is routine for us," Jeff claims. From his vantage point, the cloud changes the relationship between the customer and their hardware vendors. In effect, customers are sharing hardware resources with lots of other customers. So, the question becomes, who is your partner? It is no longer the provider of the hardware or the operating system.  You probably still have a relationship with your software provider.</p>
<p>So, Amazon's view of the cloud is pretty straight forward -- it is a way to get value out of virtualization. Jeff points out that if developers uses Amazon's elastic cloud service, for example, they pay to access servers on an hourly basis.  Amazon allocates server to that account, provides a copy of the operating system they need  to get started. That process takes a few seconds.</p>
<p>Another dimension of Amazon's business revolves around the companies that actually build applications that sit on its infrastructure.  Amazon has built a bunch of its own applications that it offers as services. In addition, there are a number of application companies that are building applications on top of the Amazon platform.  One that Jeff mentioned to me is called <a href="http://www.rightscale.com/m/">RightScale</a>, an automated cloud computing management system intended to help customers of Amazon's Elastic Compute Cloud with issues such as load balancing. In addition to this type of company there is a community of 370,000 developers. Because Amazon sets the barrier to use so low, it is easy for a developer to try a service without making a long term commitment.</p>
<p>The more I think about Amazon's platform and business model, the more sense it makes to me. I believe that Amazon and others such as Google, Salesforce.com, and eBay are a peak into the future of the new generation computing. In a sense, this model breaks every rule that the traditional computing industry has been built on. This movement towards enterprise software as a service and utility computing is beginning to redefine hardware, software, management and services. I predict that this new business model is going to slowly but surely turn the industry upside down. It isn't only that the business model is different. The underlying technology platform based on standards and a service oriented architecture is propelling this change. The only thing that will slow this transformation is fear of change. But what else is new.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[NNDB Mapper: Letting You Connect the Dots]]></title>
<link>http://fanpotai.wordpress.com/?p=4750</link>
<pubDate>Wed, 14 May 2008 19:05:45 +0000</pubDate>
<dc:creator>Vash the Stampede</dc:creator>
<guid>http://fanpotai.wordpress.com/?p=4750</guid>
<description><![CDATA[
The NNDB Mapper is a visual tool for tracking the connections of more than 32,000 famous people- li]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><img class="alignnone size-full wp-image-4749 aligncenter" src="http://fanpotai.wordpress.com/files/2008/05/mapper-shots.jpg" alt="" width="336" height="387" /></p>
<p><a href="http://mapper.nndb.com/">The NNDB Mapper</a> is a visual tool for tracking the connections of more than 32,000 famous people- linking them together through family relations, corporate boards, tv shows, political alliances and shadowy conspiracy groups.</p>
<p>Creating a map with the NNDB Mapper tells a story about the world through connecting the lives of billionaire executives, scientists and inventors, politicians and activists, writers and musicians, and even Hollywood stars.</p>
<p>These stories are shared by saving the maps for others to explore- from <a href="http://mapper.nndb.com/maps/358/000000358/">San Francisco's political landscape</a>, to <a href="http://mapper.nndb.com/maps/806/000000806/">Hollywood sex charts</a>, to who rocks more: <a href="http://mapper.nndb.com/maps/356/000000356/">Ozzy vs Slayer?</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Book review #2]]></title>
<link>http://charlesling.wordpress.com/?p=22</link>
<pubDate>Wed, 14 May 2008 17:43:55 +0000</pubDate>
<dc:creator>Charles Ling</dc:creator>
<guid>http://charlesling.wordpress.com/?p=22</guid>
<description><![CDATA[[Follow-up from previous post]
Technical Book
Almost Finish Reading
Web Services : Author by Gustavo]]></description>
<content:encoded><![CDATA[<p>[Follow-up from previous post]</p>
<p>Technical Book<br />
Almost Finish Reading<br />
<a href="http://www.amazon.com/Web-Services-Gustavo-Alonso/dp/3540440089/ref=pd_bbs_11?ie=UTF8&#38;s=books&#38;qid=1209559614&#38;sr=8-11">Web Services</a> : Author by Gustavo Alonso, Fabio Casati, Harumi Kuno, and Vijay Machiraju.</p>
<p>Comment : This book is really good for people who are new to web services and references as well. It explain the history of System architecture to current web services. Since this book is kind like a bit extreme technical like RFC specification and no practical solution at all. It introduce SOAP, WSDL, UDDI, 1 to N tier architecture, web service compsition, BPEL, WS-Security, WS-transaction, WS-routing, and more ws-*. </p>
<p>The first 1-4 chapters were about the enterprise system era before web services was introduced. You can got a big picture why integration and interoperability was so hard at that era.<br />
Chapter 5-6, slowly walk through the needs of web services and chapter 7-9 were mainly about web service composition and BPEL was introduced.</p>
<p>Although i finish reading this book, i only get half of its content because this book was too technical for beginner. You had to understand each design behind the system before proceed to the next chapters. If you want to learn web services and don't know where to start, then this book might help you.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[E-Commerce Solutions Means]]></title>
<link>http://qualityfervent.wordpress.com/?p=61</link>
<pubDate>Wed, 14 May 2008 11:43:56 +0000</pubDate>
<dc:creator>qualityfervent</dc:creator>
<guid>http://qualityfervent.wordpress.com/?p=61</guid>
<description><![CDATA[E-commerce is nothing other than the exchange of goods and services for money, led by electronic mea]]></description>
<content:encoded><![CDATA[<p><a href="http://ferventsoft.com/ecommerce-software-solution.html">E-commerce</a> is nothing other than the exchange of goods and services for money, led by electronic means as the Internet. Customers opt for online stores, as they may be more convenient than bricks and mortar stores. However, one of the greatest challenges to conduct an online activity is to ensure that customers' confidence customers site. To be a good online store, customers must inspire confidence in your customers..</p>
<p><b><a href="http://ferventsoft.com/">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Ο Σημασιολογικός Ιστός έρχεται μέσω Βουλγαρίας - The Semantic Web is coming, through Bulgaria !]]></title>
<link>http://omadeon.wordpress.com/?p=546</link>
<pubDate>Wed, 14 May 2008 11:30:15 +0000</pubDate>
<dc:creator>omadeon</dc:creator>
<guid>http://omadeon.wordpress.com/?p=546</guid>
<description><![CDATA[This is a bilingual post, English and Greek.



1) English version:


In Greece very few companies a]]></description>
<content:encoded><![CDATA[<h3 style="text-align:center;">This is a<em> <span style="color:#ff0000;">bilingual post,</span> </em>English <em>and </em>Greek.</h3>
<p style="text-align:center;"><img src="http://www.ontotext.com/images/SemAnot.png" alt="" /></p>
<ul>
<li>
<h2><span style="color:#ff0000;"><strong>1) English version:</strong></span></h2>
</li>
</ul>
<p style="text-align:justify;">In <a class="zem_slink" title="Greece" rel="wikipedia" href="http://en.wikipedia.org/wiki/Greece" target="_blank">Greece</a> <em>very few</em> companies are active in <em>Semantic Web technologies</em>. <strong>Some </strong>Greek university research has started, of course, part of which is regularly being reported and explained in <em>non-technical terms </em>through the <a title="Greek blog about the Semantic Web by a University professor" href="http://gmentzas.blogspot.com/">blog</a> of Greek university professor <a title="Greek blog about the Semantic Web by a University professor" href="http://gmentzas.blogspot.com/">Gregory Mentzas</a> <em>(highly recommended).</em></p>
<h4 style="text-align:justify;">However, on the whole, <em>Greek Semantic Web </em><em>activity </em>is more-or-less<em> negligible</em> or -even-<em> non-existent</em>, at the moment. <strong>In contrast, <em>another Balkan country,</em> traditionally<em> very </em>skilled in mathematics and computer science, is plunging ahead much faster into the Semantic Web: <span style="color:#ff0000;">Bulgaria</span>!</strong></h4>
<p style="text-align:justify;"><strong>"OntoText" is a <a class="zem_slink" title="Bulgaria" rel="wikipedia" href="http://en.wikipedia.org/wiki/Bulgaria" target="_blank">Bulgarian</a> software house, founded by "Sirma Group" in Sofia. It has another department based in Canada. OntoText  is <span style="text-decoration:underline;"><a title="About OntoText" href="http://www.ontotext.com/about_us.html"><em>"focused on research and core technology development for knowledge discovery, management, and engineering, Semantic Web and Web Services".</em></a></span></strong></p>
<p style="text-align:justify;"><strong> "Sirma Group" </strong>is led by the following people (of <em>typically Bulgarian </em>names):</p>
<p style="text-align:left;"><img src="http://www.sirma.com/images/square.gif" alt="" hspace="0" vspace="0" width="11" height="11" align="left" /> <strong>Board of Directors</strong><br />
Georgi Marinov – Chairman<br />
Chavdar Dimitrov - Vice chairman<br />
Tsvetan Alexiev - CEO<br />
Atanas Kiryakov<br />
Vesselin Kirov<br />
Yavor Djonev<br />
Krasismir Bojkov</p>
<p style="text-align:left;"><img src="http://www.sirma.com/images/square.gif" alt="" hspace="0" vspace="0" width="11" height="11" align="left" /> <strong>Executive Team</strong><br />
Tsvetan Alexiev - Executive Director<br />
Anatoly Apostolov - Director, Finance<br />
Chavdar Dimitrov - Director, Admin. &#38; HR<br />
Anton Gavrailov - Director, Business Dev.<br />
Vesselin Kirov - Director, R&#38;D<br />
Vladimir Alexiev - Director, Technology</p>
<ul>
<li>
<h2 style="text-align:left;"><strong><span style="color:#ff0000;">2) in Greek / ΕΛΛΗΝΙΚΑ:</span><br />
</strong></h2>
</li>
</ul>
<p style="text-align:justify;">Στην <a class="zem_slink" title="Greece" rel="wikipedia" href="http://en.wikipedia.org/wiki/Greece" target="_blank">Ελλάδα</a> <em>πολύ λίγες εταιρείες</em> έχουν αναπτύξει δραστηριότητα στις <em>Τεχνολογίες του Σημασιολογικού Ιστού</em>. <strong>Κάποια </strong>Ελληνική πανεπιστημιακή έρευνα έχει ξεκινήσει βέβαια, ένα μέρος της οποίας <em>εκλαϊκεύεται </em>μέσα από το <a title="Greek blog about the Semantic Web by a University professor" href="http://gmentzas.blogspot.com/">blog</a> του καθηγητή κ. <a title="Greek blog about the Semantic Web by a University professor" href="http://gmentzas.blogspot.com/">Γρηγόρη Μέντζα</a> (που το <em>προτείνω ανεπιφύλακτα).</em></p>
<p style="text-align:justify;">Παρόλ' αυτά και <em>παρά</em> τις επιδοτήσεις της Ε.Ε. που συνήθως... πάνε στράφι όταν δεν... <em>τρώγονται </em>- <em>(ΔΕΝ το μετάφρασα </em><em>αυτό στα αγγλικά :) )</em> η <strong>Ελληνική Δραστηριότητα</strong> στον <strong>Σημασιολογικό Ιστ</strong>ό είναι (λίγο-πολύ) <em>αμελητέα,</em> <em>σχεδόν ανύπαρκτη</em> αυτή τη στιγμή! (<strong><em>ΦΤΟΥ σας</em></strong><em><strong> </strong>μ......!</em> - <em><strong>ΟΥΤΕ </strong>αυτό δεν το μετάφρασα</em>).</p>
<p style="text-align:justify;"><strong>Αντίθετα, μία <em>άλλη </em>Βαλκανική χώρα, παραδοσιακά με <em>πολύ ισχυρά</em> ταλέντα<em> μαθηματικών</em> <em>και πληροφορικής,</em> προχωράει με <em>πολύ πιο γρήγορα άλματα</em> στον Σημασιολογικό Ιστό: - Η<span style="color:#ff0000;"> Βουλγαρία</span>!</strong></p>
<p style="text-align:justify;">Η εταιρεία <strong>"<span style="text-decoration:underline;"><a title="OntoText" href="http://www.ontotext.com">OntoText</a></span>"</strong> είναι <strong>Βουλγαρικό software house</strong> που ιδρύθηκε από τη<strong> "Sirma Group"</strong> στη Σόφια. Έχει ένα <em>άλλο</em> παράρτημα που εδρεύει στον<strong> Καναδά</strong>. Η <strong><span style="text-decoration:underline;"><a title="OntoText" href="http://www.ontotext.com">OntoText</a></span></strong> <span style="text-decoration:underline;"><a title="About OntoText" href="http://www.ontotext.com/about_us.html"><em><strong>"επικεντρώνεται σε έρευνα και ανάπτυξη βασικής τεχνολογίας για την (αυτοματοποιημένη) Ανακάλυψη Γνώσης, το  management και τη Μηχανική, στον Σημασιολογικό Ιστό και τις (σχετικές) υπηρεσίες Web ".</strong></em></a></span></p>
<p style="text-align:center;"><em>(λίστα ηγετικών στελεχών της εταιρείας δόθηκε στα Αγγλικά).</em></p>
<p style="text-align:center;">
<p style="text-align:center;"><a href="http://commons.wikipedia.org/wiki/Image:Webservices.png" target="_blank"><img class="aligncenter" style="border:medium none;display:block;" src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Webservices.png/202px-Webservices.png" alt="**Web service" /></a></p>
<p style="text-align:center;">
<p><fieldset><legend>Related articles</legend></p>
<ul class="zemanta-article-ul" style="margin:1em 0 1.5em;padding:0;">
<li class="zemanta-article"><a title="Open in new window" href="http://tomaltman.com/2008/04/30/web-30-is-like-ponoko/" target="_blank">Web 3.0 is like Ponoko</a> [via Zemanta]</li>
<li class="zemanta-article"><a title="Open in new window" href="http://www10.nytimes.com/2008/05/12/business/worldbusiness/12telecom.html?_r=5&#38;partner=rssnyt&#38;emc=rss&#38;oref=slogin&#38;oref=slogin&#38;oref=slogin&#38;oref=slogin" target="_blank">Deutsche Telekom May Gain Control of Greek Company</a> [via Zemanta]</li>
<li class="zemanta-article"><a title="Open in new window" href="http://valleywag.com/369915/whos-really-running-wikipedia" target="_blank">Who's really running Wikipedia? [The Sum Of All Human Knowledge]</a> [via Zemanta]</li>
<li class="zemanta-article"><a title="Open in new window" href="http://www.readwriteweb.com/archives/talis_semantic_web.php" target="_blank">Talis: Evangelizing and Quietly Enabling the Semantic Web</a> [via Zemanta]</li>
</ul>
<p></fieldset></p>
<p style="text-align:center;">
<div id="zemanta-pixie" style="width:100%;text-align:center;margin:5px 0;"><a id="zemanta-pixie-a" title="Zemified by Zemanta" href="http://www.zemanta.com/"><img style="border:medium none;float:right;" src="http://img.zemanta.com/pixie.png?x-id=c83d40eb-f043-4f74-9f4e-34f129dba9e5" alt="" /></a></div>
<p>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[E-Commerce Solutions Means]]></title>
<link>http://aryankunal.wordpress.com/?p=60</link>
<pubDate>Wed, 14 May 2008 10:55:10 +0000</pubDate>
<dc:creator>aryankunal</dc:creator>
<guid>http://aryankunal.wordpress.com/?p=60</guid>
<description><![CDATA[E-commerce is nothing other than the exchange of goods and services for money, led by electronic mea]]></description>
<content:encoded><![CDATA[<p><a href="http://ferventsoft.com/ecommerce-software-solution.html">E-commerce</a> is nothing other than the exchange of goods and services for money, led by electronic means as the Internet. Customers opt for online stores, as they may be more convenient than bricks and mortar stores. However, one of the greatest challenges to conduct an online activity is to ensure that customers' confidence customers site. To be a good online store, customers must inspire confidence in your customers..</p>
<p><b><a href="http://ferventsoft.com/">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[E-Commerce Solutions Means]]></title>
<link>http://seoferventsoft.wordpress.com/?p=64</link>
<pubDate>Wed, 14 May 2008 10:52:52 +0000</pubDate>
<dc:creator>seoferventsoft</dc:creator>
<guid>http://seoferventsoft.wordpress.com/?p=64</guid>
<description><![CDATA[E-commerce is nothing other than the exchange of goods and services for money, led by electronic mea]]></description>
<content:encoded><![CDATA[<p><a href="http://ferventsoft.com/ecommerce-software-solution.html">E-commerce</a> is nothing other than the exchange of goods and services for money, led by electronic means as the Internet. Customers opt for online stores, as they may be more convenient than bricks and mortar stores. However, one of the greatest challenges to conduct an online activity is to ensure that customers' confidence customers site. To be a good online store, customers must inspire confidence in your customers..</p>
<p><b><a href="http://ferventsoft.com/">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Flash Web Design]]></title>
<link>http://qualityfervent.wordpress.com/?p=60</link>
<pubDate>Wed, 14 May 2008 10:26:10 +0000</pubDate>
<dc:creator>qualityfervent</dc:creator>
<guid>http://qualityfervent.wordpress.com/?p=60</guid>
<description><![CDATA[Why are Flash-based websites so striking? Because Flash technologies provide movement, sound and int]]></description>
<content:encoded><![CDATA[<p>Why are Flash-based websites so striking? Because Flash technologies provide movement, sound and interaction with users, giving them a fun and enjoyable online experience. These websites are recommended for giving presence to your company on the Internet. They are intended for those companies that want to draw their target's attention by an aesthetically appealing design.</p>
<p>It's proven that <a href="http://economicwebsite.com/websitedesign.php">websites designed</a> using Flash technologies are much more attractive than static HTML websites. And an eye-catching website is always more profitable than one that is not. As long as your website is developed by a professional graphic design company, you can rest assured that it will be a success. Log team comprises professional graphic designers and trained web developers with the necessary skills to understand your and your target's needs.</p>
<p><b><a href="http://economicwebsite.com/">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Flash Web Design]]></title>
<link>http://aryankunal.wordpress.com/?p=59</link>
<pubDate>Wed, 14 May 2008 10:24:17 +0000</pubDate>
<dc:creator>aryankunal</dc:creator>
<guid>http://aryankunal.wordpress.com/?p=59</guid>
<description><![CDATA[Why are Flash-based websites so striking? Because Flash technologies provide movement, sound and int]]></description>
<content:encoded><![CDATA[<p>Why are Flash-based websites so striking? Because Flash technologies provide movement, sound and interaction with users, giving them a fun and enjoyable online experience. These websites are recommended for giving presence to your company on the Internet. They are intended for those companies that want to draw their target's attention by an aesthetically appealing design.</p>
<p>It's proven that <a href="http://economicwebsite.com/websitedesign.php">websites designed</a> using Flash technologies are much more attractive than static HTML websites. And an eye-catching website is always more profitable than one that is not. As long as your website is developed by a professional graphic design company, you can rest assured that it will be a success. Log team comprises professional graphic designers and trained web developers with the necessary skills to understand your and your target's needs.</p>
<p><b><a href="http://economicwebsite.com/">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Flash Web Design]]></title>
<link>http://seoferventsoft.wordpress.com/?p=63</link>
<pubDate>Wed, 14 May 2008 10:20:39 +0000</pubDate>
<dc:creator>seoferventsoft</dc:creator>
<guid>http://seoferventsoft.wordpress.com/?p=63</guid>
<description><![CDATA[Why are Flash-based websites so striking? Because Flash technologies provide movement, sound and int]]></description>
<content:encoded><![CDATA[<p>Why are Flash-based websites so striking? Because Flash technologies provide movement, sound and interaction with users, giving them a fun and enjoyable online experience. These websites are recommended for giving presence to your company on the Internet. They are intended for those companies that want to draw their target's attention by an aesthetically appealing design.</p>
<p>It's proven that <a href="http://economicwebsite.com/websitedesign.php">websites designed</a> using Flash technologies are much more attractive than static HTML websites. And an eye-catching website is always more profitable than one that is not. As long as your website is developed by a professional graphic design company, you can rest assured that it will be a success. Log team comprises professional graphic designers and trained web developers with the necessary skills to understand your and your target's needs.</p>
<p><b><a href="http://economicwebsite.com/">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Computer Services]]></title>
<link>http://badboyscomputers.wordpress.com/?p=44</link>
<pubDate>Wed, 14 May 2008 03:55:52 +0000</pubDate>
<dc:creator>badboyscomputers</dc:creator>
<guid>http://badboyscomputers.wordpress.com/?p=44</guid>
<description><![CDATA[Hewlett-Packard: The Advisers
Hewlett-Packard has struck a $13.25 billion deal for Electronic Data S]]></description>
<content:encoded><![CDATA[<h2 class="post-title">Hewlett-Packard: The Advisers</h2>
<p>Hewlett-Packard has struck a $13.25 billion deal for Electronic Data Systems Inc. And — shocker! — neither Goldman Sachs or Morgan Stanley is on the deal.</p>
<p>Instead, Citigroup and Evercore Partners advised Electronic Data on the deal, while J.P. Morgan Chase and Lehman Brothers advised Hewlett-Packard.</p>
<p>And, since there hasn’t been a really juicy technology deal in quite a while — read all the details about this one here — Deal Journal is mentioning the bankers by name. Evercore’s Roger Altman, William O. Hiltz and Naveen Nataraj worked with Citigroup’s Ray McGuire, Ben Druskin, Michael Tedesco, Ed Wehle, Brian Mass and Melissa Knox. (<strong>Deal Journal Trivia:</strong> Druskin was just promoted last week to co-head Citigroup’s global technology, media and telecom advisory group.) J.P. Morgan’s team included Doug Braunstein, Karl Will, Will Thiessen, Mark Zanoli and Curt Sigfstead. At Cleary Gottlieb Steen &#38; Hamilton, Hewlett-Packard’s legal adviser, the lead partners were Christopher Austin, Benet O’Reilly and Victor Lewkow.</p>
<p><a href="http://blogs.wsj.com/deals/?s=druskin&#38;x=0&#38;y=0&#38;mod=WSJBlog"><em><strong>Read Full News</strong></em></a></p>
<p><em>Resources for</em></p>
<p><a href="http://badboyscomputers.com/"><em><strong>Bad Boys Computers</strong></em></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Web Services]]></title>
<link>http://badboyscomputers.wordpress.com/?p=43</link>
<pubDate>Tue, 13 May 2008 06:31:46 +0000</pubDate>
<dc:creator>badboyscomputers</dc:creator>
<guid>http://badboyscomputers.wordpress.com/?p=43</guid>
<description><![CDATA[
Web start-up unveils semantic Wikipedia search tool
SAN FRANCISCO (Reuters) - Powerset on Sunday un]]></description>
<content:encoded><![CDATA[<h1></h1>
<p class="MsoNormal" style="line-height:normal;"><strong><span style="font-size:18pt;">Web start-up unveils semantic Wikipedia search tool</span></strong></p>
<p>SAN FRANCISCO (Reuters) - Powerset on Sunday unveiled tools for searching Wikipedia that use conversational phrasing instead of keywords, marking the first step of its challenge to established Web search services such as Google.</p>
<p><img src="http://www.reuters.com/resources/r/?m=02&#38;d=20080512&#38;t=2&#38;i=4222261&#38;w=192&#38;r=2008-05-12T144816Z_01_L12448542_RTRUKOP_0_PICTURE0" alt="" width="192" height="138" /></p>
<p>Powerset's technology breaks down the meaning of words and sentences into related concepts, freeing users from always needing to type the exact words they want to find.</p>
<p>The closely watched Silicon Valley start-up is offering a way of searching millions of entries in Wikipedia's online encyclopedia, helping users find detailed answers to questions rather than isolated links that require further research.</p>
<p><a href="http://www.reuters.com/article/technologyNews/idUSL1244854220080512"><em><strong>Read Full News</strong></em></a></p>
<p><em>Resources for</em></p>
<p><a href="http://badboyscomputers.com/"><em><strong>Bad Boys Computers</strong></em></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Steps While Designing]]></title>
<link>http://qualityfervent.wordpress.com/?p=59</link>
<pubDate>Tue, 13 May 2008 06:25:27 +0000</pubDate>
<dc:creator>qualityfervent</dc:creator>
<guid>http://qualityfervent.wordpress.com/?p=59</guid>
<description><![CDATA[First, you must think about why your business needs a website and the audience it will target. Deter]]></description>
<content:encoded><![CDATA[<p>First, you must think about why your business needs a website and the audience it will target. Determine what topics or information your website should contain. This could be product information, contact information, special pricing or pages of photographs. What will appeal to your target audience? Set the goals of your website. Do you wish to sell products online and/or offer customer support? Or maybe you may want to display your products and/or services? Take a look at what resources you and/or your staff can devote to your website. You may want to assign a Webmaster or Webmaster's assistant to help oversee the project. This should be someone within your company who can work to gather information and ideas, not only at the beginning of the project but on an ongoing basis. They do not need not know the Internet or <a href="http://ferventsoft.com/india-web-site-design.html">web design</a> but should know your business.</p>
<p><b><a href="http://ferventsoft.com/">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Benefits of eCommerce]]></title>
<link>http://qualityfervent.wordpress.com/?p=58</link>
<pubDate>Tue, 13 May 2008 06:24:32 +0000</pubDate>
<dc:creator>qualityfervent</dc:creator>
<guid>http://qualityfervent.wordpress.com/?p=58</guid>
<description><![CDATA[1.	Increase sales - this is the first thing that people consider 
2.	When dealing w e-commerce 
3.	D]]></description>
<content:encoded><![CDATA[<p>1.	Increase sales - this is the first thing that people consider </p>
<p>2.	When dealing w e-commerce </p>
<p>3.	Decreasing costs </p>
<p>4.	Increase profits </p>
<p>5.	Understanding that profits is not the same as sales </p>
<p>6.	Expands the size of the market from regional to national or national to international </p>
<p>7.	Contract the market</p>
<p> 8.	Reach a narrow market </p>
<p>9.	Target market segmentation allows you to focus on a more select group of customers </p>
<p>10.	And therefore have a competitive advantages in satisfying them </p>
<p><b><a href="http://economicwebsite.com/index.php">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Benefits of eCommerce]]></title>
<link>http://aryankunal.wordpress.com/?p=58</link>
<pubDate>Tue, 13 May 2008 06:22:32 +0000</pubDate>
<dc:creator>aryankunal</dc:creator>
<guid>http://aryankunal.wordpress.com/?p=58</guid>
<description><![CDATA[1.	Increase sales - this is the first thing that people consider 
2.	When dealing w e-commerce 
3.	D]]></description>
<content:encoded><![CDATA[<p>1.	Increase sales - this is the first thing that people consider </p>
<p>2.	When dealing w e-commerce </p>
<p>3.	Decreasing costs </p>
<p>4.	Increase profits </p>
<p>5.	Understanding that profits is not the same as sales </p>
<p>6.	Expands the size of the market from regional to national or national to international </p>
<p>7.	Contract the market</p>
<p> 8.	Reach a narrow market </p>
<p>9.	Target market segmentation allows you to focus on a more select group of customers </p>
<p>10.	And therefore have a competitive advantages in satisfying them </p>
<p><b><a href="http://economicwebsite.com/index.php">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Steps While Designing]]></title>
<link>http://aryankunal.wordpress.com/?p=57</link>
<pubDate>Tue, 13 May 2008 06:21:43 +0000</pubDate>
<dc:creator>aryankunal</dc:creator>
<guid>http://aryankunal.wordpress.com/?p=57</guid>
<description><![CDATA[First, you must think about why your business needs a website and the audience it will target. Deter]]></description>
<content:encoded><![CDATA[<p>First, you must think about why your business needs a website and the audience it will target. Determine what topics or information your website should contain. This could be product information, contact information, special pricing or pages of photographs. What will appeal to your target audience? Set the goals of your website. Do you wish to sell products online and/or offer customer support? Or maybe you may want to display your products and/or services? Take a look at what resources you and/or your staff can devote to your website. You may want to assign a Webmaster or Webmaster's assistant to help oversee the project. This should be someone within your company who can work to gather information and ideas, not only at the beginning of the project but on an ongoing basis. They do not need not know the Internet or <a href="http://ferventsoft.com/india-web-site-design.html">web design</a> but should know your business.</p>
<p><b><a href="http://ferventsoft.com/">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Steps While Designing]]></title>
<link>http://seoferventsoft.wordpress.com/?p=62</link>
<pubDate>Tue, 13 May 2008 06:19:16 +0000</pubDate>
<dc:creator>seoferventsoft</dc:creator>
<guid>http://seoferventsoft.wordpress.com/?p=62</guid>
<description><![CDATA[First, you must think about why your business needs a website and the audience it will target. Deter]]></description>
<content:encoded><![CDATA[<p>First, you must think about why your business needs a website and the audience it will target. Determine what topics or information your website should contain. This could be product information, contact information, special pricing or pages of photographs. What will appeal to your target audience? Set the goals of your website. Do you wish to sell products online and/or offer customer support? Or maybe you may want to display your products and/or services? Take a look at what resources you and/or your staff can devote to your website. You may want to assign a Webmaster or Webmaster's assistant to help oversee the project. This should be someone within your company who can work to gather information and ideas, not only at the beginning of the project but on an ongoing basis. They do not need not know the Internet or <a href="http://ferventsoft.com/india-web-site-design.html">web design</a> but should know your business.</p>
<p><b><a href="http://ferventsoft.com/">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Benefits of eCommerce]]></title>
<link>http://seoferventsoft.wordpress.com/?p=61</link>
<pubDate>Tue, 13 May 2008 06:17:41 +0000</pubDate>
<dc:creator>seoferventsoft</dc:creator>
<guid>http://seoferventsoft.wordpress.com/?p=61</guid>
<description><![CDATA[1.	Increase sales - this is the first thing that people consider 
2.	When dealing w e-commerce 
3.	D]]></description>
<content:encoded><![CDATA[<p>1.	Increase sales - this is the first thing that people consider </p>
<p>2.	When dealing w e-commerce </p>
<p>3.	Decreasing costs </p>
<p>4.	Increase profits </p>
<p>5.	Understanding that profits is not the same as sales </p>
<p>6.	Expands the size of the market from regional to national or national to international </p>
<p>7.	Contract the market</p>
<p> 8.	Reach a narrow market </p>
<p>9.	Target market segmentation allows you to focus on a more select group of customers </p>
<p>10.	And therefore have a competitive advantages in satisfying them </p>
<p><b><a href="http://economicwebsite.com/index.php">By Web Services India</a></b></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Writing Simple phpt Test Scripts For PHP Web Services]]></title>
<link>http://dushshantha.wordpress.com/2008/05/13/writing-simple-phpt-test-scripts-for-php-web-services/</link>
<pubDate>Tue, 13 May 2008 04:50:07 +0000</pubDate>
<dc:creator>dushshantha</dc:creator>
<guid>http://dushshantha.wordpress.com/2008/05/13/writing-simple-phpt-test-scripts-for-php-web-services/</guid>
<description><![CDATA[When you do serious business online with WSO2 WSF/PHP Web services, its really important to test you]]></description>
<content:encoded><![CDATA[<p>When you do serious business online with <a href="http://wso2.org/projects/wsf/php">WSO2 WSF/PHP</a> Web services, its really important to test your Web service thoroughly to make sure that it does exactly what you expect it to do - and does only that! You always need to test all the success cases as well as the failures too. When you make an improvement to your Web service, you always have to make sure that the existing functionality is not broken by with the new changes introduced. The best way to achieve this goal is to maintain a set of carefully designed test cases that are organized in a way that you can very easily run them and see their results. Also you need to be able to add new test cases very easily. But what if you can run the entire set of test cases from a single command? And what if you can, obtain a short and sweet log file with details of passed and failed test cases? (<a href="http://wso2.org/library/3579">more...</a>)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Network Services]]></title>
<link>http://badboyscomputers.wordpress.com/?p=42</link>
<pubDate>Mon, 12 May 2008 17:46:18 +0000</pubDate>
<dc:creator>badboyscomputers</dc:creator>
<guid>http://badboyscomputers.wordpress.com/?p=42</guid>
<description><![CDATA[
Book review: Keeping door open for Internet innovation
If asked to pick a favorite piece of consume]]></description>
<content:encoded><![CDATA[<h1></h1>
<h1><span style="font-size:16pt;">Book review: Keeping door open for Internet innovation</span></h1>
<p>If asked to pick a favorite piece of consumer technology, who wouldn't choose an iPod over  a personal computer?</p>
<p>It does the thing it is designed to do -- play digital music -- very well. It's not like the PC, which may be endlessly adaptable but is not optimized for any single use, is difficult for the nontechnical person to control, and may be exposed to spam, viruses and cyber-criminals.</p>
<p>That choice, according to Jonathan Zittrain, professor of Internet governance and regulation at Oxford University, could be fateful for the future of the Internet and, ultimately, the open society it helps sustain.</p>
<p>Our iPods -- and other devices such as PlayStations, BlackBerrys and TiVo digital video recorders -- are all well and good, but if that were all we had to connect to the Internet, the world would be a poorer place.</p>
<p>In "The Future of the Internet -- and How to Stop It," that is precisely the future that Zittrain sees, although he prescribes a set of somewhat idealistic-sounding remedies to prevent it from coming to pass.</p>
<p><a href="http://www.latimes.com/business/la-fi-books12-2008may12,0,5523274.story"><em><strong>Read Full News</strong></em></a></p>
<p><em>Resources for</em></p>
<p><a href="http://badboyscomputers.com/"><em><strong>Bad Boys Computers</strong></em></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[A WS-Addressing namespace issue]]></title>
<link>http://0signal.wordpress.com/?p=30</link>
<pubDate>Mon, 12 May 2008 15:04:21 +0000</pubDate>
<dc:creator>robinseybold</dc:creator>
<guid>http://0signal.wordpress.com/?p=30</guid>
<description><![CDATA[At a customer&#8217;s integration solution, we&#8217;re trying to make a SOAP-request from a message]]></description>
<content:encoded><![CDATA[<p>At a customer's integration solution, we're trying to make a SOAP-request from a message flow. The web service has been created using <a title="MSDN" href="http://msdn.microsoft.com/en-us/library/ms977317.aspx">WSE 3.0</a> (Web Service Enhancements) and requires <a title="WS-Addressing" href="http://en.wikipedia.org/wiki/WS-Addressing">WS-Addressing</a>. We added a web service invoking sub flow by creating a project using the WSDL. Then we created a proper policy set, a UserName token and a matching binding. Using the <a href="http://ws.apache.org/axis/java/user-guide.html#AppendixUsingTheAxisTCPMonitorTcpmon">Axis TCP Monitor</a> we were able to get the input and output to and from the request.</p>
<p>Even though everything seemed to fit, we got an error message back from the service:</p>
<p><a href="http://0signal.wordpress.com/files/2008/05/code.png"><img src="http://0signal.wordpress.com/files/2008/05/code.png" alt="Fault" width="500" height="40" /></a></p>
<p>After digging around on a number of blogs, forums and Information Centers, we found the issue: The WS-Addressing namespace. WSE 3.0 sets the WSA-ns to:<br />
<code>http://schemas.xmlsoap.org/ws/2004/08/addressing</code></p>
<p>while WMB 6.1 uses:<br />
<code>http://www.w3.org/2005/08/addressing</code></p>
<p>Since the WS-Addressing feature cannot be configured we decided to contact the developer of the web service to see if he can change the namespace (or perhaps remove WSA altogether). As a last resort we'd probably have to download <a title="Apache Axis" href="http://ws.apache.org/axis/">Axis</a> (which is used by WMB when communicating with web services) and change the namespace constant. An update is soon to come..</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Mocking Web Services in InfoQ]]></title>
<link>http://upulgodage.wordpress.com/?p=21</link>
<pubDate>Mon, 12 May 2008 14:04:19 +0000</pubDate>
<dc:creator>upulgodage</dc:creator>
<guid>http://upulgodage.wordpress.com/?p=21</guid>
<description><![CDATA[Writing on the recent happenings in the Web services testing approaches, Boris Lublinsky has reviewe]]></description>
<content:encoded><![CDATA[<p>Writing on the recent happenings in the Web services testing approaches, Boris Lublinsky has reviewed my tutorial in an <a title="Mocking Web Services" href="http://www.infoq.com/news/2008/05/WSMock">InfoQ post</a>. You can read my tutorial, <a title="Mock Web services with Apache Synapse to develop and test Web services" href="http://www.ibm.com/developerworks/edu/ws-dw-ws-synapse.html">Mock Web services with Apache Synapse to develop and test Web services</a>, in the IBM developerWorks.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Computer Services]]></title>
<link>http://badboyscomputers.wordpress.com/?p=41</link>
<pubDate>Mon, 12 May 2008 11:32:00 +0000</pubDate>
<dc:creator>badboyscomputers</dc:creator>
<guid>http://badboyscomputers.wordpress.com/?p=41</guid>
<description><![CDATA[Power-hungry IT firms change focus
Yet the information and communications technology industry - or I]]></description>
<content:encoded><![CDATA[<h1>Power-hungry IT firms change focus</h1>
<p>Yet the information and communications technology industry - or ICT - is responsible for the same amount of carbon dioxide emissions as those from planes.</p>
<p>Each year, both sectors emit 2% of total CO2 emissions, though there are signs that the ICT industry is changing.</p>
<p>"In fact, there has been a radical shift in the industry," insists Randy Allen, a vice-president at computer chip firm AMD.</p>
<p><a href="http://news.bbc.co.uk/1/hi/business/7307661.stm"><em><strong>Read Full News</strong></em></a></p>
<p><em>Resources for</em></p>
<p><a href="http://badboyscomputers.com/"><em><strong>Bad Boys Computers</strong></em></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Web Design]]></title>
<link>http://seoferventsoft.wordpress.com/?p=60</link>
<pubDate>Mon, 12 May 2008 10:57:11 +0000</pubDate>
<dc:creator>seoferventsoft</dc:creator>
<guid>http://seoferventsoft.wordpress.com/?p=60</guid>
<description><![CDATA[Web design is a process of conceptualization, planning, modeling, and execution of electronic media ]]></description>
<content:encoded><![CDATA[<p class="style1"><a href="http://www.ferventsoft.com/india-web-site-design.html">Web design</a> is a process of conceptualization, planning, modeling, and execution of electronic media content delivery via Internet in the form of technologies (such as markup languages) suitable for interpretation and display by a web browser or other web-based graphical user interfaces (GUIs).</p>
<p class="style1">The intent of web design is to create a web site (a collection of electronic files residing on one or more web servers) that presents content (including interactive features or interfaces) to the end user in the form of web pages once requested. Such elements as text, forms, and bit-mapped images (GIFs, JPEGs, PNGs) can be placed on the page using HTML, XHTML, or XML tags. Displaying more complex media (vector graphics, animations, videos, sounds) requires plug-ins such as Flash, QuickTime, Java run-time environment, etc. Plug-ins are also embedded into web pages by using HTML or XHTML tags.</p>
<p><b><a href="http://www.ferventsoft.com/">By Web Services India</a></b></p>
]]></content:encoded>
</item>

</channel>
</rss>
