Re: [DOTNET] SQL Server and ASPNET user

2002-06-18 Thread Justin Harrell
ave a script the will find all sp's in the db and grant execute to the db_executor role. Justin Harrell Vice President Development Aciss Systems Inc. -Original Message- From: Karen Healey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 18, 2002 4:55 PM To: [EMAIL PROTECTED] S

Re: [DOTNET] Diff between Asynchronous calls and threading

2002-06-12 Thread Justin Harrell
Asynchronous calls are in general using threads, they are just managing the threads for you. You can simulate async calls using the sync ones and your own background threads. That is of course more work, but you have more control over the threads. Justin Harrell Vice President Development Aciss

Re: [DOTNET] Problem with Service and File System Watcher

2002-06-12 Thread Justin Harrell
instead go to a polling approach, that moves the file to process out of the folder then simply poll every so often for new files. Justin Harrell Vice President Development Aciss Systems Inc. -Original Message- From: Scott Boston [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12

Re: [DOTNET] Problem with Service and File System Watcher

2002-06-12 Thread Justin Harrell
pool as if you made them yourself, it's a snap to do and should gurantee no overflows. Justin Harrell Vice President Development Aciss Systems Inc. -Original Message- From: Don Davis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 2:53 PM To: [EMAIL PROTECTED] Subject: R

Re: [DOTNET] Problem with Service and File System Watcher

2002-06-12 Thread Justin Harrell
) retrieve the files off the queue and run your process procedure. This way you will not use the thread from the filesystemwatcher to also run you (long running?) process code, it is instead decoupled and handled by your own threads. Justin Harrell Vice President Development Aciss Systems Inc

Re: [DOTNET] Using DataSets as an IMDB

2002-06-07 Thread Justin Harrell
Cool, last time I looked they didn't mention doing anything for Dotnet, now I need to check this out. One of there founders is very active in Comp.Databases.Theory, and seems to really have a grasp on what a object database can do and should do compared to relational. Justin Harrell

Re: [DOTNET] Using DataSets as an IMDB

2002-06-07 Thread Justin Harrell
Yes an IMDB is a database where the data is stored in memory (volatile storage) and the engine may be in or out of process, an in-proc database is one where the engine executes in your process but the data may be stored on disk (like Jet) or perhaps in RAM. Justin Harrell Vice President

Re: [DOTNET] XML is not a database

2002-06-07 Thread Justin Harrell
nce the xml database I linked to accepts XPath as a query language yet it is not a DOM. Justin Harrell Vice President Development Aciss Systems Inc. -Original Message- From: Brad Wilson [mailto:[EMAIL PROTECTED]] Sent: Friday, June 07, 2002 10:52 AM To: [EMAIL PROTECTED] Subject: [

Re: [DOTNET] Using DataSets as an IMDB

2002-06-07 Thread Justin Harrell
ion the XML DOM is not the right solution (yet). I am still hoping for someone to write a fast in-proc OODB(or even relational) in Dotnet to bridge the gap between XMLDOM/Datasets and MSDE. Perhaps something like www.db4o.com for Dotnet. Justin Harrell Vice President Development Ac

Re: [DOTNET] Serial comms with C# in .NET

2002-05-10 Thread Justin Harrell
Have posted my JustinIO.cs at http://www.gotdotnet.com , it is a very simple wrapper around the win32 blocking file I/O for using the comm ports, I wrote it back in PDC Release days. I have seen it modified to use parallel ports as well. It should get you started, although most of the inquiries I

Re: [DOTNET] Detecting DotNet from the browser

2002-05-03 Thread Justin Harrell
IE is also the only browser that allows CLR client deployment too, right? Justin -Original Message- From: Brad Wilson [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 5:07 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Detecting DotNet from the browser Nikhil Kothari wrote: > The

Re: [DOTNET] Detecting DotNet from the browser

2002-05-03 Thread Justin Harrell
I believe when the runtime is installed it injects some text in the User Agent header sent by IE, which you can read server side. Justin -Original Message- From: Patrick Burrows [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 4:40 PM To: [EMAIL PROTECTED] Subject: [DOTNET] Detecti

Re: [DOTNET] Attaching to a window

2002-04-22 Thread Justin Harrell
Its not so much multi-threading as inter-process communication (IPC) that you need info on. The .Net way to do IPC either on the same machine or across the network on different machines is Remoting plain and simple. Remoting is relatively simple and gives you transparent access to object running i

Re: [DOTNET] Generating XML Log Files

2002-04-19 Thread Justin Harrell
, April 19, 2002 4:41 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Generating XML Log Files Why not use Logkit.Net and implement your own XML formatter? -Original Message- From: Justin Harrell [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 2:18 PM To: [EMAIL PROTECTED] Subject

Re: [DOTNET] Generating XML Log Files

2002-04-19 Thread Justin Harrell
While working on my own project I too wanted to use XML for logging. On eissue is of course you would not want to use a in-memory dom model and save the entire log on every modification, as that technique would not scale as the number of entries became more than a few. The other issue with xml l

Re: [DOTNET] Disable generation of code behind in IDE

2002-04-12 Thread Justin Harrell
Well the thing is code behind is a much better model for web application design, but also more cumbersome for just a quick dynamic page. I tend to dislike IDE's that force coding styles on you without a choice, this is why I gave up on Frontpage along time ago when it mutilated hand coded html to