473,486 Members | 1,850 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

StreamWriter invalidates web service cache: bug?

I insert a string in cache in a property set and I retrieve that string in
the get.

I retrieve my string with Read web method and I insert it with Write web
method: to try cache I do Read, Write, Read.

When I do the second Read, string is null if in the property set,
before/after inserting data into cache I write this code:

using (StreamWriter streamWriter = new
StreamWriter(@"D:\Log.txt"))
{
streamWriter.Write(cacheValue);
streamWriter.Flush();
}

Debuggin the Write, in the watch windows I see the correct just inserted
value of cache.

The same behaviour persists if I write "Hello world" instead of cacheValue:
this deny to use cache in a web service where you need to write to a file!!!

It seems to be a bug since this behaviour is a nonsense!
Thanks,
Luigi.
Jun 14 '07 #1
5 2975

"BLUE" <bluewrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
>I insert a string in cache in a property set and I retrieve that string in
the get.

I retrieve my string with Read web method and I insert it with Write web
method: to try cache I do Read, Write, Read.

When I do the second Read, string is null if in the property set,
before/after inserting data into cache I write this code:

using (StreamWriter streamWriter = new
StreamWriter(@"D:\Log.txt"))
{
streamWriter.Write(cacheValue);
streamWriter.Flush();
}

Debuggin the Write, in the watch windows I see the correct just inserted
value of cache.

The same behaviour persists if I write "Hello world" instead of
cacheValue: this deny to use cache in a web service where you need to
write to a file!!!

It seems to be a bug since this behaviour is a nonsense!
Again, you should post to a dotnet.webservice NG that deals with Web service
issues, using VB, C# and C++ .NET. They have most likely been down the path
you're trying to go down.

Jun 14 '07 #2
On Jun 14, 11:10 am, "BLUE" <bluewrote:

<snip>
The same behaviour persists if I write "Hello world" instead of cacheValue:
this deny to use cache in a web service where you need to write to a file!!!

It seems to be a bug since this behaviour is a nonsense!
This all sounds very unlikely. Could you post a short but complete
program which demonstrates the behaviour? See http://pobox.com/~skeet/csharp/complete.html
for what I mean by that.

Jon

Jun 14 '07 #3
Finally I've found the error: if I try to write a file to bin dir (my desire
was to put all there to be tidy) the cache does not retain the values.

This is the code I used.

<%@ WebService Language="C#" Class="WS.MyWS" %>

using System;
using System.IO;
using System.Web.Services;
using System.Xml;

namespace WS
{
[WebService(Namespace="http://microsoft.com/webservices/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class MyWS: WebService
{
private DateTime LastUpdateDateTime
{
get
{
string path = this.Server.MapPath("bin\\File.txt");
DateTime utcNow = DateTime.UtcNow;
DateTime lastUpdateDateTime;
string cacheValue =
(string)this.Context.Cache["lastUpdateDateTime"];
if (cacheValue != null)
return XmlConvert.ToDateTime(cacheValue,
XmlDateTimeSerializationMode.Utc);

StreamReader streamReader = null;
try
{
streamReader = new StreamReader(path);
string s = streamReader.ReadToEnd().Trim();
// I want to see if cache value is taken so I comment
the following line
// lastUpdateDateTime = XmlConvert.ToDateTime(s,
XmlDateTimeSerializationMode.Utc);
lastUpdateDateTime = utcNow.AddYears(-7);
}
catch
{
File.Delete(path);
lastUpdateDateTime = utcNow.AddYears(-7);
}
finally
{
if (streamReader != null)
streamReader.Close();
}

return lastUpdateDateTime;
}
set
{
try
{
string cacheValue = XmlConvert.ToString(value,
XmlDateTimeSerializationMode.Utc);
this.Context.Cache["lastUpdateDateTime"] = cacheValue;

string path = this.Server.MapPath("bin\\File.txt");
using (StreamWriter streamWriter = new
StreamWriter(path))
{
streamWriter.Write(cacheValue);
streamWriter.Flush();
}
}
catch
{
}
}
}

[WebMethod]
public string Read()
{
DateTime dt = this.LastUpdateDateTime;
return XmlConvert.ToString(dt,
XmlDateTimeSerializationMode.Utc);
}

[WebMethod]
public void Write()
{
this.LastUpdateDateTime = DateTime.UtcNow;
}
}
}
Jun 14 '07 #4
On Jun 14, 2:43 pm, "BLUE" <bluewrote:
Finally I've found the error: if I try to write a file to bin dir (my desire
was to put all there to be tidy) the cache does not retain the values.
Right. I suspect ASP.NET thinks it's a change to your application, and
is recycling it (restarting the web app, basically).

Writing to the bin directory sounds like a bad idea anyway though.

Jon

Jun 14 '07 #5

"BLUE" <bluewrote in message news:u5**************@TK2MSFTNGP04.phx.gbl...
Finally I've found the error: if I try to write a file to bin dir (my
desire was to put all there to be tidy) the cache does not retain the
values.
One shouldn't write to the Bin directory or to wwwroot/appvirtual. It's a
security risk that a hacker can exploit. One reads a Web.config, App.config
or even a text.fle that has pathing pointing somewhere instead of anywhere
but the Web server itself on wwwroot.

Jun 14 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
1717
by: noah | last post by:
Hi, I'm in the middle of writing a multi-user system with very critical timing issues. I've already implemented a cache and an API to access it (with appropriate locking for multithreaded access)....
4
20532
by: rex64 | last post by:
I am getting an error message and I have not been able to figure hot how to fix it. I have done some research with no answers yet. I found this code that may help? Not sure what to do with it....
10
4602
by: Oscar Thornell | last post by:
Hi, I generate and temporary saves a text file to disk. Later I upload this file to Microsoft MapPoint (not so important). The file needs to be in UTF-8 encoding and I explicitly use the...
0
2034
by: Kevin | last post by:
I'm writing a service in VB.NET. Reference the following code: Dim oStreamWriter As StreamWriter .... .... .... oStreamWriter = File.CreateText(TempLogFile) If Err.Number <> 0 Then...
2
1701
by: MATT | last post by:
I am trying to create a windows service. The part I am having trouble with is writing text to a log file. I am using a very basic StreamWriter function to try to test this. I have created a...
3
13757
by: =?Utf-8?B?RGFuZGFuIFpoYW5n?= | last post by:
Now I have a web application, a web service and a SQL Server database. The Web application will invoke the web service, the web service invokes the SQL Server stored procedure. I let the web...
11
7881
by: Joseph Geretz | last post by:
I've been looking at two approaches for the maintenance of Session state for a Web Service application. One approach uses the old familiar Session object which I've used in the past for Web...
3
9179
by: BLUE | last post by:
I've created a folder named TestDir in my wwwroot and I've created the associated virtual application from IIS management snap-in. I've given full control to TestDir to: IUSR, ASPNET, Network...
1
5745
by: MSwanston | last post by:
Hi I need some help with saving retreiving data from the cache, and how best to structure my code. FYI am working in VS2005/under .NET2 Framework. Ok, we have a series of reports that get run via...
0
7094
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
6964
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7173
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7305
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5427
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4863
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4559
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3070
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
259
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.