Search Results

0
votes

returning null values from a web service call

Null just means null. There's no inherent security issue there. As a web service is a public API, you should be rigorously checking all input data and expect badly-formed input to occur. Yo …
0
votes

How can you use optional parameters in C#?

Instead of default parameters, why not just construct a dictionary class from the querystring passed .. an implementation that is almost identical to the way asp.net forms work with querystrings. …
0
votes

Best way to receive file through webservice

Not a direct answer but you may also want to look into BITS - Background Intelligent Transfer Service [ …
0
votes

C# Calling a method I dont yet know the name of yet? Reflection?

Reflection will only work if you already have a proxy (e.g. from wsdl.exe) that already knows all of the methods that need to be called. If you don't have the proxy, you're out of luck with reflect …
2
votes

Using an interface in a C# xml web service

My advice is to treat the objects that go over the wire as basic data transfer objects and nothing more. You're tempted to just use your domain objects and serialize them, but as you're already see …