i have done my webservice with this example....but i am facing one
problem.That is i need to know the structure of the webservice in order
to implement to my webservice.i hav given my code below for
webservice./*public class Checking { public String check(String u,String
p) { if(u.equals("admin") && p.equals("admin")) { return "Valid User"; }
else { return "Invalid User"; }}}*/I need to handle this web service in
flex.I am new to this forum and flex.So please bare wit my knowledge and
help me.th...