Click here to Skip to main content
15,886,071 members
Articles / Web Development / ASP.NET
Article

Flash and WebSerives - Part 2

Rate me:
Please Sign up or sign in to vote.
2.60/5 (3 votes)
13 Jan 2006 24.2K   119   12   2
Here, you can read about a Serialized webservice which can return multiple rows.

Sample Image

Introduction

In this second-part article, I just add a new serialization class and a new method to the webservice described in part one.

Background

Before, we just got a single row information from the webservice, in this case, we can get multiple rows. The technique is I'm using an array here to return results.

Using the code

At the top of the class file, we add our array for simulating the database :)

C#
string[] aUsers = new string[]{"admin","nisse","kalle","Jonas"};

Here is the new serialization class:

C#
[Serializable()]
public class oUserList
{
    public string sName;
    
    public oUserList()
    {
    }

    public oUserList(string sTheName)
    {
        sName = sTheName;
    }

}

And this is the method:

C#
[WebMethod]
public oUserList[] getList()
{
    
    oUserList[] objUserList = new oUserList[aUsers.Length];
    for(int i=0;i<aUsers.Length;i++) 
    {
        objUserList[i] = new oUserList();
        objUserList[i].sName = aUsers[i];
    }
    return objUserList;

}

We also add a new button and a list box in the Flash file. Here is the code for the Click event of the new button:

JavaScript
on(press)
{
    var objGetUsers = _global.webServicen.getList();
    objGetUsers.onResult = function(sResult)
    {
        var oUserList = new objGetUsers.oUsers();
        oUserList = sResult;
        
        myList = new Array();
        _root.lbUserlist.dataProvider = myList;
        
        for(i=0;i<oUserList.length;i++)
        {
            myList.addItem({label: oUserList.getItemAt(i).sName, 
                            data: oUserList.getItemAt(i).sName });
        }
        
    }
    objGetUsers.onFault = function()
    {
        
    }
}

History

Good luck... Check out the first article: Flash and WebSerives.

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

 
Questionhelp me to bind webservice with flash!!! [modified] Pin
chiragfriend20056218-Sep-07 1:09
chiragfriend20056218-Sep-07 1:09 
QuestionGetting in contact Pin
Sailor6722-May-07 23:15
Sailor6722-May-07 23:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.