Questions tagged [inproc]

inproc:// constitutes an extremely low-latency overhead transport class for inter-thread process communications. As implemented in ZeroMQ, nanomsg et al, this form of high-performance, true Zero-Copy message passing is very beneficial for higher level, Scaleable Formal Communication Patterns these frameworks are best at.

inproc:// constitutes an extremely low-latency overhead transport class for inter-thread process communications. As implemented in ZeroMQ, nanomsg et al, this form of high-performance, true Zero-Copy, message passing is very beneficial for higher-level Scaleable Formal Communication Patterns these frameworks are best at.

45 questions
1
vote
2 answers

Common ASP.NET Intermittent Hang-Ups

Recently, we've encountered some strange intermittent issues in our ASP.NET app. These issues would include: Static Variables becoming un-initialized Background threads aborting (InProc) session state being lost The weird thing was, these issues…
Scott Coates
  • 2,462
  • 5
  • 31
  • 40
1
vote
2 answers

How to move the session state from InProc to SQLServer

I am currently using InProc session state mode in my .net web project. I want move that from InProc to SQLServer session state as I am going to use a load balancer. What are the steps that I need to follow? In my C# code, I use as sessions as…
Dumi
  • 1,414
  • 4
  • 21
  • 41
1
vote
2 answers

Problem retrieving multiple instances of the same asp.net session variable

I'm having problems with retrieving multiple instances of a session variable from an InProc session state. In the following code I persist a simple BusinessObject into a session variable on the Page_Load event. On the click of a button I try to…
sw1sh
  • 93
  • 1
  • 6
1
vote
0 answers

Web farm Session get saved in Load balancer server WP or web server WP

Was reading one article and got confuse with this point. In Web farm, one Application is hosted in multiple server right , and they are connected with Virtual IP address with Load balancer. And Load balancer IP address is exposed to world, so Client…
1
vote
1 answer

ZMQ Clients - Server - Worker Performance

I'am currently developing a system with a server, which gets tasks of some clients and processes them. As I need high throughput I examined the speed for roundtrips/s in a 1Gbit network. The scenario: Clients have a Dealer socket and send a task to…
moo
  • 486
  • 8
  • 22
0
votes
1 answer

Enforce serializable session state access for InProc?

I have heard advice in the past to use SqlServer / StateServer early on in a project, so when you scale you don't fall into the trap of a developer using non-serializable objects InProc and it breaking when moving to SqlServer / StateServer…
Alex KeySmith
  • 16,657
  • 11
  • 74
  • 152
0
votes
1 answer

Session Timer in asp.net

I have an asp.net web application where the sessionstate mode is "InProc". For Inproc, by default the session expiry is 20minutes. I would like to display a session expiry countdown popup for one minute before the session expires. But i cant find a…
user1107973
  • 43
  • 2
  • 12
0
votes
1 answer

PUB-SUB with INPROC transport could not receive messages

I have an issue using ZMQ inproc with PUB-SUB, where the first message is not read by a subscriber. I am sure I am doing something wrong / misread the documentation in some part. I have 2 pubs and 2 subs, communicating via inproc (in a 1 to 1…
Francesco
  • 1,840
  • 19
  • 24
0
votes
0 answers

ZeroMQ python asyncio inproc socket

I am trying to connect 2 threads together with zeromq inproc. When I use zmq.Context for 2 threads, latency is about 50-100 microseconds. When switch to zmq.asyncio.Context, latency increses to 300 microseconds. Is it possible to achieve latency of…
Sergey Ko
  • 11
  • 2
0
votes
0 answers

My registered COM object cannot be ran as InProc

I am using pywin32 to register a COM object. The COM object get registered and it is avaialable in the registry editor at Computer\HKEY_CLASSES_ROOT\CLSID{B7B60366-B784-451F-BD6A-E7E733DB4E63}. The problem is that the path in InProc32 includes only…
Borut Flis
  • 15,715
  • 30
  • 92
  • 119
0
votes
0 answers

Session Sharing between two web applications running on the same application pool using InProc Session

I have two MVC web application running in the same application pool of IIS Attached image of two applications which are InProcSessionState and L which runs under InProcSessionState application pool I have tried using InProc session to share data…
Arun
  • 1
  • 1
0
votes
1 answer

Check Portable Executable (PE) file for COM signature

I need to programatically check arbitrary Dlls to see whether they are inproc COM servers. In other words, can they be registered on the current system using regsvr32 / DllRegisterServer. Short of Andy's suggestions on this question, is there a way…
Raheel Khan
  • 14,205
  • 13
  • 80
  • 168
0
votes
1 answer

ASP.NET not redirecting to defaultURL automatically after ending session

This seems to be a very trivial question but still I am not able to get it running. I am building an asp.net web application and I am using forms authentication here. The following steps I have followed. 1) In web.config this is the entry …
samar
  • 5,021
  • 9
  • 47
  • 71
0
votes
1 answer

Session.Abandon does not automatically redirect to loginurl in asp.net

This seems to be a very trivial question but still I am not able to get it running. I am building an asp.net web application and I am using forms authentication here. The following steps I have followed. 1) In web.config this is the entry …
samar
  • 5,021
  • 9
  • 47
  • 71
0
votes
1 answer

Querying session data when using StateServer service

Does anybody know of a way to query across all active sessions when using StateServer service in a .NET 4.0 web app? In my scenario, I am setting a piece of session data when the user navigates to one of our partner sites. The partner site then…
Mel Lota
  • 75
  • 7
1 2
3