Thursday, April 30, 2009

Cloud computing mechanics

JAVAWORLD'S ENTERPRISE JAVA ALERT
Solutions for Java developers
04/30/09

By Guerry Semones

Platform-oriented approaches to the cloud, including
platform-as-a-service (PAAS) and cloud application platforms,
run atop an underlying cloud infrastructure. Cloud platforms
abstract applications away from the cloud infrastructure and
provide supporting services and functionality to those
applications. The distinction between cloud infrastructure and
cloud platforms is a critical one for architects and developers
to understand.

Salesforce's Force.com and Google's App Engine (GAE) both typify
the PAAS approach. Google App Engine users are solely concerned
about the application they are creating to run on the platform.
To deliver an application, they simply package it and deploy it
to GAE The deployment happens in a single step and the end user
does not know whether the application is being run on one
virtual machine or 10 at any particular moment. In addition, the
application can take advantage of special services provided by
the GAE platform, such as authentication or data access.

Cloud application platforms, like their PAAS cousins, allow the
developer to focus solely on the application deployed on the
platform. Likewise, cloud application platforms offer the same
or similar benefits described briefly for GAE above, such as
virtualizing your application across the infrastructure,
simplifying deployment, or providing special services. A key
difference between some cloud application platforms and their
PAAS cousins is portability across cloud infrastructures. For
example, you can only deploy GAE applications on Google's
services, whereas cloud application platforms like Appistry
CloudIQ Platform allow for in-house private cloud deployment, as
well as deployment on public cloud infrastructures. Among other
differences, PAAS solutions often restrict tool choices, whereas
typical cloud application platforms allow you flexibility in the
choice of implementation languages, IDEs, and tools.

Ideally, you should not have to care about the underlying cloud
infrastructure that runs your code. Likewise, you should not be
concerned with writing application code to implement
scalability, reliability, and other cloud and distributed
computing features that a cloud platform could provide. Your
focus should be on the business logic that brings your added
value, while the cloud virtualizes your application, manages its
lifecycle, and leverages your application over the underlying
cloud infrastructure. Cloud platforms take your code -- which is
ideally atomic, stateless (where possible), idempotent, and
parallelizable -- and does the heavy distributed computing and
multicore lifting, giving you benefits that are otherwise hard
to achieve on your own ...

Read more: Scaling out, scaling up, and scaling down gracefully
http://www.networkworld.com/nljavaworldsente194287

Related:

1. Multicore-friendly and cloud-ready code, Part 1: Design
principles http://www.networkworld.com/nljavaworldsente184954

2. Private clouds: A first step in cloud computing
http://www.networkworld.com/nljavaworldsente194288

3. Spring Web Flow 2: A boon to JSF developers
http://www.networkworld.com/nljavaworldsente169325

4. Todd Hoff: High scalability and Java
http://www.javaworld.com/podcasts/jtech/2008/112608jtech.html

New! Java Tip: Extending declarative caching services for Spring
http://www.javaworld.com/community/node/2821

Spring Modules offer an easy way to add and tune caching
functionality without touching an application's code, but the
approach often falls short when scaled in real-world scenarios.
This tip explains real-world problems faced when using Spring
Modules for declarative caching and extends the existing
declarative model to address them.

Related:

1. Peruse the Java Tips Archive - 143 tips in all!
http://www.javaworld.com/columns/jw-tips-index.html

2. Subscribe to the Java Tips Blog feed
http://www.javaworld.com/community/blog/21645/feed

3. Got a tip? Submit it here mailto:jwedit@javaworld.com

Hot discussions -- let's hear it in JW Blogs:

Is Spring MVC relevant in 2009?
http://www.javaworld.com/community/?q=node/2849

Does JavaFX have a future with Oracle?
http://www.javaworld.com/community/node/2859

Convincing the boss to pay for your training - do's and don'ts
http://www.javaworld.com/community/node/2836

New Podcast! Make way for Jetty: Coming of age at 12

Jetty is a lightweight Java and Web application server that has
been making waves since turning 12 in the first months of 2009.
In this talk with Andrew Glover, Jetty engineers Greg Wilkins
and Jan Bartel discuss core aspects of Jetty that have made it a
popular choice for Web application deployment in Web 2.0
environments. Topics include Jetty's early adoption of
Comet-style "server push" interactions, its use in Android and
other mobile application environments, its lightweight,
embeddable component model, and its recent adoption as an
Eclipse Foundation project. Webtide CEO Adam Lieber joins in to
discuss the open source business strategy behind Jetty and other
Webtide initiatives.

Listen up: Greg Wilkins and Jan Bartel: Why Jetty is succeeding
now http://www.networkworld.com/nljavaworldsente193845 You've hit the tip of the iceberg: Read more in JW Blogs
http://www.javaworld.com/community/

_______________________________________________________________
This newsletter is sponsored by Dell
Liberation by Automation

Dell and Microsoft provide solutions that can dramatically
improve PC and software deployments through better tools and
automated processes so your IT staff can have more time to focus
on more valuable tasks.
http://adserver.fattail.com/redir/redirect.asp?CID=298816
_______________________________________________________________

Metzler: 2009 Handbook of Application Delivery.
Successful IT organizations must know how to make the right application delivery decisions in these tough economic times. This handbook authored by WAN expert Jim Metzler will help guide you.
http://www.nww.com/rpgx.jsp?c=XU1PTA7015Z4343
_______________________________________________________________

This Newsletter Subscription Compliments of: Linuxworld.com http://www.linuxworld.com

ALSO FEATURED ON JAVAWORLD

Mastering Spring MVC
http://www.networkworld.com/nljavaworldsente193844
If you like the Spring Framework, you'll want to explore Spring
MVC for Web development. With Steven Haines as your guide, learn
where Spring MVC fits into the Java Web development landscape
(including a little bit of Java history), then quickly get up to
speed developing a Spring MVC application.
Steven Haines,April 2009

Java Tip: Extending declarative caching services for Spring
http://www.javaworld.com/community/node/2821
Spring Modules offer an easy way to add and tune caching
functionality without touching an application's code, but the
approach often falls short when scaled in real-world scenarios.
This tip explains real-world problems faced when using Spring
Modules for declarative caching and extends the existing
declarative model to address them.
Sameer Padwal, April 2009

Lean service architectures with Java EE 6
http://www.networkworld.com/nljavaworldsente191680
Thanks to Java EE 6's simplified development model, a few
interfaces and annotated classes are all you need to implement
the facade, the service, and the domain structure that
constitute a lean service-oriented architecture. Surprised? Read
on.
Adam Bien,April 2009

Writing good unit tests, Part 2: Follow your nose
http://www.networkworld.com/nljavaworldsente191096
Klaus Berg continues his investigation of the tools and best
practices that facilitate programming with GUTs. Get tips for
writing cleaner, more efficient assertions, handling checked and
unchecked exceptions, and knowing when and how to refactor your
test code. Examples are based on JUnit 3 and 4, TestNG, and
Hamcrest.
Klaus P. Berg,April 2009

Jump into JavaFX, Part 4: The advanced APIs
http://www.networkworld.com/nljavaworldsente190628
Jeff Friesen completes his comprehensive tour of the JavaFX APIs
with a look at how JavaFX handles media, GUIs, and special
effects. You'll also try your hand at building and deploying a
stock-ticker application to Google Chrome.
Jeff Friesen,April 2009

REST for Java developers, Part 4: The future is RESTful
http://www.networkworld.com/nljavaworldsente190066
Find out why REST interfaces are foundational for emerging
architectures such as the Semantic Web. Brian Sletten takes a
big-picture view of REST, now and in the future, in this final
article in his series.

_______________________________________________________________
This newsletter is sponsored by Dell
Liberation by Automation

Dell and Microsoft provide solutions that can dramatically
improve PC and software deployments through better tools and
automated processes so your IT staff can have more time to focus
on more valuable tasks.
http://adserver.fattail.com/redir/redirect.asp?CID=298816
_______________________________________________________________

UPCOMING ON JAVAWORLD

-Know your Oracle application server
-Domain-driven development with Java EE
-Tapestry 5: Day one
-Clojure: Challenge your Java expectations
-The Ajax developer's toolkit: An overview
-Open source Java projects: JCC

Podcasts:

-Howard Lewis Ship: What's new in Tapestry 5
-Grant Ingersol: Lucene and Solr

JavaWorld's Daily Brew - Starting conversations in the Java
developer community
http://www.javaworld.com/community
_______________________________________________________________

BONUS FEATURE


Metzler: 2009 Handbook of Application Delivery. Successful IT
organizations must know how to make the right application delivery
decisions in these tough economic times. This handbook authored by
WAN expert Jim Metzler will help guide you.
http://www.nww.com/rpgx.jsp?c=XU1PTAZ4343


_______________________________________________________________

May we send you a free print subscription to Network World?
You've got the technology snapshot of your choice delivered at
your fingertips each day. Now, extend your knowledge by
receiving 50 FREE issues to our print publication. Apply today
at http://www.subscribenw.com/nl2

International subscribers click here:
http://nww1.com/go/circ_promo.html
_______________________________________________________________

SUBSCRIPTION SERVICES

To make newsletter subscription changes or cancellation, please
go to:
http://www.subscribenw.com/nl/login.jsp

To change your e-mail address, go to:
http://www.subscribenw.com/nl/eclogin.jsp

Subscription questions? Contact Customer Service by replying to
this message.

This message was sent to: athenssuthakar.javaupdates@blogger.com
Please use this address when modifying your subscription.
_______________________________________________________________

For advertising information, write Susan Cardoza, Associate
Publisher Online, at: mailto:sponsorships@nwfusion.com
_______________________________________________________________

JavaWorld is a trademark or registered trademark of Sun
Microsystems, Inc. in the United States and other countries, and
is used under license by International Data Group, Inc. All
other product names and trademarks used are the trademarks of
their respective owners.

Copyright 2009 JavaWorld.
http://www.javaworld.com

Whitepaper: Linux Adoption in a Global Recession

Whitepaper: The Business Value of Virtualization
Whitepaper: Protecting Against the New Wave of Malware
Whitepaper: Server Virtualization--General Sizing Best Practices and Guidelines
Whitepaper: Simplify IT with JBoss and Dell
Whitepaper: Streamline Backup and Recovery with LiteSpeed for SQL Server and LiteSpeed Engine for Oracle
eBook: Guide to e-Discovery and
E-Mail Retention

Sponsored by Symantec
Calls for increased regulation in the wake of economic disaster will have a direct impact on storage and e-discovery efforts. Regulations to improve corporate governance and transparency will likely be at the forefront of future regulatory efforts, which will have consequences for e-mail storage and management. >>Download this Internet.com eBook to learn more!

IDC Whitepaper: Linux Adoption in a Global Recession
Sponsored by Novell
IDC research finds that Linux users are clearly satisfied about their choice to deploy Linux, and during trying economic times, the potential for those same customers to ramp up their deployment of Linux is strong. >>Learn more!
The Business Value of Virtualization
Sponsored by HP
When combined with the quickly maturing x86 hypervisor technologies available from a variety of solution providers, the synergy of blade architectures and virtualization offers customers the ability to dramatically increase utilization of their server investments, boost uptime, provide a more resilient and available infrastructure, and roll out new infrastructure and services more quickly. >Read more
Protecting Against the New Wave of Malware
Sponsored by Sunbelt
This Osterman Research white paper examines why older, traditional antivirus approaches don't work and why a new approach to endpoint security is required to better protect your users, your data and your long-term viability as a company from malicious threats. >>
Server Virtualization--General Sizing Best Practices and Guidelines
Sponsored by Citrix and HP
This whitepaper provides general sizing best practices to consider when planning your virtualization deployment with HP ProLiant servers and Citrix XenServer. >>Learn more here.
Simplify IT with JBoss and Dell
Sponsored by Red Hat
Combining JBoss and Dell lets you simplify IT by improving application performance, lowering security risks, and easing operational complexity. The JBoss/Dell Interactive Inventory Management System demonstrates the ease of building applications on the JBoss Enterprise Application Platform and the Dell PowerEdge blade servers. >>Learn more.
Streamline Backup and Recovery with LiteSpeed for SQL Server and LiteSpeed Engine for Oracle
Sponsored by Quest Software
In today's economy, you must manage your growing Oracle and SQL Server databases at or under budget, without expanding resources. In this technical brief, see how to develop and streamline your backup and recovery strategy while maximizing existing resources, without straining the budget. >>
Internet.com is a WebMediaBrands Inc. property
23 Old Kings Highway South
Darien, CT 06820
You are receiving this email because you have registered for a tutorial, download, whitepaper, webcast, or have elected to receive information or offers from Internet.com. If you wish to be removed from future Internet.com Tech Alerts, please go to: http://e-newsletters.internet.com/juptech_unsub.html

Tuesday, April 28, 2009

Mastering Spring MVC

JAVAWORLD'S ENTERPRISE JAVA ALERT
Solutions for Java developers
04/28/09

By Steven Haines

This brief history begins with Java's entry into Web application
development: the Servlet API
http://www.networkworld.com/nljavaworldsente183218 , introduced
in 1997. Before then, developing dynamic Web applications with
disparate APIs and programming models proved to be challenging.
(I'll resist the urge to recap the old days of CGI
http://www.javaworld.com/jw-01-1997/jw-01-cgiscripts.html , the
futile battle between Netscape Server plug-ins and ISAPI
plug-ins, and all the homegrown APIs.) The Servlet API provided
a standard on which vendors could build Web containers and
developers could implement a simple programming model for
constructing Web pages.

With servlets, dynamically constructing HTML documents became
easy. But because the documents were constructed inside Java
source code, maintenance was challenging. For example, changing
a font or moving a piece of content within a page required you
to update the HTML inside the servlet code and then recompile
and redeploy it to the container.

Sun resolved this issue in 1999 by introducing JavaServer Pages
http://www.networkworld.com/nljavaworldsente193842 (JSP).
Rather than implementing presentation code inside servlets, JSPs
lets you build HTML-like documents that interweave snippets of
Java code to support dynamic content. At runtime, JSPs are
translated to servlet source code, compiled, and then deployed
to a Web container dynamically. If you change any part of the
JSP, the container detects the change, recompiles the page, and
redeploys it. This architecture was calledpage-drivenor Model 1.

In page-driven applications, each page not only contains the
business logic required to generate the dynamic content, but
also the control logic to determine application flow. Control
logic became difficult to maintain because there was no central
location or design paradigm to help you understand how a user
passed from one page to the next. And as business requirements
evolved to include features like authentication and
authorization, page code became convoluted with additional logic
that usually had to be duplicated across pages, even if it was
irrelevant to the page being constructed. On a site with 1,000
pages, all with authorization mechanisms, who wants to update
all 1,000 pages when those authorization mechanisms change?

The solution was to separate programmatic responsibilities into
the technologies best suited for them. Servlets are great for
writing Java code, acting as a central point for managing
application flow and invoking business methods, but horrible at
presentation; JSPs are great at presentation but are a horrible
place to embed all of your business logic. Thus was born the
Model 2 architecture
http://www.networkworld.com/nljavaworldsente193843 , which
adheres to the MVC Smalltalk design pattern:

1. The model represents your data or the objects with which your
application is interacting.

2. The view is a visualization of your model.

3. The controller manages application flow and makes calls into
business objects.

Read more: Mastering Spring MVC - A hands-on tutorial
http://www.networkworld.com/nljavaworldsente193844

Related:

1. Spring Web Flow 2: A boon to JSF developers
http://www.networkworld.com/nljavaworldsente169325

2. Understanding JavaServer Pages Model 2 architecture
http://www.networkworld.com/nljavaworldsente193843

3. Discussion: Is Spring MVC worth attention in 2009?
http://www.javaworld.com/community/?q=node/2849

New! Java Tip: Extending declarative caching services for Spring
http://www.javaworld.com/community/node/2821

Spring Modules offer an easy way to add and tune caching
functionality without touching an application's code, but the
approach often falls short when scaled in real-world scenarios.
This tip explains real-world problems faced when using Spring
Modules for declarative caching and extends the existing
declarative model to address them.

Related:

1. Peruse the Java Tips Archive - 143 tips in all!
http://www.javaworld.com/columns/jw-tips-index.html

2. Subscribe to the Java Tips Blog feed
http://www.javaworld.com/community/blog/21645/feed

3. Got a tip? Submit it here mailto:jwedit@javaworld.com

New! Podcast: Make way for Jetty: Coming of age at 12
http://www.networkworld.com/nljavaworldsente193845

Jetty is a lightweight Java and Web application server that has
been making waves since turning 12 in the first months of 2009.
In this talk with Andrew Glover, Jetty engineers Greg Wilkins
and Jan Bartel discuss core aspects of Jetty that have made it a
popular choice for Web application deployment in Web 2.0
environments. Topics include Jetty's early adoption of
Comet-style "server push" interactions, its use in Android and
other mobile application environments, its lightweight,
embeddable component model, and its recent adoption as an
Eclipse Foundation project. Webtide CEO Adam Lieber joins in to
discuss the open source business strategy behind Jetty and other
Webtide initiatives.

Listen up: Greg Wilkins and Jan Bartel: Why Jetty is succeeding
now http://www.networkworld.com/nljavaworldsente193845

When the job changes but the programmer doesn't, Part 2: Saving
Frank's job http://www.javaworld.com/community/node/2796

By Esther Schindler

Last week, I described the plight of a maintenance programmer
whose company was moving to a new language and development
platform. Although Frank has worked for the medium-sized company
for some years, he's just not being productive. I promised the
rest of the story this week ....

Deadlock anti-patterns #3: Incremental locking
http://www.javaworld.com/community/node/2789

By Obi Ezechukwu

Tthe incremental locking anti-pattern is simple, well-known, and
well documented -- and is unfortunately still a frequent
mistake. Chances are that most developers who have had the
misfortune of debugging deadlocking code would have come across
this pattern at some point in their career ...You've hit the tip of the iceberg: Read more in JW Blogs
http://www.javaworld.com/community/

_______________________________________________________________
This newsletter is sponsored by Sun Microsystems
Java + You = Registration

Meet the most amazing experts at the 2009 JavaOne Conference.
June 2-5 in San Francisco, CA. Learn more.
http://adserver.fattail.com/redir/redirect.asp?CID=298628
_______________________________________________________________

Metzler: 2009 Handbook of Application Delivery.
Successful IT organizations must know how to make the right application delivery decisions in these tough economic times. This handbook authored by WAN expert Jim Metzler will help guide you.
http://www.nww.com/rpgx.jsp?c=XU1PTA7013Z4343
_______________________________________________________________

This Newsletter Subscription Compliments of: Linuxworld.com http://www.linuxworld.com

ALSO FEATURED ON JAVAWORLD

Java Tip: Extending declarative caching services for Spring
http://www.javaworld.com/community/node/2821
Spring Modules offer an easy way to add and tune caching
functionality without touching an application's code, but the
approach often falls short when scaled in real-world scenarios.
This tip explains real-world problems faced when using Spring
Modules for declarative caching and extends the existing
declarative model to address them.

Lean service architectures with Java EE 6
http://www.networkworld.com/nljavaworldsente191680
Thanks to Java EE 6's simplified development model, a few
interfaces and annotated classes are all you need to implement
the facade, the service, and the domain structure that
constitute a lean service-oriented architecture. Surprised? Read
on.

Writing good unit tests, Part 2: Follow your nose
http://www.networkworld.com/nljavaworldsente191096
Klaus Berg continues his investigation of the tools and best
practices that facilitate programming with GUTs. Get tips for
writing cleaner, more efficient assertions, handling checked and
unchecked exceptions, and knowing when and how to refactor your
test code. Examples are based on JUnit 3 and 4, TestNG, and
Hamcrest.

Jump into JavaFX, Part 4: The advanced APIs
http://www.networkworld.com/nljavaworldsente190628
Jeff Friesen completes his comprehensive tour of the JavaFX APIs
with a look at how JavaFX handles media, GUIs, and special
effects. You'll also try your hand at building and deploying a
stock-ticker application to Google Chrome.

REST for Java developers, Part 4: The future is RESTful
http://www.networkworld.com/nljavaworldsente190066
Find out why REST interfaces are foundational for emerging
architectures such as the Semantic Web. Brian Sletten takes a
big-picture view of REST, now and in the future, in this final
article in his series.

Understanding actor concurrency, Part 2: Actors on the JVM
http://www.networkworld.com/nljavaworldsente188943
Erlang isn't the only language for implementing actor
concurrency. Find out how actors work and see them implemented
in Scala's standard library, Groovy's GParallelizer, and the
Java libraries Kilim, ActorFoundry, Actors Guild, and Jetlang.

_______________________________________________________________
This newsletter is sponsored by Sun Microsystems
Java + You = Registration

Meet the most amazing experts at the 2009 JavaOne Conference.
June 2-5 in San Francisco, CA. Learn more.
http://adserver.fattail.com/redir/redirect.asp?CID=298628
_______________________________________________________________

UPCOMING ON JAVAWORLD

-Know your Oracle application server
-Cloud-ready, multicore-friendly code, Part 2
-Tapestry 5: Day one
-Clojure: Challenge your Java expectations
-The Ajax developer's toolkit: An overview
-Open source Java projects: JCC

Podcasts:

-Howard Lewis Ship: What's new in Tapestry 5
-Grant Ingersol: Lucene and Solr

JavaWorld's Daily Brew - Starting conversations in the Java
developer community
http://www.javaworld.com/community
_______________________________________________________________

BONUS FEATURE


Metzler: 2009 Handbook of Application Delivery. Successful IT
organizations must know how to make the right application delivery
decisions in these tough economic times. This handbook authored by
WAN expert Jim Metzler will help guide you.
http://www.nww.com/rpgx.jsp?c=XU1PTAZ4343


_______________________________________________________________

May we send you a free print subscription to Network World?
You've got the technology snapshot of your choice delivered at
your fingertips each day. Now, extend your knowledge by
receiving 50 FREE issues to our print publication. Apply today
at http://www.subscribenw.com/nl2

International subscribers click here:
http://nww1.com/go/circ_promo.html
_______________________________________________________________

SUBSCRIPTION SERVICES

To make newsletter subscription changes or cancellation, please
go to:
http://www.subscribenw.com/nl/login.jsp

To change your e-mail address, go to:
http://www.subscribenw.com/nl/eclogin.jsp

Subscription questions? Contact Customer Service by replying to
this message.

This message was sent to: athenssuthakar.javaupdates@blogger.com
Please use this address when modifying your subscription.
_______________________________________________________________

For advertising information, write Susan Cardoza, Associate
Publisher Online, at: mailto:sponsorships@nwfusion.com
_______________________________________________________________

JavaWorld is a trademark or registered trademark of Sun
Microsystems, Inc. in the United States and other countries, and
is used under license by International Data Group, Inc. All
other product names and trademarks used are the trademarks of
their respective owners.

Copyright 2009 JavaWorld.
http://www.javaworld.com

Whitepaper: Cyber Crime--Web Threats Defined

JupiterwebSpecial Offers
Featured Technical Whitepapers and Resources
Whitepaper: Cyber Crime--Web Threats Defined
Sponsored by Trend Micro
Web threats employ blended techniques, an explosion of variants, and targeted regional attacks often based on social engineering to defraud users. These threats often use multiple protocols, such as an e-mail that delivers a link to a dangerous Web site, using both the SMTP and HTTP protocols in the attack. Conventional means do not provide adequate protection from these threats.
>>Get more info here!
More Technical Whitepapers and Resources from Internet.com
 Whitepaper: JBoss and Dell Just Work- The Modular SOA Environment
Sponsored by Red Hat
The JBoss on Dell modular SOA environment solution demonstrates the development and integration of new applications into the IT environment while reducing the dependence on custom coding. This paper details how this solution was implemented and how JBoss on Dell as a platform offers tremendous flexibility and scalability. It also provides information on the use of JBoss Operations Network (JON) to perform application and service management. >>
 Whitepaper: Ten Errors to Avoid When Commissioning a Data Center
Sponsored by APC
Data center commissioning can deliver an unbiased evaluation of whether a newly constructed data center will be an operational success or a failure. Proper execution of the commissioning process is a critical step in determining how the data center operates as an integrated system. The documentation produced as a result of commissioning is also the single, most enduring value added deliverable in a data centers operational life. This paper outlines the ten most common errors that prevent successful execution of the commissioning process. >>
 Solution Guide: Reliable Data Protection for Business Continuity
Sponsored by HP
Protecting your data is vital to the survival and growth of your business. HP Simply Business Protection solutions are designed to be adaptive and flexible, allowing you to meet today's challenges, to provide backwards compatibility, making it simpler for you to gain access to archived information and to build in room to grow, so you can meet the needs you may face in the future. >>
  Developing Exceptional Multi-Modal Customer Experiences
Sponsored by Avaya
Interactive Voice and Video Response can take voice applications to new heights by introducing video to the equation. Imagine having the ability to include video in a self-service voice application, which not only enhances the experience for users but can also help control costs. Download this eBook to explore powerful development tools and standards like SMIL, VoiceXML, and CCXML that makes such applications possible, as well as the business case for developing applications at your organization. >>
 Webcast: Consolidate, Virtualize, Optimize and Save
Sponsored by HP
When considering server virtualization, planning and design are critical. In this webcast, you will learn how a virtualized environment can help your business and existing data center meet current and future business requirements. >>
 Webcast: Get More Speed, Compression, Power and Security Out of Oracle Recovery Manager (RMAN) Backups
Sponsored by Quest Software
Are you getting the most from your Oracle Recovery Manager (RMAN) backups? Learn how easy RMAN is to use, and how you can maximize its power and security. Watch this on-demand webcast today. >>
 Whitepaper: Take a Bite Out of Bloatware with VIPRE Enteprise
Sponsored by Sunbelt
The remedy to bloatware is a better, more efficient and economical product that is specifically engineered to scan, detect and remove myriad security threats without impacting performance. Read this white paper to learn how a new antivirus technology platform reduces bloat and high resource usage. >>
Internet.com is a WebMediaBrands Inc. property
23 Old Kings Highway South
Darien, CT 06820
You are receiving this email because you have registered for a tutorial, download, whitepaper, webcast, or have elected to receive information or offers from Internet.com. If you wish to be removed from future Internet.com Tech Alerts, please go to: http://e-newsletters.internet.com/juptech_unsub.html

Learn how Free Virtualization Technology Can Maximize Your Datacenter Efficiency

Learn how to maximize datacenter efficiency and minimize TCO with free virtualization technology. Access the LDoms Community Cookbook.

Find out how to reduce costs in your datacenter Maximize Datacenter Efficiency with Free Virtualization Technology
Check out the LDOMs Community Cookbook
Dear athens suthakar,

While virtualization technologies are key to improving hardware utilization and increasing datacenter efficiency, they are often expensive and difficult to manage. Fortunately, you can save time and money with Logical Domains (LDoms) — built-in, no-cost virtualization capabilities for Sun's CoolThreads Servers.

With Sun's CoolThreads servers and LDoms, you can:


»  Run up to 128 virtual machines on a single server
»  Save up to $10,000 per server over proprietary virtualization technologies
»  Dramatically reduce real estate and energy costs by consolidating up to 13 older servers onto one Sun CoolThreads Server.*

Whether you are new to LDoms or a seasoned veteran, the LDoms Community Cookbook is the source for LDoms information.

  Get the Cookbook

Questions? Contact us.

Thank you,

Sun Microsystems, Inc.

*http://www.sun.com/customers/servers/usaf-cie.xml?cid=e8317c
Sun Microsystems
Get the Cookbook
Download Now
Get the Latest LDOMs Software
Sun Microsystems, Inc. respects your privacy. You are receiving this email at athenssuthakar.javaupdates@blogger.com because you elected to receive general communications from Sun Microsystems, Inc.
Privacy Policy   |   Trademarks  |   Manage Subscriptions  |   Update My Profile  |   Unsubscribe
Please do not reply to this email. Instead, contact the editor.
Sun Microsystems, Inc., 18 Network Circle, M/S: UMPK18-124, Attn: Global eMarketing, Menlo Park, CA 94025 USA
© 2009 Sun Microsystems, Inc. All rights reserved.