From ffe808f2f8babf7e37c1cc6b368ecb94121f019f Mon Sep 17 00:00:00 2001 From: Atsushi Eno Date: Fri, 27 Apr 2007 09:28:14 +0000 Subject: [PATCH] 2007-04-27 Atsushi Enomoto * DefaultWsdlHelpGenerator.aspx : ProfileViolations could be null, when there is no Binding. So, don't omit null check. Stop your bad habit of missing ChangeLog. Former changes (as long as logged) can be seen in ../../ChangeLog. svn path=/trunk/mono/; revision=76377 --- data/net_2_0/ChangeLog | 8 ++++++++ data/net_2_0/DefaultWsdlHelpGenerator.aspx | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 data/net_2_0/ChangeLog diff --git a/data/net_2_0/ChangeLog b/data/net_2_0/ChangeLog new file mode 100644 index 00000000000..7b0fcf736de --- /dev/null +++ b/data/net_2_0/ChangeLog @@ -0,0 +1,8 @@ +2007-04-27 Atsushi Enomoto + + * DefaultWsdlHelpGenerator.aspx : + ProfileViolations could be null, when there is no Binding. So, + don't omit null check. + + Stop your bad habit of missing ChangeLog. Former changes (as long + as logged) can be seen in ../../ChangeLog. diff --git a/data/net_2_0/DefaultWsdlHelpGenerator.aspx b/data/net_2_0/DefaultWsdlHelpGenerator.aspx index e2368cf5cba..c9d2524786b 100644 --- a/data/net_2_0/DefaultWsdlHelpGenerator.aspx +++ b/data/net_2_0/DefaultWsdlHelpGenerator.aspx @@ -1644,7 +1644,7 @@ function clearForm ()

Web Service Overview

<%=WebServiceDescription%>

- <% if (ProfileViolations.Count > 0) { %> + <% if (ProfileViolations != null && ProfileViolations.Count > 0) { %>

Basic Profile Conformance

This web service does not conform to WS-I Basic Profile v1.1 <% -- 2.25.1