Salesforce : How to fetch report as json using C#
Learn how to easily execute and fetch Salesforce reports as json through Salesforce Reports and Dashboards REST API Using C#.
ASP.NET
Learn how to easily execute and fetch Salesforce reports as json through Salesforce Reports and Dashboards REST API Using C#.
Learn how to integrate Salesforce with .NET application using SOAP APIs and perform CRUD operation on Salesforce database directly through SOQL.
Integrating MySQL db with a ASP.NET and got stucked in "Parser Error Message: Could not load file or assembly 'MySql.Web.v20, Version=6.9.4.0'". Learn how to address this through MySQL .NET Connector installation.
See how this small C# code snippet can purge cache without restarting IIS server. This can prove quite handy particularly for Production environments.
Exceptions are safeguards to deal with any unexpected or exceptional situations and logging them helps finding the root cause of issues during runtime. Significance of logging becomes even more critical on production where resources to debug are…
There’s no reason not to use a CDN service like such as Akamai, Amazon CloudFront or Windows Azure, especially when most of end-user response time is spent downloading static resources like images, css and scripts. Regardless of…
Getting fully qualified absolute path of ASP.NET application is always tricky and problem arises when code moves across various platform. Hard coding the Application Path is no where a good solution here. The URL syntax is: scheme://domain:port/path?query_string#fragment_id…
Below is the ASP.NET C# implementation of Uploading binary data like images as POST request to target URL: private bool UploadFile(string PostURL) { try { int contentLength = fileUpload.PostedFile.ContentLength; byte[] data = new byte[contentLength]; fileUpload.PostedFile.InputStream.Read(data, 0, contentLength);…
The reason behind this question lies in HTTP protocol. Strange but it's true. HTTP is a stateless protocol. Each request is serviced as it comes; after the request is processed, all of the data is discarded. No…