[Mono-bugs] [Bug 421268] [regression] web services with methods returning IList<T> fail

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Tue Nov 4 18:33:03 EST 2008


https://bugzilla.novell.com/show_bug.cgi?id=421268

User atsushi at ximian.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=421268#c2


Atsushi Enomoto <atsushi at ximian.com> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
             Status|NEW                                             |RESOLVED
         Resolution|                                                |INVALID




--- Comment #2 from Atsushi Enomoto <atsushi at ximian.com>  2008-11-04 16:33:02 MST ---
Since you never post example code, I've created a proof of concept repro that
results in an error under .NET and closing this bug as INVALID.


<%@WebService Class="WebServices.TestWebService" Language="C#" %>

using System.Collections.Generic;
using System.Web.Services;
using System.Web.Services.Protocols;

namespace WebServices
{
        [WebService (Namespace = "http://tempuri.org/")]
        public class TestWebService : System.Web.Services.WebService
        {
                [WebMethod]
                public IList<T> HelloWorld<T> ()
                {
                        return null;
                }
        }
}


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list