
7.29.2002
Manually Create Web Service Reference
This probably falls under the "duh - that's obvious" category, but wanted to blog it anyway.The IDE doesn't seem to like adding a web reference (web service) for something that runs on a non-standard port (i.e. not on port 80). Even though I enter the other port (i.e. http://blah.com:8000/foo.asmx), it ends up binding the proxy class to the standard http port 80.
So...run WSDL (thanks for the idea Kral) and generate the proxy class yourself.
wsdl http://blah.com:8000/foo.asmx?WSDL (remember to add the ?WSDL - this is what generates the wsdl xml that the tool is expecting as a return value)
This generates the output file containing the proxy class, which you add to your project just like any other cs file. Then create an instance and you're off and running.
NOTE: Looks like the generated proxy class
this.Url = "http://blah.com:8000/foo.asmx";
7.26.2002
7.24.2002
Database Timings
SqlDataConnection/Adapterselect * from tps_stations where location is not null == (139 rows)
loop over these operations 100 times
SqlDataReader
TypedDataSet
DataSet
First column - retrieve DataReader and DataSet data by column number. Retrieve as object (no cast).
Second column - retrieve DataReader and DataSet data by column number. Cast to string.
Third column - retrieve DataReader and DataSet data by column name. Cast to string.
Typed DataSet does the same thing in all 3 columns - retrieve string member by property accessor.
Results are in "operations per second"
Object = r[ColNum] | String = r[ColNum].ToString | String = r[ColName].ToString | |
DataReader | 15 | 15 | 14 |
Typed DataSet | 26 | 26 | 26 |
DataSet | 35 | -- | -- |