Want to programmatically access your Sql Server Reporting Services Server? (SSRS) Turns out there’s an app for that! Or more precisely, a SOAP web service.
The Reporting Services SOAP API provides several Web service endpoints for developing custom reporting solutions. The endpoints currently fall into two categories: management and execution. The management functionality is exposed through [...]
Posts Tagged ‘service’
Integrating Reporting Services Using SOAP
Posted in Uncategorized, tagged microsoft, reporting, server, service, services, SOAP, sql, SSRS, WCF, web on 2009/10/07 | Leave a Comment »
Debugging ADO.NET Data Services
Posted in Uncategorized, tagged ado.net-data-services, debug, exception, IncludeExceptionDetailInFaults, service, UseVerboseErrors, verbose on 2009/07/16 | 1 Comment »
My service is broke-a$….er I mean my friend is having issues with his code and this is the link I sent him.
By default, Data Services don’t return information on what’s wrong when you try to execute some code, for example an update, against it. This is understandable: if you open up a data service on [...]
$filter Query Option in ADO.NET Data Services
Posted in Uncategorized, tagged ado-net, ado.net-data-services, filter, query, service, web-service on 2009/07/16 | 1 Comment »
ADO.NET Data Services provides filtering options for free.
What can go in a $filter? The most basic thing to do is to test properties of the resources we’re returning, which you can access simply by name, like we have done above. Literals for things like strings and numbers use the same syntax as in the key [...]
InitializeService in ADO.NET Data Services
Posted in Uncategorized, tagged ado-net, ado.net-net-data-service, debug, entity-framework, IncludeExceptionDetailInFaults, InitializeService, service, web-service on 2009/07/15 | Leave a Comment »
Need to debug an ADO.NET Data Service?
Another interesting point has to do with error handling. The option for error handling is set during InitializeService. If an exception is thrown while InitializeService is being called, we don’t trust whatever was set on the configuration, and instead of the ADO.NET Data Service error handling kicking in, we’ll [...]
ADO.NET Data Services Viewer Tool
Posted in Uncategorized, tagged .net, ado.net, ado.net-data-service, data, development, microsoft, service, utility, web-service, web-service-utility on 2009/04/01 | Leave a Comment »
Haven’t given this a try yet but I definitely plan to soon.
I build this tool to help me build ADO.NET Data Services URL query ( for example http://e4d.com/Courses.svc/Courses?$orderby=Date/ )
and to see the result. this is first version, please send feedback…
Key Features:
1. URL IntelliSense
2. URL Tooltip
3. Data Grid View
4. XML Atom View
5. Data Service Metadata View
via [...]