The i-Technology Media!
Register | Log in
   
 
.NET  ·  AJAX  ·  CLOUD  ·  ECLIPSE  ·  FLEX  ·  OPEN WEB  ·  iPHONE  ·  JAVA  ·  LINUX  ·  OPEN SOURCE  ·  ORACLE  ·  PBDJ  ·  SEARCH  ·  SILVERLIGHT  ·  SOA  ·  VIRTUALIZATION  ·  WEB 2.0  ·  WIRELESS  ·  XML
Comments
Drool, Britannia? Is the UK Failing the Cloud?
By Roger Strukhoff
Richard Davies wrote: The UK has a good crop of technology pioneers in cloud computing - for example ElasticHosts, FlexiScale, Flexiant, OnApp - and also some strong government initiatives such as G-Cloud. We will have to see whether this kind of technical leadership converts into swift mass-market adoption or not.
Jan. 8, 2012 11:38 AM EST
read more & respond »
Cloud Expo on Google News
Did you read today's front page stories & breaking news?

Cloud Expo & Virtualization 2011 West
Keynotes
Oracle
Opening Keynote | An Enterprise Cloud for Business-Critical Applications
Abiquo
Day 2 Keynote | The Enterprise Cloud Tightrope - Balancing for Success
Akamai
Day 3 Keynote | The DNA of an Enterprise Cloud
DIAMOND SPONSOR:
Oracle
Many Clouds, Many Choices'Cloud
PLATINUM PLUS SPONSORS:
Abiquo
Enterprise Cloud Best Practices - Town Hall - Join the discussion…
PLATINUM SPONSORS:
Intel
Progressing Toward the Federated, Automated and Client-Aware Cloud
New Relic
How to build an app with Twitter-like throughput
Rackspace
Computing in the Cloud Era
GOLD SPONSORS:
Gale Technologies
Practical Cloud Migration
IBM
Re-think IT. Re-inventing Business.
Intel/McAfee
Identity Driven Security in the Cloud
PerspecSys
Hackers Hackers Everywhere, Is My Public Cloud That Safe?
Red Hat
Unlock the Value of the Cloud
SHI
Mission Critical Applications and the Cloud - Myth or Reality?
SoftLayer
Not Your Grandpa's Cloud
Terremark
Integrating Enterprise Clouds
VMware
Upgrade to a vCloud
POWER PANELS:
Cloud Expo Silicon Valley: CTO Power Panel
Cloud Expo Silicon Valley: CEO Power Panel
Cloud Expo Silicon Valley: Cloud SuperStars Panel
Cloud Expo Silicon Valley: CloudNOW Panel
Click For 2010 West
Event Webcasts
Cloud Expo & Virtualization 2011 East
DIAMOND SPONSOR:
Dell
Dell & VMware Deliver the Enterprise Hybrid Cloud
PLATINUM PLUS SPONSORS:
Abiquo
Are Financial Services Organizations Risking Security by Avoiding Cloud Computing?
Oracle
From Consolidation to Enterprise Private PaaS
PLATINUM SPONSORS:
Intel
Driving the Transformation to Next Generation Cloud Data Centers
Rackspace
The Inevitability of an Open Cloud
GOLD SPONSORS:
CA Technologies
Follow YOUR path to Cloud Computing
Interxion
Who Keeps the Cloud in the Air?
Microsoft
Patterns for Cloud Computing
PerspecSys
War in the Clouds: Are you ready?
ServiceMesh
The Big Win: Stop Playing Small-Ball with Your Cloud Strategy
Terremark
Evaluating Enterprise Clouds
Xiotech
Cloud Storage: Myths and Realities
POWER PANELS:
Cloud Expo New York: CTO Power Panel
Cloud Expo New York: CEO Power Panel
Cloud Expo New York: CMO Power Panel
Cloud Expo New York: Wrap-Up Power Panel
Click For 2010 West
Event Webcasts
Live Google News by SYS-CON!
Top Three Links You Must Click On


Book Review
.NET Book Review — Practical Mono
All about Mono on Linux and Windows

By: Dennis Hayes
May. 19, 2006 02:30 PM

Mark Mamone is a program lead and solutions architect for British Telecom, and he's been involved in .NET since Beta 1; he's presently spearheading a Mono-driven project for BT. Mamone has co-authored several books, including Beginning Fedora 2, Beginning Red Hat Linux 9, and Professional Windows Forms.

The first chapter of this book gives an overview of .NET, a history of the Mono project, and instructions on downloading and installing Mono on Linux and Windows. OSX is mentioned, but specific instructions aren't included. Moppix, the "live" version of Mono that runs from a bootable CD (based on the Konppix Linux distro), is also mentioned.

The second chapter gives an introduction to installing and using MonoDevelop, an IDE for .NET development under Linux that's closely associated with the Mono project.

Chapter three gives a quick overview of basic C#, and chapter four continues this covering classes, attributes, interfaces, delegates, and exceptions, closing with a short section on what's new in C# 2.0.

Chapter five gives a high-level view of .NET and its advantages, including the intermediate language, assemblies, the GAC (Global Assembly Cache), memory management and garbage collection, and application domains. It closes with a short paragraph on each of the system namespaces (IO, Collections, Security, etc.).

Chapter six covers creating graphics programs using System.Windows.Forms by creating a user interface for a RSS aggregator application that uses menus, dialog boxes, panels, ListBoxes, datagrids, and events. The code is created manually without using an IDE graphic layout designer so the reader can understand how a .NET program works. Using System.Windows.Forms, this is not that difficult. The chapter closes by giving an overview of the advances in System.Windows.Forms 2.0.

Chapter seven covers creating applications by using the GTK# library and the Glade design tool for user interface layout. The author does this by recreating the same RSS aggregator user interface produced in chapter six.

Chapter eight covers database connections using ADO.NET, concentrating on MySQL. Mono and .NET can use a number of different databases, but here the author concentrates on MySQL because it's one of the most popular open source databases, and it is available on many platforms. Another advantage is that by limiting the discussion to a single database, he can go into details such as how to install and set up MySQL. This chapter gives an excellent overview of using a database with .NET, but if you want to have a deep and wide understanding of databases under .NET, check out Pro ADO.NET 2.0, also from Apress; it covers .NET databases in detail.

Chapter nine covers XML. It starts with a good overview of XML and all of its parts. Since RSS uses XML for its document format, this chapter shows how to read and write RSS XML documents, and parse out the information for the application created in chapter six and seven.

Chapter 10 gives a quick overview of networking, including the OSI model, and then introduces the System.Net namespace classes. It gives a quick example of how to read a Web page from a server and describes what a proxy server is, and how to connect to one. It then shows how to add network connectivity to the RSS aggregator application using the .NET networking classes. It closes, like most chapters in this book, with a description of the new .NET 2.0 classes, including the NetworkInterface class that retrieves information on all the network cards in the system, and the Ping and FTP classes that support ping and FTP protocols and functions.

Chapter 11 covers ASP.NET, including installing and using both the Mono XSP ASP server, and installing and configuring Apache to be an ASP.NET server using Mono on both Windows and Linux. The book gives an example of how to set up your own Web server and create a WebForm application. It also covers creating and consuming Web services. It again closes with a description of the ASP.NET changes in .NET 2.0; however these changes are so great I would recommend using this book to see how to set up ASP.NET using Mono with XSP and Apache, but continue with another book on ASP.NET 2.0 such as Pro ASP.NET 2.0 Website Programming, also from Apress.

Chapter 12, the last chapter is divided into two parts. The first part covers profiling using the Mono profiler and the low-level OProfile tool that comes as part of Linux. It points out that you can use other profilers, such as the one for the Nermele programming language, by using the Mono profiler flag.

The second section gives a few good tips on how to write faster programs, such as using StringBuilder instead of String when several strings have to be concatenated, and using structures instead of classes where appropriate. These are good tips, but are too few and basic to help an experienced .NET programmer, but could be helpful to a beginner.

This is a great book for anyone who wants to use .NET on Linux. It gives .NET programmers everything they need to use Linux, and it gives the Linux gurus everything they need to use .NET. It is a must have for anyone doing cross-platform .NET.

SIDEBAR

Title: Practical Mono
Author: Mark Mamone
Publisher: Apress
ISBN #: 1-59059-548-3
Price: US $49.99

Published May. 19, 2006— Reads 16,827 — Feedback 1
Copyright © 2006 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
About Dennis Hayes
Dennis Hayes is a programmer at Georgia Tech in Atlanta Georgia where he writes software for the Adult Cognition Lab in the Psychology Department. He has been involved with the Mono project for over six years, and has been writing the Monkey Business column for over five years.

Add Your Feedback

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

#1
.NET News Desk commented on 19 May 2006

Mark Mamone is a program lead and solutions architect for British Telecom, and he's been involved in .NET since Beta 1; he's presently spearheading a Mono-driven project for BT. Mamone has co-authored several books, including Beginning Fedora 2, Beginning Red Hat Linux 9, and Professional Windows Forms.


Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON Featured Whitepapers

ADS BY GOOGLE

Breaking Java News
Middlefield Banc Corp. Announces First Quarter 2012 Cash Dividend
TravelinWheels Gives People With Disabilities Tips for Choosing a Travel Agent for Spring Break
Smart Card Alliance to Provide Identity Credentialing Workshop, Security Pavilion, and Certification Exam at ISC West 2012
Parallels and Quest Software Partner to Deliver Valuable Hosted Application Solutions to Service Providers
AMERIND Expands Partnership with Ravello Solutions by Adding Workman’s Compensation Software for their Tribal Employee Injury Protection (TEIP) Program
JBT Corporation Announces Major FoodTech Order Totaling $4 Million
Sean "Diddy" Combs Visits ER Due to Migraine Attack
National Retail Properties, Inc. Prices Series D Cumulative Redeemable Preferred Depositary Shares
MLC CAD Systems Wins SWUGN Top Reseller Award 2012

ADVERTISE   |   MAGAZINE SUBSCRIPTIONS   |   FREE BREAKING-NEWSLETTERS!   |   SYS-CON.TV   |   BLOG-N-PLAY!   |   WEBCAST   |   EDUCATION   |   RESEARCH

.NET Developer's Journal - .NETDJ   |   ColdFusion Developer's Journal - CFDJ   |   Eclipse Developer's Journal - EDJ   |   Enterprise Open Source Magazine - EOS
Open Web Developer's Journal - OPENWEB   |   iPhone Developer's Journal - iPHONE   |   Virtualization - Virtualization   |   Java Developer's Journal - JDJ   |   Linux.SYS-CON.com
PowerBuilder Developer's Journal - PBDJ   |   SEO / SEM Journal - SJ   |   SOAWorld Magazine - SOAWM   |   IT Solutions Guide - ITSG   |   Symbian Developer's Journal - SDJ
WebLogic Developer's Journal - WLDJ   |   WebSphere Journal - WJ   |   Wireless Business & Technology - WBT   |   XML-Journal - XMLJ   |   Internet Video - iTV
Flex Developer's Journal - Flex   |   AJAXWorld Magazine - AWM   |   Silverlight Developer's Journal - SLDJ   |   PHP.SYS-CON.com   |   Web 2.0 Journal - WEB2
Apache   |   CMS   |   CRM   |   HP   |   Oracle Journal   |   Perl   |   Python   |   Red Hat   |   Ruby on Rails   |   SAP   |   SaaS

SYS-CON MEDIA:   ABOUT US   |   CONTACT US   |   COMPANY NEWS   |   CAREERS   |   SITE MAP
SYS-CON EVENTS:   |  AJAXWorld Conference & Expo  |  iPhone Developer Summit  |  Cloud Computing Conference & Expo  |  SOA World Conference & Expo  |  Virtualization Conference & Expo
INTERNATIONAL SITES:   India  |  U.K.  |  Canada  |  Germany  |  France  |  Australia  |  Italy  |  Spain  |  Netherlands  |  Brazil  |  Belgium
 Terms of Use & Our Privacy Statement     About Newsfeeds / Video Feeds
Copyright ©1994-2008 SYS-CON Publications, Inc. All Rights Reserved. All marks are trademarks of SYS-CON Media.
Reproduction in whole or in part in any form or medium without express written permission of SYS-CON Publications, Inc. is prohibited.
 
close this window