Darrel Miller

5,912
reputation
882 views

Registered User

name Darrel Miller
member for 1 year
seen 23 mins ago
website
location Montreal, Canada
age 38
.Net business application developer for ISV that I am part-owner.
4h
answered Documenting a REST service
1d
accepted How do I refactor this SQL query?
1d
answered How do I refactor this SQL query?
2d
comment RESTFUL WCF Remove all xmlns
@marc They are compiler checked, don't have any funky syntax. If you import multiple namespaces you don't have to prefix. Imagine if for every namespace you imported you had create a prefix and use it in front of any classes you refer to. However, you are right that the same issues of namespace design exist in C# as they do in XML. It just does not seem as obvious what the right thing to do is!
Dec
12
comment Which is the future of web development: HTML5 or Silverlight(or other RIA framework)?
You do realize that the XMLHttpRequest function that enables all those cool Ajax apps was actually a proprietary extension introduced by Microsoft. Oh yeah, and many of the major Microsoft products are now supporting HTTP endpoints based on the AtomPub standard. For the record, I have no problem with a bit of gratuitous MS bashing, but having facts is a requirement in my book.
Dec
12
comment Which is the future of web development: HTML5 or Silverlight(or other RIA framework)?
Spend a few days on the HTML5 working group mailing list and you will see why HTML5 may not end up being an effective solution any time soon.
Dec
12
comment Which is the future of web development: HTML5 or Silverlight(or other RIA framework)?
I would say that PDF is another example of a proprietary technology that has been quite successful on the web. And I would say SVG is an example of an open technology that has been incredibly unsuccessful so far.
Dec
12
comment Which is the future of web development: HTML5 or Silverlight(or other RIA framework)?
...and there is absolutely no reason that both HTML5 and RIA cannot be used in conjunction. As long as Silverlight apps are written to respect the rules of the web. Providing deep links and avoiding server side session state is critical.
Dec
12
answered RESTful Service Method in WCF
Dec
12
comment RESTFUL WCF Remove all xmlns
@marc Let's say you embrace namespaces. I'm now modelling an invoice document and a purchase order document. So I choose two namespaces for the two schemas. Now both documents have quantity elements, both have price elements, both have sales tax elements. Should I factor out a common namespace to handle both scenarios, or should the two elements be unique? What about unit, address, date? From my experience, it is a really non-trivial exercise to plan out a valid set of namespaces for any reasonable sized data model.
Dec
12
comment RESTFUL WCF Remove all xmlns
@marc Look at WCF/WSDL's uses of namespaces. Namespaces for service contracts, namespaces for data contracts, namespaces for message contracts. Effectively these are complex magic strings full of punctuation characters that are case sensitive and if you make the slightest typo, stuff "just doesn't work", and frequently the compiler can't help at all. And what should be in the namespaces? Should we use the same namespace for operations, messages and data contracts? Should we version the namespaces? with year and month, or with a number?
Dec
12
comment RESTFUL WCF Remove all xmlns
@marc Because most of the time, a single XML document only contains data from a single domain. In this case namespaces add unnecessary complexity. Doing Xpath queries can be pain with namespaces. Although the XDocument model makes it a bit easier. The confusion over the different between the blank namespace and the default namespace can be confusing. When they are really needed, they are very useful, but in most cases I find they just get in the way.
Dec
11
comment RESTFUL WCF Remove all xmlns
Just out of curiosity, what data type is the parameter that accepts the posted body?
Dec
11
comment RESTFUL WCF Remove all xmlns
@John, you missed my point. When people say they use Json for their web service, I don't see people criticizing their choice and saying that they should XML instead. However, XML without namespaces is more commonly called out as a bad option. I'm not saying Json is better because people don't have problems with it.
Dec
11
answered RESTFUL WCF Remove all xmlns
Dec
11
comment RESTFUL WCF Remove all xmlns
It is interesting that nobody has a problem if people use Json (which does not support namespaces) but using Xml without namespaces is considered Evil(tm). Personally, I avoid namespaces for most of my own XML documents.
Dec
11
comment RESTful Service Method in WCF
What content-type is fiddler saying that you are receiving from your service, and from flickr?
Dec
9
comment Consume RESt API from .NET
One would assume it is possible. At the core it is just text going over a socket. However, it sounds like an awful lot of work to get a client to tell the server what the date is. Are you absolutely sure the Java API requires that the client specify the Date header?
Dec
9
comment Multiply 2 numbers and then sum with XSLT
Thanks. Solution #2 was exactly what I needed to create an aggregate multiplication function.
Dec
8
comment Consume RESt API from .NET
Hmmm, good news and bad news. Apparently it is supported in .Net 4 msdn.microsoft.com/en-us/library/…
Dec
8
comment Consume RESt API from .NET
My apologies. I dug into the source code for HttpClient and you are correct that setting the Date header is not supported. According to a comment in the code, the author does not know how to do it. I wrongly assumed that because there was a set accessor on the method that it was supported. Apparently the library authors intended to support it.
Dec
8
comment Consume RESt API from .NET
Why not? Do you get an error?
Dec
7
comment WCF + REST: Where is the request data?
Thanks for replying. I now understand why you are taking this approach. It is interesting that in order to understand why WCF works the way it does you have to dig into the implementation. It sort of defeats the purpose of trying to abstract away the complexity!
Dec
7
answered Doing a HTTP PUT from a browser
Dec
5
comment Real Time Twitter Status
Just to be pedantic, the Twitter API isn't even close to being a REST api. There is almost no hypermedia. The messages are not self-descriptive. It is an XML over HTTP but that does not make it REST.
Dec
5
comment WCF + REST: Where is the request data?
Holy cow! That's even worse than my solution :-)
Dec
5
awarded  Popular Question
Dec
5
awarded  Nice Question
Dec
5
answered Objective reasons for using Python or Ruby for a new REST Web API
Dec
5
answered WCF + REST: Where is the request data?
Dec
4
comment Consume RESt API from .NET
The problem with the example that you are giving is that you can only do the linq query against ADO.Net Data Service endpoints. You cannot do that against other REST endpoints. The OP will not be able to do this against his Java APIs.
Dec
3
answered Consume RESt API from .NET
Dec
2
comment Is it ok by REST to return content after POST?
Make sense to me. I've never used the Content-Location header before.
Dec
2
answered WCF Syndication Service not found in II6
Dec
2
comment Is it ok by REST to return content after POST?
I think Content-Location is for a different purpose. The HTTP spec says Content-Location is not defined for POST and PUT. The Location header is used with a 201-Create. Returning a Location does not do automatically do a redirect, you need a 3XX response code for that.
Dec
2
comment Consuming WCF REST service in multiple ways (.Net, plain XML)
If you use WCF Data Services (aka Astoria) in .Net 4 and VS2010 you will be able to "Add Service Reference" to it. I don't agree with the practice, but people want to do it.
Dec
2
accepted Is it ok by REST to return content after POST?
Dec
2
revised Is it ok by REST to return content after POST?
added 274 characters in body
Dec
2
answered Is it ok by REST to return content after POST?
Dec
1
comment Consuming WCF REST service in multiple ways (.Net, plain XML)
oops, that should have read "WCF REST Starter Kit Preview 2"
Dec
1
comment Consuming WCF REST service in multiple ways (.Net, plain XML)
In the WCF REST Start Kit there is a function called "Paste XML as Type" that allows you to generate classes based on returned XML that is in the clipboard.
Dec
1
accepted Consuming WCF REST service in multiple ways (.Net, plain XML)
Dec
1
answered Consuming WCF REST service in multiple ways (.Net, plain XML)
Nov
28
revised Does anyone know of an example of a RESTful client that follows the HATEOAS principle?
added 1653 characters in body
Nov
23
awarded  Popular Question
Nov
23
revised Does anyone know of an example of a RESTful client that follows the HATEOAS principle?
added 1832 characters in body
Nov
23
answered How to prevent concurrency in web service API?
Nov
22
comment Does anyone know of an example of a RESTful client that follows the HATEOAS principle?
I'm not actually using xlink, but I have considered it on numerous occasions. I'll see what I can do to create a good code example of what I currently do.
Nov
22
comment Mimetypes for a RESTful API
As Rich mentions, the mime-type is your contract. The entire semantic value of your application is contained in the mime-type. If you only deliver application/json the client can get very little value from your data without introducing out of band coupling, exactly what REST is trying to prevent.
Nov
22
answered Mimetypes for a RESTful API