A Question Regarding WebService Test Page

  • Thread starter Thread starter batista
  • Start date Start date
B

batista

Hello all,

I just want to ask one question about the web service test page.
The functions which are shown on this test page are not shown in the
order in which they are implemented in code.
They are not even ordered alphabetically...
So in what order are they shown? and can I change their order?

Thanks.
Cheers...
Bye.
 
Why do u need to do it? You need to call WS methods, what the reason to
solt it alphabetically?
 
Theres a file on your system called "DefaultWsdlHelpGenerator.aspx", should
be located in the CONFIG directory of the default framework installation.
In that file, replace the line

Hashtable methodsTable = new Hashtable();

with :

SortedList methodsTable = new SortedList();

and the methods will be sorted into alpha order.
 
Hello all,

Thanks for the replies...

I actually dont need it but just for curiosity I asked it....

Because I saw one webservice test page showing them in alphabetical
order...
So just for updating my knowledge about the subject....

Anyways Thanks for the replies...

Bye.
 
Back
Top