My application is deployed to a web farm that does not use sticky sessions (unfortunately this is not an option). I would like to write the chart image to a web service and read it from there as the client browser does not always get redirected to the same server the image has been rendered to. I cannot use a file server due to security restrictions and do not have access to a database from the IIS service directly only to a wcf service.
ASP.NET MS Chart can I use Http Handler to Read and Write the Tempory Image from a web service
454 Views Asked by Keith At
1
There are 1 best solutions below
Related Questions in ASP.NET
- Create an IIS web request activity light
- Writing/Overwriting to specific XML file from ASP.NET code behind
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- Entity Framework Code First with Fluent API Concurrency `DbUpdateConcurrencyException` Not Raising
- Getting deeply embedded XML element values
- What is best way to check if any of the property of object is null or empty?
- NuGet - Given a type name or a DLL, how can I find the NuGet package?
- ASP-MVC Code-first migrations checkbox not active
- How do i add onclient click to my jquery button
- Jquery: Change contents of <select> tag dynamically
- Retrieving data from Oracle database
- ASP.NET: Fill Textbox field upon dropdownlist selection by user
- Why web API return 404 when deploy to IIS
Related Questions in WCF
- couldn't copy pdb file to another directory while consuming wcf web service
- Call wcf from android app
- WCF Service not accepting multiple body parameters
- Error in Calling some service in WCF Client
- WCF channel Factory caching
- How to convert a List<string> to an IEnumerable<ServiceReference.datatable> C# Silverlight WCF RIA Services LINQ to SQL
- WCF reusing types with inheritance - cannot generate client code
- System.ServiceModel.FaultException'1' Where might the error be?
- How to configure proxy address for multiple WCF-bindings at once?
- How pass XML from PHP to the Soap WCF service?
- Multiple service contract inter-commnication
- WCF Service not returning virtual property ServiceProvider
- How to get information about error from HttpContext in WCF services
- Using Service Bus to access On Premise WCF Service
- Test case for WCF REST Service
Related Questions in HTTPHANDLER
- Ajax controls have stopped working when user control loaded asynchronously and multiple times by JQuery ajax call
- Rename and/or Change Path to scriptresource.axd
- How can I implement a "viewstate" type solution in a composite control that also utilizes an http handler?
- HTTP Handler async issue .NET 4.5.2
- Is it possible to create dynamic HTTP Handlers?
- auth0 authentication issue: HttpContext.Current is null. This code path is only valid when in the execution context of ASP.NET
- clearing session values saved from a http handler file in asp.net
- Send JSON data to ASP.NET HTTP Handler
- HTTP Post to another IP Inside HTTP Handler
- Executing an ASPX file on an ASP.NET MVC Web Application
- asp.net ImageResizer InterceptModule possibly blocking httphandler?
- asp.net HTTPHandler prevents page from loading
- forceIframeTransport and context.Request in HttpHandler
- ASP.NET HTTP Handler Unrecognized Request
- wrapping HttpHandler .NET
Related Questions in MSCHART
- How to bind date in 24 hour format in ms chart
- For a SplineArea scrolling chart, show minute graduation on x-axis, but plot points every 6 seconds
- Winforms Chart - draw a allowed area on line chart
- Graph DataGrid Data on Chart
- AddXY points in a chart, Y point is shown but is not labeled
- Chart in winform displaying wrong Point
- Zooming of specific area in chart of win form
- c# MS chart get scrollbar value
- mschart - Poor interaction/cursor performance for larger data sets
- How do I make the grid lines on a Windows.Forms.DataVisualization.Charting.Chart scroll with the data?
- TFS automated build failure when using MS Chart 'file' generation
- How to increase the padding of a MSChart Datapoint label
- Get Series value from a mouse click
- View #VAL label on Pie Chart and NOT inside the Series when slice selected = true
- get chart value in point
Related Questions in WEB-FARM
- Web farm vs Clustering vs Load balancing IIS
- How to know whether the file has been changed on same server or has transferred from another server in asp.net
- What is a farm, as opposed to a grid or a cluster?
- Authentication with a Web farm
- SessionID changing across different instances in Azure (and probably in a web farm)
- is there an imagehandler in blogengine.net that will store the images in the database?
- How to scale Node.js application in standard way locally and between servers (cluster API is still experimental)?
- Webfarm authentication
- asp.net mvc and web farm
- ASP.NET Identity Core: invalid token for password reset on web farm
- ASP.NET MS Chart can I use Http Handler to Read and Write the Tempory Image from a web service
- MVC 3 tempdata container disadvantages
- Load balancing Vs MyMethod
- Set the default focus of an aspx page onto a button
- Web Farm with IIS10 Servers | Content Server: HTTP Error 500.0 - ASP.NET Core IIS hosting failure (in-process)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
So you are asking:
client -> WS Call -> ?? -> HTTPHandler that generates chart?
I'm not sure why you need the web service part.
You can use an HTTPHandler to generate the image this can work really well. Just instantiate your chart object and write it to the output stream.
Some sample code about saving to a stream from the nets.