[Mono-bugs] [Bug 350398] New: [Regression] Commit 91343 broke web services

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Fri Dec 21 13:47:41 EST 2007


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


           Summary: [Regression] Commit 91343 broke web services
           Product: Mono: Class Libraries
           Version: SVN
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Major
          Priority: P5 - None
         Component: Sys.Web
        AssignedTo: mhabersack at novell.com
        ReportedBy: juraj at hotfeet.ch
         QAContact: mono-bugs at ximian.com
          Found By: ---


Test case:
==========

DummyService.asmx:
------------------
<%@ WebService Class="Test.DummyService" %>
using System;
using System.Web.Services;

namespace Test {
        public class DummyService : WebService {
                [WebMethod]
                public string SayHello() {
                        return "hello";
                }
        }
}

- save the code above to a file DummyService.asmx
- start xsp2
- request localhost:8080/DummyService.asmx
=> NullReferenceException

After reverting commit 91343 ("svn merge -c -91343" and adding the <compilers>
block back to system.web/compilation in /etc/mono/2.0/web.config), everything
works as expected again (request localhost:8080/DummyService.asmx show the
WebService info page).


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