Click here to Skip to main content
15,896,538 members
Articles / Web Development / ASP.NET

Flash and Web Services

Rate me:
Please Sign up or sign in to vote.
4.58/5 (11 votes)
4 Jan 2006 71.3K   748   43  
An easy way to working with Flash and Web Services.
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Web;
using System.Web.Services;

namespace WebServiceAndFlash
{
	/// <summary>
	/// Summary description for Service1.
	/// </summary>
	public class login : System.Web.Services.WebService
	{
		public login()
		{
			//CODEGEN: This call is required by the ASP.NET Web Services Designer
			InitializeComponent();
		}

		#region Component Designer generated code
		
		//Required by the Web Services Designer 
		private IContainer components = null;
				
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
		}

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if(disposing && components != null)
			{
				components.Dispose();
			}
			base.Dispose(disposing);		
		}
		
		#endregion

		// WEB SERVICE EXAMPLE
		// The HelloWorld() example service returns the string Hello World
		// To build, uncomment the following lines then save and build the project
		// To test this web service, press F5

		[WebMethod]
		public oUsers loginUser(string sUsername, string sPassword)
		{
			oUsers objUsers = new oUsers();
			try
			{
				if( sUsername.Equals("admin") && sPassword.Equals("admin") )
				{
					
					objUsers.sEmail = "admin@administrator.com";
					objUsers.sName = "Adam";
					objUsers.sPassword = "admin";
					objUsers.sUsername = "admin";
				}
				else
				{
					throw new ApplicationException("Wrong user!");
				}
			}
			catch
			{
				throw new ApplicationException("Error");
			}
			
			return objUsers;
		}
	}

	[Serializable]
	public class oUsers
	{
		public string sName;
		public string sEmail;
		public string sUsername;
		public string sPassword;

		public oUsers()
		{
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect Värderingsdata
Sweden Sweden
Systemdeveloper at Värderingsdata in Sweden

Comments and Discussions