That is if you can get it to work.
It is sensitive to DCOM permission settings.
This is an article on how to setup the DCOM settings that will allow the SQL Server debugger to work.
Random outpourings of a software developer
This is an article on how to setup the DCOM settings that will allow the SQL Server debugger to work.
sed -e 1,250000d report.tsv > output.txt
Removes the first 1/4 million rows from the given file before passing the output to a file.
This is very useful when a tsv file is 15 Mb – way too big for excel to view.
sed may be old, but it does do the job quickly that very few other tools handle so well.
I have just got a Hello World web service client to run under MonoDevelop. The only sticking point that I had found was forgetting to add System.Web,Services as a reference.
Given that the mono wsdl works that well we have a great opertunity for interoperability. The promise of web services can be realised.
The problem comes with the update web reference option. If you have decorated the proxy with attributes (such as a soap extension) these are lost upon regeneration. There does not seem to be a clean way of managing this. We really need more control of the template than WSDL.exe provides. I am sure that xslt could be used…
.NET 2.0 does promise more control over this generation.