Book Image

.NET Compact Framework 3.5 Data Driven Applications

By : Edmund Tan
Book Image

.NET Compact Framework 3.5 Data Driven Applications

By: Edmund Tan

Overview of this book

<p>The new .NET CF 3.5 framework provides enterprise application developers with a whole arsenal of possibilities at their disposal, but without proper guidance on developing performance-critical enterprise applications, it is easy to make the wrong design and technology decisions.<br /><br />This book guides you to build each part of a robust enterprise application by illustrating the .NET CF 3.5 framework with the help of real-world business applications. It will not only help you to master basic .NET CF skills, but also outlines the best methods, techniques, and tools available to create high-impact and performance-critical data-driven enterprise mobile applications. It provides a solid set of guidelines to aid .NET CF developers to understand how best to apply the features of the .NET CF 3.5 framework.<br /><br />The bulk of the book illustrates the basic concepts of .NET Compact 3.5 Framework programming by walking the reader through 3 different kinds of mobile applications:</p> <ul> <li>A thick-client mobile sales-force application</li> <li>A thin-client mobile dashboard and reporting application</li> <li>A customer support case management application</li> </ul> <p><br />Both the SQL Server Lite and Oracle Lite mobile databases are covered in detail, from data access to data synchronization. The book explains how device features such as Bluetooth, SMS, telephony, Infrared, and Windows Contacts can be accessed via .NET CF in a real-world example, namely the mobile sales-force application. It also explains.NET CF's GDI+ features that can be used to create rich charts and reports. You learn to synchronize the mobile application with remote datasources and communicate via web services and WCF services. The book outlines performance optimization and memory management techniques on the mobile platform. It also outlines the tools and techniques available for testing, performance-tuning, deploying and debugging .NET CF enterprise applications (including Power Toys for .NET Compact Framework 3.5 from Microsoft).</p>
Table of Contents (18 chapters)
.NET Compact Framework 3.5 Data-Driven Applications
Credits
About the Author
About the Reviewer
Preface

Setting up MSMQ on your server


To send messages remotely from a mobile device to a server, your server must also have queues (and, therefore, MSMQ) set up. Not all PCs or servers come with MSMQ installed by default. To install MSMQ on your PC, you simply have to follow these steps:

  1. 1. Navigate to the Control Panel of your operating system, and launch Add/Remove Programs (in Windows XP) or Programs and Features (in Windows Vista).

  2. 2. On the left pane, you will be able to see the Add/Remove Windows Components shortcut (in Windows XP) or Turn Windows Features on or off shortcut (in Windows Vista). Click on the shortcut.

  3. 3. In the ensuing pop-up window, ensure that all the Microsoft Message Queue (MSMQ) Server options are checked. (The naming of the various subcomponents might also differ between Windows XP and Vista.)

  1. 4. Click OK to begin installation. You might be prompted for the Windows setup CD in the process.

  2. 5. After a successful installation, you will have access to the various message...