Author: hoaxvn | Posted on: 4/2/2009 8:21:24 PM | Views : 977

 Hi All,
 
I need your help.
I have a struct called RECT
struct rect
{
      int x;
      int y;
      int width;
      int height;

 }
and a web service look like:
namespace Test.Geometry
{
    /// <summary>
    /// Summary description for Verification
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [ToolboxItem(false)]
    public class BaseGeom : System.Web.Services.WebService
    {
        [WebMethod]
        public rect GetRect("Parameters")
    ...

Go to the complete details ...