| To know who is running the .net application (3 replies) |
| microsoft.public.dotnet.distributed_apps |
| If there are 3 users running the .net distributed applications. How are we able to track who signed to the application and what function is he/she is using? |
|
| Does this architecture make sense? (4 replies) |
| microsoft.public.dotnet.distributed_apps |
| I have been doing a bit of work for a customer and they have come up with this architecture... Web Server IIS, ASP pages App Server ASP Web Services API, business logic layer DataAccess Server ASP Web Service or .NET Remoting, dataAccess layer Database Server SQL 2000, Stored procedures So we have 4 layers and 4 servers (at least, there may be 1 in each layer) What is the point of having the Data ... |
|
| System Event Sync (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| I am trying to write a Task Manager type application in C#. The only problem that I am having is recieving the system events for process start and process end. I went down the road of the WMI ManagementEventWatcher class, but because of processor intensity of polling and because, if a process starts and stops in between polling intervals, you do not get the events, I am trying to find a better way... |
|
| Replacing DCOM (3 replies) |
| microsoft.public.dotnet.distributed_apps |
| Hello, We have a scenario where a server(Normal EXE) creates instances of the client (ActiveX EXE) on various systems using the IP address.Some processing takes place on the client system and data is sent back to the server. This is currently being done using DCOM. Is there any option of making this as a WebService using .Net Regards Nirmal My reply to address is purposely mangled to thwart auto r... |
|
| MVC in .NET (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| All, Recently, I battled in my mind about using MVC (Model, View and Controlder) in ASP.NET development or not. Let us say if I use MVC, then the modle object will handle get information from HttpRequest, do validations and things like that. In this case, I lose the power of using Web server controls .NET offers. Someone may view code behind as model, but this is different from what the relationsh... |
|
| File or assembly name XXX, or one of its dependencies, was not found (3 replies) |
| microsoft.public.dotnet.distributed_apps |
| HI, I am having a problem loading an assembly from a server activated ServicedComponent. I am trying to load it as follows: objAssembly Reflection.Assembly.Load("MyAssembly") This works fine if the recompile the caller as library activated. All of my components are in the GAC. From looking at the details given by the Assembly Binding Log Viewer (see below) it seems that it is only looking in C:\Wi... |
|
| COM+(MTS) transaction (4 replies) |
| microsoft.public.dotnet.distributed_apps |
| Is anyone know how to catch "end transaction" event from COM in your application? From ContextUtil object I can have a TransactionId for some particular transaction, but I don't know how to write event handler for 'end transaction' event. I found some method in ResourcePool (TransactionEndDelegate), but it is not clear for me how can I use it. Any info will be very valuable. Thanks. |
|
| Communication between layers (5 replies) |
| microsoft.public.dotnet.distributed_apps |
| Hi all, I'm new to Enterprise development, and there's a question that's bugging me since we started in this new project: We have a 4 layer solution to be implemented in VB.NET. Is it correct (from OO point of view) to communicate between layers, from the data access until User layer, using the Dataset type? Ex: Let's say I have a populateUser method in my Data access layer. This method would popu... |
|
| writing ISAPI filter/extension using .Net (6 replies) |
| microsoft.public.dotnet.distributed_apps |
| This may seem like a strange question to ask, but does anyone have a recommendation on how to go about writing an ISAPI filter using .Net languages? Specifically, is there any .NET framework support for ISAPI? I've looked up and down and can't seem to find it in the class library. Incidently, writing code that implements the IHttpModule interface does not quite work in this case because I need to ... |
|
| SQLServer doesn't sync sessionState in web farm (6 replies) |
| microsoft.public.dotnet.distributed_apps |
| I have a web farm of two web servers. They have an identical ASP.NET web application and the web.config of the web app use SQLServer to keep their session info and cookieless is set to true. If I keep going to the same server, session is kept just fine. However, when I go to the next server witht the same session ID, it failed to retrieve the session info from the SQLServer. Here is the step to re... |
|
| Boolean Comparision (3 replies) |
| microsoft.public.dotnet.distributed_apps |
| Hi, I am running into a very strange situation with Boolean comparison in C# It's executing the true part for an expression that evaluates to false. Following is a sample code that executing abnormally. Any suggestions would be appreciated. 1. b success false; 2. if((bool)b success) 3. Mq.ReceiveById(Mem.Current.Id.ToString()); Thanks in advance Teddy |
|
| Context Problem (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| The situation is: I have a ServicedComponent that uses a value that is present on my WEB.CONFIG file, when I use Library Activation everything works fine, because the COM object executes in the same context as the caller (the web application), but when I change to Server Activation or call my component via a Web Service, the context is broken, and I loose access to the values. Any suggestion is ap... |
|
| Software design question (3 replies) |
| microsoft.public.dotnet.distributed_apps |
| First of all I know that this might not be the correct newsgroup to ask this, but then again I don't know of one that focuses on software design and this group is by far the one that I know of with so many that deals with software design. First let's setup the scene for my question. Imaging we have four diffrent type of business objects called Customer, Account, Product and Order. So far so good. ... |
|
| FileSystemWatcher exe not responding on client (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| I created a .net exe with a FileSystemWatcher component. It works fine on the developer machine, but on the client machine, the form shows, but the FileSystemWatcher does not respond to file changes. dotnetfx framework exe is installed on the client machine. Thanks, Conrad |
|
| SqlException: Login failed (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| I am running through: "Walkthrough: Using a DataGrid Web Control to Read and Write Data" and cannot connect to the Northwind data in the run time code. The data adapter creation wizard sucessfully tested the connection. I am using windows authentication. my web.config has the following: authentication mode "Windows" / identity impersonate "true"/ I cannot find any info on why this is happening. He... |
|
| Serializing a Dataset (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| I have an assembly that is registered to run in COM . To pass the data between tiers I'm using a strongly typed dataset. If the COM component Activation is marked as a "Library Application", everything works fine. However, If I change the activation to "Server Application" it fails. After digging deeper, I have found that it appears to have something to do with serialization and the decimal data t... |
|