[Mono-bugs] [Bug 513876] New: Browser caches web service calls from web service test page

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Wed Jun 17 06:09:01 EDT 2009


http://bugzilla.novell.com/show_bug.cgi?id=513876


           Summary: Browser caches web service calls from web service test
                    page
    Classification: Mono
           Product: Mono: Class Libraries
           Version: 2.4.x
          Platform: x86
        OS/Version: Debian Potato
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: Sys.Web.Services
        AssignedTo: atsushi at ximian.com
        ReportedBy: kobruleht2 at hot.ee
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---


Description of Problem:

If invoke button is pressed multiple times from service test form, web service
is called only once.

Steps to reproduce the problem:

1. Create asmx web service in VWD2008 Express and host it in Linux server under
mod_mono:

StockService.asmx:

<%@ WebService Language="C#" Class="Myapp.StockService" %>


C# :

using System;
using System.Web.Services;
namespace MyApp
{
[WebService]
public sealed partial class StockService : WebService
{

[WebMethod]
public string Test() { return DateTime.Now().ToString(); }
}
}

2. Open this web service test page from Internet Explorer 8 under Vista:

http://mysite.com/StockService.asmx

3. Open test "Test Form" and click to Invoke button several times.

Observed:

Datetime returned does not change

Expected:

Datetime must change on each click to Invoke button.

-- 
Configure bugmail: http://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