Click here to Skip to main content
Licence 
First Posted 13 Jan 2006
Views 16,741
Downloads 40
Bookmarked 12 times

Flash and WebSerives - Part 2

By daniel_nilsson | 13 Jan 2006
Here, you can read about a Serialized webservice which can return multiple rows.
1 vote, 33.3%
1

2
1 vote, 33.3%
3

4
1 vote, 33.3%
5
2.60/5 - 3 votes
μ 2.60, σa 3.50 [?]

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

Architect
Värderingsdata
Sweden Sweden

Member
Systemdeveloper at Värderingsdata in Sweden

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionhelp me to bind webservice with flash!!! [modified] Pinmemberchiragfriend2005622:09 18 Sep '07  
QuestionGetting in contact PinmemberSailor670:15 23 May '07  
Hi Daniel,
 
I would like to get in contact with you regarding a specific project in Sweden.
Could you please contact me at lars@sorqvist.com.
 
Kind regards
Lars

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120210.1 | Last Updated 13 Jan 2006
Article Copyright 2006 by daniel_nilsson
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid