Click here to Skip to main content
6,305,776 members and growing! (17,380 online)
Email Password   helpLost your password?
Languages » C / C++ Language » General     Intermediate

Flash and WebSerives - Part 2

By daniel_nilsson

Here, you can read about a Serialized webservice which can return multiple rows.
C#.NET 1.1, Win2K, WinXP, Win2003, ASP.NET, VS.NET2003, Dev
Posted:13 Jan 2006
Views:13,526
Bookmarked:10 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
3 votes for this article.
Popularity: 1.24 Rating: 2.60 out of 5
1 vote, 33.3%
1

2
1 vote, 33.3%
3

4
1 vote, 33.3%
5

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 :)

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

Here is the new serialization class:

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

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

}

And this is the method:

[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:

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

About the Author

daniel_nilsson


Member
Systemdeveloper at DEN Production in Sweden
Occupation: Web Developer
Location: Sweden Sweden

Other popular C / C++ Language articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 2 of 2 (Total in Forum: 2) (Refresh)FirstPrevNext
Questionhelp me to bind webservice with flash!!! [modified] Pinmemberchiragfriend2005622:09 18 Sep '07  
QuestionGetting in contact PinmemberSailor670:15 23 May '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 13 Jan 2006
Editor: Smitha Vijayan
Copyright 2006 by daniel_nilsson
Everything else Copyright © CodeProject, 1999-2009
Web11 | Advertise on the Code Project