2007-04-27 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Fri, 27 Apr 2007 09:28:14 +0000 (09:28 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Fri, 27 Apr 2007 09:28:14 +0000 (09:28 -0000)
* 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 [new file with mode: 0644]
data/net_2_0/DefaultWsdlHelpGenerator.aspx

diff --git a/data/net_2_0/ChangeLog b/data/net_2_0/ChangeLog
new file mode 100644 (file)
index 0000000..7b0fcf7
--- /dev/null
@@ -0,0 +1,8 @@
+2007-04-27  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * 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.
index e2368cf5cbadfcd25c7d8397cc91840e238ef97e..c9d2524786ba916c50f2b1b47438a954450e13ae 100644 (file)
@@ -1644,7 +1644,7 @@ function clearForm ()
        <p class="label">Web Service Overview</p>
        <%=WebServiceDescription%>
        <br/><br/>
-       <% if (ProfileViolations.Count > 0) { %>
+       <% if (ProfileViolations != null && ProfileViolations.Count > 0) { %>
                <p class="label">Basic Profile Conformance</p>
                This web service does not conform to WS-I Basic Profile v1.1
        <%