Microsoft.NET: The Overview

Size: px
Start display at page:

Download "Microsoft.NET: The Overview"

Transcription

1 2975ch01.qxd 01/03/02 10:55 AM Page 1 Part I Microsoft.NET: The Overview Chapter 1: Chapter 2: What Is.NET? Microsoft s End-to-End Mobile Strategy COPYRIGHTED MATERIAL

2 2975ch01.qxd 01/03/02 10:55 AM Page 2

3 2975ch01.qxd 01/03/02 10:55 AM Page 3 Chapter 1 What Is.NET? The.NET Framework Visual Studio.NET SOAP (Simple Object Access Protocol) About the Mobile Internet Toolkit

4 2975ch01.qxd 01/03/02 10:55 AM Page 4 4 Chapter 1 What Is.NET? At the end of the chapter, readers can expect to have achieved a basic understanding of the following: What Microsoft is hoping to achieve with.net The distributed nature of.net and the role of new developments such as XML Web Services The role of individual aspects of.net, particularly relevant to this book such as the.net Framework, Visual Studio.NET, SOAP, and the Mobile Internet Toolkit Before we launch into a study of the Mobile Internet Toolkit portion of.net, it is a good idea to have an understanding of the entire.net package. In this chapter we will have a look at a broad outline of.net, some of its key components and how the Mobile Internet Toolkit fits into the total package. Microsoft defines.net as being a five-part strategy consisting of the following: The.NET Framework and Visual Studio.NET developer tools Server infrastructure Microsoft s various server packages Building Block Services such as portable user identification (Passport) Devices software products covering a range of different devices User experiences applications such as Office and services such as MSN Later in this chapter, we will cover the.net Framework and Visual Studio.NET package. We will also investigate some of the other key.net components. In Chapter 2, Microsoft s End-to-End Mobile Strategy, we will have a more detailed look at server infrastructure, devices, and some of the building block services and user experiences. Essentially,.NET represents an integrated approach to software development, deployment, and usage. Developers no longer need to build applications and services just for a mobile platform, a Pocket PC platform, or a desktop platform. Each of these is seen as a greater part of the whole with users able to seamlessly transfer data between the platforms. A single application might work across these platforms for example, a messaging system that communicates delivery instructions from warehouse PCs (personal computers) to the delivery drivers mobile phones via a server. The information entered into the PC might come directly from a dedicated wireless mobile barcode reader..net is also firmly based on a distributed computing model. Applications can be assembled from components or XML Web Services that exist on different machines. XML (extensible Markup Language) is the language used to communicate between these XML Web Services, and Microsoft sees it as the glue that makes.net work. XML Web Services may be either software components or resources such as data libraries.

5 2975ch01.qxd 01/03/02 10:55 AM Page 5 What Is.NET? 5 XML Web Services rely on SOAP (Simple Object Access Protocol) to transmit and receive data and commands within a distributed system. This protocol describes how the data and commands should be represented using XML. There are a number of other services and technologies associated with the use of SOAP that are described in the SOAP section later in this chapter. As an application may consist of a number of XML Web Services accessing a number of other XML Web Services, which could be spread over a large number of machines potentially across the planet, execution sequences can become a problem. Not everything will necessarily happen in the correct order. In these scenarios,.net allows for the synchronous (in sequence) or asynchronous (out of sequence) execution of the various functions. This needs to be specified in the code during design, but it means that applications won t sit there churning away to themselves, waiting for something to come down the pipe, and locking the user out of doing something else on their machine. Figure 1.1 illustrates how an application built around XML Web Services might look. FIGURE 1.1: Sample application using XML Web Services Desktop computers at Tom's Customers using the Internet Client application: Tom's Travel Agency Web Service: constantly updated currency converter; commercial service based at Anne's Accounting Web Services: Relative currency values from various world exchanges Web Services: Accommodation details and prices for various hotels around the world Customers using the Mobile Internet Web Service: Flight details and prices for Royal Cactus Airlines Tom s Travel Agency (TTA) is able to give up-to-the-minute quotes on travel costs using a Web Service-driven application. This application makes use of a currency converter Web Service provided by Anne's Accounting. This application draws on other Web Services to give hourly updated figures. Anne charges users (such as TTA) for accessing this service. TTA also accesses flight details and prices from their preferred airline and accommodation costs from a range of worldwide hotels using Web Services. TTA provides the information to customers from the desktop computers at the agency, over the Internet, and over the Mobile Internet.

6 2975ch01.qxd 01/03/02 10:55 AM Page 6 6 Chapter 1 What Is.NET? The.NET Framework The.NET framework is the main environment for building, deploying, and using XML Web Services. It consists of the following: The Common Language Runtime (CLR), the platform s execution engine; code written for.net runs under its control The Framework classes ASP.NET (Active Server Pages for.net) Code is written using ASP.NET. Developers are able to use any.net Frameworkcompatible language to write their applications and can access all elements of the.net Framework from their code. Compatible languages include those shipping with.net such as Visual Basic.NET, C++ and C# (pronounced C Sharp ) as well as a range of third-party languages such as Eiffel that have compilers developed to target the.net common language runtime. WYSIWYG (What You See Is What You Get) tools, such as Visual Studio.NET, work seamlessly with ASP.NET and developers can use a forms-based approach to build Web applications similar to how they may have used more traditional tools such as Visual Basic to build conventional applications in the past. Microsoft refers to these as Web Forms. Visual Studio.NET Visual Studio.NET is the principal development tool for.net. It integrates the formerly separate Microsoft development platforms (such as Visual Basic, Visual FoxPro, Visual C++, as well as the new C#) into a single IDE (Integrated Development Environment). You can build the majority of your applications in Visual Studio.NET, whether it be a traditional application, a distributed application based on XML Web Services, an XML Web Service or COM component, or a Website.

7 2975ch01.qxd 01/03/02 10:55 AM Page 7 Visual Studio.NET 7 It also provides the IDE for building mobile sites and applications using the Mobile Internet Toolkit. As illustrated in Figure 1.2, programmers can open Visual Studio.NET, and choose the type of project they wish to build (such as a Windows application or XML Web Service) and the language they wish to build it in. You can even change languages within a project where necessary or use a non-microsoft language (such as Eiffel). FIGURE 1.2: Developers have the choice of project type and language in Visual Studio.NET. In addition, Microsoft has included a new language in Visual Studio.NET, C#. This language is designed to bring a simpler, more RAD (Rapid Application Development) approach to the world of C/C++ programming. It is object-oriented, is type-safe, and offers automatic garbage collection. As you can see in Figure 1.3, if you have previously used any of the Microsoft visual development tools, the new Visual Studio.NET interface is very familiar.

8 2975ch01.qxd 01/03/02 10:55 AM Page 8 8 Chapter 1 What Is.NET? FIGURE 1.3: The Visual Studio IDE SOAP SOAP (Simple Object Access Protocol) is a lightweight protocol for exchanging data in a distributed heterogeneous environment. It provides a set of rules (or grammar for XML) about how data and commands should be represented. In the past, distributed computing has run aground because the objects required are unable to be accessed through the firewalls and security protocols set up (quite rightly!) around many networks. SOAP now allows these objects to transmit their data or receive commands via Port 80 (the HTTP port that any network administrator wishing to use the Internet would normally leave open). New XML Web Services are set up with SOAP already incorporated into them. Existing COM objects can be given a SOAP wrapper (using Visual Studio.NET) that enables them to be used as a distributed XML Web Service. Microsoft has other members of the SOAP family that work alongside the protocol to help make it possible for developers to actually find and use available XML Web Services in their applications: WSDL Another XML grammar (set of rules for XML) is WSDL (Web Service Description Language). WSDL is used to expose the capabilities of an XML Web Service. For example, we might have an XML Web Service that has some function called calculate that requires three variables a, b, and c. We would talk to the XML Web Service using WSDL to find out about this function and what its requirements were.

9 2975ch01.qxd 01/03/02 10:55 AM Page 9 The Mobile Internet Toolkit 9 Disco Disco, which is short for SOAP Discovery, is used to locate descriptions for XML Web Services. When an XML Web Service is created, a file with the extension.disco is also generated. This file enables the WSDL description files for a particular site to be automatically located when someone wishes to make use of the XML Web Services in a distributed application. (This assumes that the owner of the site is willing to allow the use of his or her XML Web Services in some other distributed application!) UDDI UDDI (Universal Description, Discovery, and Integration) is a directory service to provide the location of a whole range of XML Web Services. They are categorized into various types of information and services. For more information, see The Mobile Internet Toolkit The Mobile Internet Toolkit is all about developers being able to write a single site or application for the mobile Internet that is viewable on any device irrespective of its individual idiosyncrasies, platform, supported protocols, languages dial tone, case color, etc. In principle, we could write a single site viewable on the big screen Internet as well as the mobile Internet using this write once, present anywhere approach. In practice however, we need to keep our desktop Internet sites and mobile Internet sites as separate entities unless we are intent on wishing unsatisfactory browsing experiences on our site visitors! It may be at some point in the future that the two may begin to converge, but at the moment they are two quite separate mediums in the way they are used and the information they can convey. Mobile applications are built in ASP.NET using a special set of mobile controls. The controls are added to a Mobile Web Form (which is a particular type of ASP.NET Web Form) and then coded behind using the development language of choice. We will be using Visual Basic.NET in this book. The Mobile Internet Toolkit SDK consists of a set of server-side mobile controls, the Mobile Web Forms Designer, a tutorial, and relevant documentation. It is included as part of the Visual Studio.NET package. Although it is possible to write the code for the Mobile Internet Toolkit using any text editor (such as Notepad), it is a lot simpler to graphically build the mobile site or application using Visual Studio s standardized IDE. If you are particularly keen to hand write applications using a standard text editor, the Mobile Web Forms are saved with the same.aspx file extension used now for all ASP.NET Web Forms. (Note: this is different from the old.asp extension used for Active Server Pages pre-.net.) The code behind needs to be saved in a file using the extension of the language that you have used (.vb for Visual Basic and.cs for C#). This then needs to be compiled, which can be done from the command line, but I ll let you chase up the appropriate Microsoft

10 2975ch01.qxd 01/03/02 10:55 AM Page Chapter 1 What Is.NET? FIGURE 1.4: The UP.Simulator, an example of Openwave s mobile emulator documentation on how to do it yourself! It then needs to be placed in a bin directory inside the directory containing the Mobile Form. This can then be opened via your Web server as will be explained later in Chapter 4, An Example of Mobile Technology: WAP and WML. As the mobile environment is a rapidly expanding and changing field, the Mobile Internet Toolkit has been designed to support a wide range of platforms and devices. It is also extensible and allows for the further inclusion of new devices as they are developed. Applications and sites built using.net can be tested using real devices or emulators such as the Mobile Explorer emulator or the Openwave emulator (as illustrated in Figure 1.4).

11 2975ch01.qxd 01/03/02 10:55 AM Page 11 Summary 11 Mobile applications are usually built-in decks of cards with each card representing the Internet equivalent of a page. Each deck is in fact a single page of code, so in HTML terms, it would be like writing your entire Website onto a single page of code and only using a section of the code to represent each page of the site. The Mobile Internet Toolkit allows this to happen by permitting developers to place multiple form controls onto a single Mobile Form Web page. As controls are added to the forms on the page, each control has a runat=server attribute declared to ensure that they are executed as server-side code. The result is a streamlined development environment with drag-and-drop controls onto a single form (or multiple forms if you wish). The business logic and content can then be added in the traditional code behind approach used with Microsoft development tools. Developers already schooled in ASP.NET have very little to learn before they begin developing sites and applications for the mobile Internet. The adaptive rendering of the Mobile Internet Toolkit handles device detection and appropriate presentation of the code for any mobile device. Summary Microsoft s.net brings together a range of development tools, platform software, and services under one integrated umbrella. The developer can now create user-centric applications that are designed to work across a particular environment rather than just on a particular platform. Developers are able to use the tools and languages of their choice within the single IDE of Visual Studio.NET. At the wider level, XML Web Services and their associated protocols open up the real possibilities of building and using distributed applications across the Internet. The strong mobile focus of.net and the creation of a set of dedicated tools simplify development in this area and help to ensure that any software solution is able to be equipped with mobile capability where appropriate.

12 2975ch01.qxd 01/03/02 10:55 AM Page 12

A NET Refresher

A NET Refresher .NET Refresher.NET is the latest version of the component-based architecture that Microsoft has been developing for a number of years to support its applications and operating systems. As the name suggests,.net

More information

Getting Started with Visual Studio.NET

Getting Started with Visual Studio.NET V37 Getting Started with Visual Studio.NET Whil Hentzen Hentzenwerke Corp. Who Am I? Hentzenwerke Corp. (17 yrs) Editor, FoxTalk Author (6 books) Publisher, The Essentials for Visual FoxPro Ask me about

More information

Unit 1: Visual Basic.NET and the.net Framework

Unit 1: Visual Basic.NET and the.net Framework 1 Chapter1: Visual Basic.NET and the.net Framework Unit 1: Visual Basic.NET and the.net Framework Contents Introduction to.net framework Features Common Language Runtime (CLR) Framework Class Library(FCL)

More information

Prof. Dr. Hanspeter Mössenböck Institute for System Software Johannes Kepler University Linz

Prof. Dr. Hanspeter Mössenböck Institute for System Software Johannes Kepler University Linz Overview of.net Prof. Dr. Hanspeter Mössenböck Institute for System Software Johannes Kepler University Linz University of Linz, Institute for System Software, 2004 published under the Microsoft Curriculum

More information

NET 3.0 and NET 3.0 contains four building blocks, shown in the figure below:

NET 3.0 and NET 3.0 contains four building blocks, shown in the figure below: NET 3.0 and 3.5 NET 3.0 is a brand name for a set of modern technologies, designed to be the next-generation Windows development platform..net 3.0 was released with Windows Vista in November 2006 2007..NET

More information

New programming language introduced by Microsoft contained in its.net technology Uses many of the best features of C++, Java, Visual Basic, and other

New programming language introduced by Microsoft contained in its.net technology Uses many of the best features of C++, Java, Visual Basic, and other C#.NET? New programming language introduced by Microsoft contained in its.net technology Uses many of the best features of C++, Java, Visual Basic, and other OO languages. Small learning curve from either

More information

Web Services. Brian A. LaMacchia. Software Architect Windows Trusted Platform Technologies Microsoft Corporation

Web Services. Brian A. LaMacchia. Software Architect Windows Trusted Platform Technologies Microsoft Corporation Web Services Brian A. LaMacchia Software Architect bal@microsoft.com Windows Trusted Platform Technologies Microsoft Corporation CPSC 155b E-Commerce: Doing Business on the Internet March 27, 2003 Five

More information

Introduction to.net Framework

Introduction to.net Framework Introduction to.net Framework .NET What Is It? Software platform Language neutral In other words:.net is not a language (Runtime and a library for writing and executing written programs in any compliant

More information

Overview of the Microsoft.NET Framework

Overview of the Microsoft.NET Framework Overview of the Microsoft.NET Framework So far in this course, we have concentrated on one part of.net, the Foundation Class Libraries. However, there s more to.net than the FCL. This lecture will tell

More information

Contents. Microsoft is a registered trademark of Microsoft Corporation. TRAVERSE is a registered trademark of Open Systems Holdings Corp.

Contents. Microsoft is a registered trademark of Microsoft Corporation. TRAVERSE is a registered trademark of Open Systems Holdings Corp. TPLWPT Contents Summary... 1 General Information... 1 Technology... 2 Server Technology... 2 Business Layer... 4 Client Technology... 4 Structure... 4 Ultra-Thin Client Considerations... 7 Internet and

More information

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 Course Overview This instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual

More information

Migration to Service Oriented Architecture Using Web Services Whitepaper

Migration to Service Oriented Architecture Using Web Services Whitepaper WHITE PAPER Migration to Service Oriented Architecture Using Web Services Whitepaper Copyright 2004-2006, HCL Technologies Limited All Rights Reserved. cross platform GUI for web services Table of Contents

More information

Using SQL Server in C#

Using SQL Server in C# University College of Southeast Norway Using SQL Server in C# Hans-Petter Halvorsen, 2016.11.01 with Examples http://home.hit.no/~hansha Table of Contents 1. Introduction...

More information

WHITE PAPER. LiveApp Player Architecture. Player Technology The Composite Applications Deployment Style Architecture

WHITE PAPER. LiveApp Player Architecture. Player Technology The Composite Applications Deployment Style Architecture WHITE PAPER LiveApp Player Architecture Player Technology The Composite Applications Deployment Style Architecture W H I T E P A P E R LiveApp Player Architecture ObjectBuilders 20134 Valley Forge Circle

More information

IP PBX for Service Oriented Architectures Communications Web Services

IP PBX for Service Oriented Architectures Communications Web Services IP PBX for Service Oriented Architectures Communications Web Services.......... Introduction Enterprise communications have traditionally been provided by closed, stand-alone PBX systems. Installed in

More information

Part 1: Understanding Windows XP Basics

Part 1: Understanding Windows XP Basics 542362 Ch01.qxd 9/18/03 9:54 PM Page 1 Part 1: Understanding Windows XP Basics 1: Starting Up and Logging In 2: Logging Off and Shutting Down 3: Activating Windows 4: Enabling Fast Switching between Users

More information

Microsoft.NET Programming (C#, ASP.NET,ADO.NET, VB.NET, Crystal Report, Sql Server) Goal: Make the learner proficient in the usage of MS Technologies

Microsoft.NET Programming (C#, ASP.NET,ADO.NET, VB.NET, Crystal Report, Sql Server) Goal: Make the learner proficient in the usage of MS Technologies Microsoft.NET Programming (C#, ASP.NET,ADO.NET, VB.NET, Crystal Report, Sql Server) Goal: Make the learner proficient in the usage of MS Technologies for web applications development using ASP.NET, XML,

More information

Get started with Visual Basic Microsoft Docs Get started with Visual Basic minutes to read Contributors all In this article This section of the

Get started with Visual Basic Microsoft Docs Get started with Visual Basic minutes to read Contributors all In this article This section of the Get started with Visual Basic Microsoft Docs Get started with Visual Basic minutes to read Contributors all In this article This section of the documentation helps you get started with Visual Basic application

More information

Developing Microsoft.NET Applications for Windows (Visual Basic.NET)

Developing Microsoft.NET Applications for Windows (Visual Basic.NET) Developing Microsoft.NET Applications for Windows (Visual Basic.NET) Course Number: 2565 Length: 5 Day(s) Certification Exam This course will help you prepare for the following Microsoft Certified Professional

More information

10/9/2012. Sample C# program:

10/9/2012. Sample C# program: Creating and Running Your First C# Program Text Book : C# Programming From Problem Analysis to Program design, Barbara Doyle Grading : Homeworks 20% Lecture Presentation 20% Final : % 20 Project : 40%

More information

Wakanda Architecture. Wakanda is made up of three main components: Wakanda Server Wakanda Studio Wakanda Client Framework

Wakanda Architecture. Wakanda is made up of three main components: Wakanda Server Wakanda Studio Wakanda Client Framework Wakanda Architecture Wakanda is made up of three main components: Wakanda Server Wakanda Studio Wakanda Client Framework Note: For a more general overview of Wakanda, please see What is Wakanda?) Wakanda

More information

Integrating with EPiServer

Integrating with EPiServer Integrating with EPiServer Abstract EPiServer is an excellent tool when integration with existing systems within an organization is a requirement. This document outlines the Web services that are shipped

More information

Konark - Writing a KONARK Sample Application

Konark - Writing a KONARK Sample Application icta.ufl.edu http://www.icta.ufl.edu/konarkapp.htm Konark - Writing a KONARK Sample Application We are now going to go through some steps to make a sample application. Hopefully I can shed some insight

More information

Distributed Systems. Web Services (WS) and Service Oriented Architectures (SOA) László Böszörményi Distributed Systems Web Services - 1

Distributed Systems. Web Services (WS) and Service Oriented Architectures (SOA) László Böszörményi Distributed Systems Web Services - 1 Distributed Systems Web Services (WS) and Service Oriented Architectures (SOA) László Böszörményi Distributed Systems Web Services - 1 Service Oriented Architectures (SOA) A SOA defines, how services are

More information

Introduction to.net Framework Week 1. Tahir Nawaz

Introduction to.net Framework Week 1. Tahir Nawaz Introduction to.net Framework Week 1 Tahir Nawaz .NET What Is It? Software platform Language neutral In other words:.net is not a language (Runtime and a library for writing and executing written programs

More information

Distributed Multitiered Application

Distributed Multitiered Application Distributed Multitiered Application Java EE platform uses a distributed multitiered application model for enterprise applications. Logic is divided into components https://docs.oracle.com/javaee/7/tutorial/overview004.htm

More information

Introduction to Web Development with Microsoft Visual Studio 2010

Introduction to Web Development with Microsoft Visual Studio 2010 10267 - Introduction to Web Development with Microsoft Visual Studio 2010 Duration: 5 days Course Price: $2,975 Software Assurance Eligible Course Description Course Overview This five-day instructor-led

More information

What we need. Agenda. What s J2EE. Challenges of Enterprise Application Development

What we need. Agenda. What s J2EE. Challenges of Enterprise Application Development Agenda.NET versus J2EE Felicia cheng Jarred zheng Jonathan Card Peng Li iao he Background Introduction J2EE Structure.NET Structure J2EE vs..net Conclusions Today s Enterprise Environment Challenges of

More information

BEAWebLogic. Portal. Overview

BEAWebLogic. Portal. Overview BEAWebLogic Portal Overview Version 10.2 Revised: February 2008 Contents About the BEA WebLogic Portal Documentation Introduction to WebLogic Portal Portal Concepts.........................................................2-2

More information

XML Web Service? A programmable component Provides a particular function for an application Can be published, located, and invoked across the Web

XML Web Service? A programmable component Provides a particular function for an application Can be published, located, and invoked across the Web Web Services. XML Web Service? A programmable component Provides a particular function for an application Can be published, located, and invoked across the Web Platform: Windows COM Component Previously

More information

Introduction to Web Development with Microsoft Visual Studio 2010

Introduction to Web Development with Microsoft Visual Studio 2010 Introduction to Web Development with Microsoft Visual Studio 2010 Course 10267; 5 Days, Instructor-led Course Description This five-day instructor-led course provides knowledge and skills on developing

More information

To get started with Visual Basic 2005, I recommend that you jump right in

To get started with Visual Basic 2005, I recommend that you jump right in In This Chapter Chapter 1 Wading into Visual Basic Seeing where VB fits in with.net Writing your first Visual Basic 2005 program Exploiting the newfound power of VB To get started with Visual Basic 2005,

More information

Vision V sion o n I n n 1975 V sion o n T o T d o a d y A c o c m o pu p t u er e o n o n e v e e v r e y E po p w o er e p e p o e p o l p e

Vision V sion o n I n n 1975 V sion o n T o T d o a d y A c o c m o pu p t u er e o n o n e v e e v r e y E po p w o er e p e p o e p o l p e Mobile Applications.. Vision Vision In 1975 A computer on every desk and in every home Vision Today Empower people through great software any time, any place, and on any device Mobility Group Empower people

More information

Contents at a Glance

Contents at a Glance Contents at a Glance Introduction xvii Step 1 Step 2 Step 3 Step 4 Step 5 Step 6 Step 7 Step 8 Learn the Logic 1 Develop a Content Strategy 25 Lay a Foundation 47 Collect and Organize Your Content 71 Set

More information

Chapter 3. Technology Adopted. 3.1 Introduction

Chapter 3. Technology Adopted. 3.1 Introduction Chapter 3 Technology Adopted 3.1 Introduction The previous chapter described difference between the propose system and traditional methods and also about the existing similar systems. In this chapter,

More information

Microsoft..NET Framework. Overview

Microsoft..NET Framework. Overview Microsoft.NET Framework Overview .NET Enterprise Vision Users Any device, Any place, Any time XML Web Services Scheduling Authentication Integrate business applications and processes Notification Back

More information

COURSE 20487B: DEVELOPING WINDOWS AZURE AND WEB SERVICES

COURSE 20487B: DEVELOPING WINDOWS AZURE AND WEB SERVICES ABOUT THIS COURSE In this course, students will learn how to design and develop services that access local and remote data from various data sources. Students will also learn how to develop and deploy

More information

Solution overview VISUAL COBOL BUSINESS CHALLENGE SOLUTION OVERVIEW BUSINESS BENEFIT

Solution overview VISUAL COBOL BUSINESS CHALLENGE SOLUTION OVERVIEW BUSINESS BENEFIT BUSINESS CHALLENGE There is an increasing demand from users of business software for easier to use applications which integrate with other business systems. As a result IT organizations are being asked

More information

.Net and Rational s XDE from the trenches Tony Grout FMI Solutions

.Net and Rational s XDE from the trenches Tony Grout FMI Solutions .Net and Rational s XDE from the trenches.net and Rational s XDE from the trenches Tony Grout FMI Tony Solutions Grout FMI Solutions Agenda! Who are FMI Solutions?! Setting the Scene! Getting the Project

More information

2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days

2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days 2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days Certification Exam This course will help you prepare for the following Microsoft Certified

More information

EPiServer Portals. Abstract

EPiServer Portals. Abstract EPiServer Portals Abstract This white paper outlines EPiServer's portal functionality. The document includes a high-level description of Web Services for Remote Portlets (WSRP) technology. Product version:

More information

(9A05803) WEB SERVICES (ELECTIVE - III)

(9A05803) WEB SERVICES (ELECTIVE - III) 1 UNIT III (9A05803) WEB SERVICES (ELECTIVE - III) Web services Architecture: web services architecture and its characteristics, core building blocks of web services, standards and technologies available

More information

Visual Studio.NET for AutoCAD Programmers

Visual Studio.NET for AutoCAD Programmers December 2-5, 2003 MGM Grand Hotel Las Vegas Visual Studio.NET for AutoCAD Programmers Speaker Name: Andrew G. Roe, P.E. Class Code: CP32-3 Class Description: In this class, we'll introduce the Visual

More information

Build Your Own ASP.NET 4 Website Using C# & VB. Chapter 1: Introducing ASP.NET and the.net Pla;orm

Build Your Own ASP.NET 4 Website Using C# & VB. Chapter 1: Introducing ASP.NET and the.net Pla;orm Build Your Own ASP.NET 4 Website Using C# & VB Chapter 1: Introducing ASP.NET and the.net Pla;orm Outlines IntroducIon What is ASP.NET? Advantages of ASP.NET Installing the Required SoOware WriIng your

More information

[MS20487]: Developing Windows Azure and Web Services

[MS20487]: Developing Windows Azure and Web Services [MS20487]: Developing Windows Azure and Web Services Length : 5 Days Audience(s) : Developers Level : 300 Technology : Cross-Platform Development Delivery Method : Instructor-led (Classroom) Course Overview

More information

DE Introduction to Web Development with Microsoft Visual Studio 2010

DE Introduction to Web Development with Microsoft Visual Studio 2010 DE-10267 Introduction to Web Development with Microsoft Visual Studio 2010 Summary Duration 5 Days Audience Developers Level 100 Technology Microsoft Visual Studio 2010 Delivery Method Instructor-led (Classroom)

More information

Yoon Joong Kim. Department of computer Engineering Hanbat National University

Yoon Joong Kim. Department of computer Engineering Hanbat National University Yoon Joong Kim Department of computer Engineering Hanbat National University Contents Microsoft.NET History What is Microsoft.NET - Goal/.NET Platform/issues and ideas The Microsoft.NET Framework Common

More information

.NET. Inf 5040, Outline. Gyrd Brændeland, Sharath Babu Musunoori, Åshild Grønstad Solheim

.NET. Inf 5040, Outline. Gyrd Brændeland, Sharath Babu Musunoori, Åshild Grønstad Solheim .NET Inf 5040, 02.11.04 Gyrd Brændeland, Sharath Babu Musunoori, Åshild Grønstad Solheim Outline Introduction An overview of.net framework architecture More focus on.net core components.net features Web

More information

Programming Microsoft Visual Basic.Net By Francesco Balena

Programming Microsoft Visual Basic.Net By Francesco Balena Programming Microsoft Visual Basic.Net By Francesco Balena Watch video Visual Basic is one of the Microsoft core languages for building desktop, mobile, and web applications. Get started programming with

More information

Web Services in Cincom VisualWorks. WHITE PAPER Cincom In-depth Analysis and Review

Web Services in Cincom VisualWorks. WHITE PAPER Cincom In-depth Analysis and Review Web Services in Cincom VisualWorks WHITE PAPER Cincom In-depth Analysis and Review Web Services in Cincom VisualWorks Table of Contents Web Services in VisualWorks....................... 1 Web Services

More information

Mastering VB.NET using Visual Studio 2010 Course Length: 5 days Price: $2,500

Mastering VB.NET using Visual Studio 2010 Course Length: 5 days Price: $2,500 Mastering VB.NET using Visual Studio 2010 Course Length: 5 days Price: $2,500 Summary Each day there will be a combination of presentations, code walk-throughs, and handson projects. The final project

More information

Cookbook for using SQL Server DTS 2000 with.net

Cookbook for using SQL Server DTS 2000 with.net Cookbook for using SQL Server DTS 2000 with.net Version: 1.0 revision 15 Last updated: Tuesday, July 23, 2002 Author: Gert E.R. Drapers (GertD@SQLDev.Net) All rights reserved. No part of the contents of

More information

Cisco Unified Application Designer 2.4

Cisco Unified Application Designer 2.4 Cisco Unified Application Designer 2.4 Cisco Unified Communications is a comprehensive IP communications system of voice, video, data, and mobility products and applications. It enables more effective,

More information

Alteryx Technical Overview

Alteryx Technical Overview Alteryx Technical Overview v 1.5, March 2017 2017 Alteryx, Inc. v1.5, March 2017 Page 1 Contents System Overview... 3 Alteryx Designer... 3 Alteryx Engine... 3 Alteryx Service... 5 Alteryx Scheduler...

More information

Recruitment Agency Based on SOA and XML Web Services

Recruitment Agency Based on SOA and XML Web Services Recruitment Agency Based on SOA and XML Web Services Nutthapat Kaewrattanapat and Jarumon Nookhong Department of Information Science, Suan Sunandha Rajabhat University, Bangkok, Thailand Email: {nutthapat.ke,

More information

Introduction to Web Development with Microsoft Visual Studio 2010 (10267A)

Introduction to Web Development with Microsoft Visual Studio 2010 (10267A) Introduction to Web Development with Microsoft Visual Studio 2010 (10267A) Overview This five-day instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual

More information

Part I: Programming Access Applications. Chapter 1: Overview of Programming for Access. Chapter 2: Extending Applications Using the Windows API

Part I: Programming Access Applications. Chapter 1: Overview of Programming for Access. Chapter 2: Extending Applications Using the Windows API 74029c01.qxd:WroxPro 9/27/07 1:43 PM Page 1 Part I: Programming Access Applications Chapter 1: Overview of Programming for Access Chapter 2: Extending Applications Using the Windows API Chapter 3: Programming

More information

Moving from Classic ASP to ASP.NET

Moving from Classic ASP to ASP.NET Proceedings of the 16 th Annual NACCQ, Palmerston North New Zealand July, 2003 (eds) Mann, S. and Williamson, A. www.naccq.ac.nz Moving from Classic ASP to ASP.NET ABSTRACT ASP.NET is Microsoft new offering

More information

Developing Microsoft Azure and Web Services. Course Code: 20487C; Duration: 5 days; Instructor-led

Developing Microsoft Azure and Web Services. Course Code: 20487C; Duration: 5 days; Instructor-led Developing Microsoft Azure and Web Services Course Code: 20487C; Duration: 5 days; Instructor-led WHAT YOU WILL LEARN In this course, students will learn how to design and develop services that access

More information

Introduction to.net Framework and Visual Studio 2013 IDE MIT 31043, Rapid Application Development By: S. Sabraz Nawaz

Introduction to.net Framework and Visual Studio 2013 IDE MIT 31043, Rapid Application Development By: S. Sabraz Nawaz Introduction to.net Framework and Visual Studio 2013 IDE MIT 31043, Rapid Application Development By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT Faculty of Management and Commerce Rapid Application

More information

Bayanihan Computing.NET A generic framework for volunteer computing

Bayanihan Computing.NET A generic framework for volunteer computing Bayanihan Computing.NET A generic framework for volunteer computing 17 October 2001 Microsoft Asia Student.NET Competition Seoul, Korea (This document updated on 20 October 2001.) Ateneo de Manila University

More information

COURSE OUTLINE: OD10267A Introduction to Web Development with Microsoft Visual Studio 2010

COURSE OUTLINE: OD10267A Introduction to Web Development with Microsoft Visual Studio 2010 Course Name OD10267A Introduction to Web Development with Microsoft Visual Studio 2010 Course Duration 2 Days Course Structure Online Course Overview This course provides knowledge and skills on developing

More information

Creating and Running Your First C# Program

Creating and Running Your First C# Program Creating and Running Your First C# Program : http://eembdersler.wordpress.com Choose the EEE-425Programming Languages (Fall) Textbook reading schedule Pdf lecture notes Updated class syllabus Midterm and

More information

EEE-425 Programming Languages (2013) 1

EEE-425 Programming Languages (2013) 1 Creating and Running Your First C# Program : http://eembdersler.wordpress.com Choose the EEE-425Programming Languages (Fall) Textbook reading schedule Pdf lecture notes Updated class syllabus Midterm and

More information

Authoring Installations for Microsoft s.net Framework

Authoring Installations for Microsoft s.net Framework Authoring Installations for Microsoft s.net Framework using Wise for Windows Installer Vanessa Wasko Wise Solutions, Inc. Abstract This paper provides an overview of creating an installation for an application

More information

Agent-Enabling Transformation of E-Commerce Portals with Web Services

Agent-Enabling Transformation of E-Commerce Portals with Web Services Agent-Enabling Transformation of E-Commerce Portals with Web Services Dr. David B. Ulmer CTO Sotheby s New York, NY 10021, USA Dr. Lixin Tao Professor Pace University Pleasantville, NY 10570, USA Abstract:

More information

Installation Guide for 3.1.x

Installation Guide for 3.1.x CARETEND BI Installation Guide for 3.1.x TABLE OF CONTENTS DOCUMENT PURPOSE... 2 OVERVIEW... 2 PLATFORM COMPONENTS... 3 Rock-Pond BI Server... 3 CareTend BI Client Application... 3 ABOUT INSTANCES... 3

More information

Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning

Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: This five-day

More information

Compute Cluster Server Lab 1: Installation of Microsoft Compute Cluster Server 2003

Compute Cluster Server Lab 1: Installation of Microsoft Compute Cluster Server 2003 Compute Cluster Server Lab 1: Installation of Microsoft Compute Cluster Server 2003 Compute Cluster Server Lab 1: Installation of Microsoft Compute Cluster Server 2003... 1 Lab Objective... 1 Overview

More information

Developing Windows Azure and Web Services

Developing Windows Azure and Web Services Developing Windows Azure and Web Services Course 20487B; 5 days, Instructor-led Course Description In this course, students will learn how to design and develop services that access local and remote data

More information

Microsoft Official Courseware Course Introduction to Web Development with Microsoft Visual Studio

Microsoft Official Courseware Course Introduction to Web Development with Microsoft Visual Studio Course Overview: This five-day instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual Studio 2010. Prerequisites Before attending this course, students

More information

Developing Web Applications Using Microsoft Visual Studio 2008 SP1

Developing Web Applications Using Microsoft Visual Studio 2008 SP1 Developing Web s Using Microsoft Visual Studio 2008 SP1 Introduction This five day instructor led course provides knowledge and skills on developing Web applications by using Microsoft Visual Studio 2008

More information

This tutorial is designed for software programmers who would like to learn the basics of ASP.NET Core from scratch.

This tutorial is designed for software programmers who would like to learn the basics of ASP.NET Core from scratch. About the Tutorial is the new web framework from Microsoft. is the framework you want to use for web development with.net. At the end this tutorial, you will have everything you need to start using and

More information

Introduction to Web Services & SOA

Introduction to Web Services & SOA References: Web Services, A Technical Introduction, Deitel & Deitel Building Scalable and High Performance Java Web Applications, Barish Service-Oriented Programming (SOP) SOP A programming paradigm that

More information

"Charting the Course... MOC A Introduction to Web Development with Microsoft Visual Studio Course Summary

Charting the Course... MOC A Introduction to Web Development with Microsoft Visual Studio Course Summary Description Course Summary This course provides knowledge and skills on developing Web applications by using Microsoft Visual. Objectives At the end of this course, students will be Explore ASP.NET Web

More information

DOWNLOAD OR READ : VISUAL STUDIO NET TIPS AND TRICKS PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : VISUAL STUDIO NET TIPS AND TRICKS PDF EBOOK EPUB MOBI DOWNLOAD OR READ : VISUAL STUDIO NET TIPS AND TRICKS PDF EBOOK EPUB MOBI Page 1 Page 2 visual studio net tips and tricks visual studio net tips pdf visual studio net tips and tricks Visual Studio.NET Code

More information

Vision of J2EE. Why J2EE? Need for. J2EE Suite. J2EE Based Distributed Application Architecture Overview. Umair Javed 1

Vision of J2EE. Why J2EE? Need for. J2EE Suite. J2EE Based Distributed Application Architecture Overview. Umair Javed 1 Umair Javed 2004 J2EE Based Distributed Application Architecture Overview Lecture - 2 Distributed Software Systems Development Why J2EE? Vision of J2EE An open standard Umbrella for anything Java-related

More information

The name of this chapter should be Getting Everything You Can from

The name of this chapter should be Getting Everything You Can from Chapter 1: Exploring Visual Studio Extensions In This Chapter Getting the most out of Visual Studio Building the next generation of Web sites with AJAX Looking ahead to the future of Visual Studio The

More information

Web Platform Introduction With a focus on free. Mike Taulty Developer & Platform Group Microsoft Ltd

Web Platform Introduction With a focus on free. Mike Taulty Developer & Platform Group Microsoft Ltd Web Platform Introduction With a focus on free Mike Taulty Developer & Platform Group Microsoft Ltd Mike.Taulty@microsoft.com http://www.mtaulty.com The humble web request Internet Information Services

More information

XML Web Services Basics

XML Web Services Basics MSDN Home XML Web Services Basics Page Options Roger Wolter Microsoft Corporation December 2001 Summary: An overview of the value of XML Web services for developers, with introductions to SOAP, WSDL, and

More information

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide TRAINING GUIDE FOR OPC SYSTEMS.NET Simple steps to successful development and deployment. Step by Step Guide SOFTWARE DEVELOPMENT TRAINING OPC Systems.NET Training Guide Open Automation Software Evergreen,

More information

10267 Introduction to Web Development with Microsoft Visual Studio 2010

10267 Introduction to Web Development with Microsoft Visual Studio 2010 10267 Introduction to Web Development with Microsoft Visual Studio 2010 Course Number: 10267A Category: Visual Studio 2010 Duration: 5 days Course Description This five-day instructor-led course provides

More information

BlackBerry Mobile Data System

BlackBerry Mobile Data System BlackBerry Mobile Data System TM BlackBerry Mobile Data System dramatically reduces the amount of time and resources required to develop and deploy wireless applications for mobile workers. BlackBerry

More information

COPYRIGHTED MATERIAL. Introducing the Project: The SmartCA Application. The Problem

COPYRIGHTED MATERIAL. Introducing the Project: The SmartCA Application. The Problem Introducing the Project: The SmartCA Application The project for this book is based on a real application for a real company. The names of the company and the application have been changed for privacy

More information

The integration of the database with Microsoft. NET Framework

The integration of the database with Microsoft. NET Framework The 2nd International Conference on Virtual Learning, ICVL 2007 1 The integration of the database with Microsoft. NET Framework Simona Marilena Ilie 1 (1) Technical University of Civil Engineering of Bucharest,

More information

DE-2310 Developing Web Applications Using Microsoft Visual Studio 2008 SP1

DE-2310 Developing Web Applications Using Microsoft Visual Studio 2008 SP1 DE-2310 Developing Web Applications Using Microsoft Visual Studio 2008 SP1 Summary Duration 5 Days Audience Developers Level 100 Technology Microsoft Visual Studio 2008 Delivery Method Instructor-led (Classroom)

More information

Component models. Page 1

Component models. Page 1 Component Models and Technology Component-based Software Engineering Ivica Crnkovic ivica.crnkovic@mdh.se Page 1 Overview Introduction ACME Architectural Description Language Java Bean Component Model

More information

Web Services For Translation

Web Services For Translation [Translating and the Computer 24: proceedings of the International Conference 21-22 November 2002, London (Aslib, 2002)] Web Services For Translation Mike Roche, IBM Software Group, Dublin, MikeRoche@ie.ibm.com

More information

Introduction to the.net Framework

Introduction to the.net Framework 04235946 Ch01.F 12/11/02 11:43 AM Page 3 CHAPTER 1 Introduction to the.net Framework Although the goal of this book is to introduce deployable solutions with the.net Enterprise Servers, it is necessary

More information

Building Windows Applications with.net. Allan Laframboise Shelly Gill

Building Windows Applications with.net. Allan Laframboise Shelly Gill Building Windows Applications with.net Allan Laframboise Shelly Gill Introduction Who are we? Who are you? What is your experience Developing with ArcGIS Desktop, Engine and Server ArcGIS 8.x, 9.x and

More information

RAD Studio XE Datasheet

RAD Studio XE Datasheet RAD Studio XE Datasheet DATASHEET Embarcadero RAD Studio XE Complete solution for Windows,.NET, PHP and Web application development Embarcadero RAD Studio XE is a comprehensive rapid application development

More information

DOWNLOAD OR READ : XML AND ASP NET PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : XML AND ASP NET PDF EBOOK EPUB MOBI DOWNLOAD OR READ : XML AND ASP NET PDF EBOOK EPUB MOBI Page 1 Page 2 xml and asp net xml and asp net pdf xml and asp net I have xml file sitting in my local drive, I need to convert it to PDF file by using

More information

THE ACUCOBOL AND RM/COBOL ROADMAP WHAT S NEXT?

THE ACUCOBOL AND RM/COBOL ROADMAP WHAT S NEXT? Leading the Evolution WHITE PAPER THE ACUCOBOL AND RM/COBOL ROADMAP WHAT S NEXT? This document outlines the future direction and options available for users of ACUCOBOL and RM/COBOL and provides an overview

More information

Copyright 2014 Blue Net Corporation. All rights reserved

Copyright 2014 Blue Net Corporation. All rights reserved a) Abstract: REST is a framework built on the principle of today's World Wide Web. Yes it uses the principles of WWW in way it is a challenge to lay down a new architecture that is already widely deployed

More information

The Web Service Sample

The Web Service Sample The Web Service Sample Catapulse Pacitic Bank The Rational Unified Process is a roadmap for engineering a piece of software. It is flexible and scalable enough to be applied to projects of varying sizes.

More information

5.1 Configuring Authentication, Authorization, and Impersonation. 5.2 Configuring Projects, Solutions, and Reference Assemblies

5.1 Configuring Authentication, Authorization, and Impersonation. 5.2 Configuring Projects, Solutions, and Reference Assemblies LESSON 5 5.1 Configuring Authentication, Authorization, and Impersonation 5.2 Configuring Projects, Solutions, and Reference Assemblies 5.3 Publish Web Applications 5.4 Understand Application Pools MTA

More information

Applying Code Generation Approach in Fabrique Kirill Kalishev, JetBrains

Applying Code Generation Approach in Fabrique Kirill Kalishev, JetBrains november 2004 Applying Code Generation Approach in Fabrique This paper discusses ideas on applying the code generation approach to help the developer to focus on high-level models rather than on routine

More information

Chapter 12 Microsoft Assemblies. Software Architecture Microsoft Assemblies 1

Chapter 12 Microsoft Assemblies. Software Architecture Microsoft Assemblies 1 Chapter 12 Microsoft Assemblies 1 Process Phases Discussed in This Chapter Requirements Analysis Design Framework Architecture Detailed Design Key: x = main emphasis x = secondary emphasis Implementation

More information

In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm.

In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm. Lab 1 Getting Started 1.1 Building and Executing a Simple Message Flow In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm.

More information

Welcome to another episode of Getting the Most. Out of IBM U2. I'm Kenny Brunel, and I'm your host for

Welcome to another episode of Getting the Most. Out of IBM U2. I'm Kenny Brunel, and I'm your host for Welcome to another episode of Getting the Most Out of IBM U2. I'm Kenny Brunel, and I'm your host for today's episode, and today we're going to talk about IBM U2's latest technology, U2.NET. First of all,

More information