Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Ordered Web Methods

Status
Not open for further replies.

RichS

Programmer
Joined
Apr 24, 2000
Messages
380
Location
US
I am trying to order the methods in a web service alphabetically. Supposedly all you have to do is change line 1285 in C:/Windows/Microsoft .NET/.../DefaultWsdlHelpGenerator.aspx from a Hashtable to a Sorted List as follows:
Code:
//Hashtable methodsTable = new Hashtable();
SortedList methodsTable = new SortedList();
This seems to have no effect on the order of the methods. Any ideas about what I'm doing wrong?

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top