quarta-feira, setembro 07, 2005

WebServices - How to sort alfabetic the webmethods list

Look for file:
- C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG\DefaultWsdlHelpGenerator.aspx

Look for line:
Hashtable methodsTable = new Hashtable();

Change to:
//Hashtable methodsTable = new Hashtable();
SortedList methodsTable = new SortedList();

And that's it. Your WebMethods List is sorted Alphabetic.

Sem comentários: