i am making a webservice, mostly is done but the thing is [WebMethod] returns a .net DataTable so client using other platform won't be able to call it, I need the architecture to be SOA(details here) like it takes a request and gives a response. I can use xml serializable classes to get the data but i have no idea how would they fit in. any ideas?
|
|
||||
| show 2 more comments |
|
Return an custom class and just use arrays and not lists or dictionary's. Just did this and PHP, Java and .Net developers will be ale to work with your object. You can also expose JSON there is a walk though on how to do that. Also take a look at Web API you may decide to use it instead. On another note: PHP can have trouble with its native SOAP support which is 1.1, so use basichttp bindings or the client will need to use NuSoap which is SOAP 1.2 instead. |
||||
|
|
|
If you want to expose your HTTP services to as wide a range of clients as possible, then I would recommend dropping SOAP based messaging altogether and instead represent your data as XML, JSON and/or any other content type which you wish to support, according to a schema which you define for your data. IMHO, a very good OSS framework for this purpose is OpenRasta. |
||||
|
|
|
I would investigate using RESTful services and returning the data as a platform agnostic format like XML or JSON as others have suggested. Additionally, take a look at using ASP.NET MVC for your services in favor of WCF. It's a much better system than WCF in my opinion: |
|||
|
|
|
WCF can easily support SOAP (basicHttpBinding) or REST (webHttpBinding) style service interfaces with out-of-the-box bindings. You can certainly build ASMX, but the usages are dying off. I just wrote a WCF REST/SOAP interface to replace a legacy ASMX that was using |
|||
|
|
string– jaminator Jan 27 '12 at 14:16