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
3
votes
1 answer

How to make MS speech API more accurate when recognizing only two commands

I am trying to use Speech API 5.1 in command and control mode in a c# application. I am using it inProc and have only two commands in the grammer. The problem I am facing is related to the accuracy of detecting these commands. The recognition engine…
Novice
  • 515
  • 7
  • 22
3
votes
2 answers

InProc Session State not working

Anyone have any ideas why a servers InProc session state would not be working? Is there a manual reset for it, or a way to check? Thanks Session mode is InProc, timeout is 25 minutes. At this time I'm unsure if the Session object is null, or if…
user112799
  • 1,605
  • 2
  • 13
  • 15
3
votes
1 answer

Avoid COM marshalling

I'm a little confused about com threading models. I have an inproc server and I want to create an interface accesible from any thread regardless of the threading-model and/or flags used in CoInitializeEx. When passing interfaces from one thread to…
Mauro H. Leggieri
  • 1,084
  • 11
  • 25
3
votes
0 answers

CoCreateInstance fails with E_FAIL when CLSCTX_LOCAL_SERVER is specified and Surrogate process is used

I am trying to use surrogate process, dllhost, to run my COM 64-bit dll in a separate 64-bit dllhost process. I have made the required registry entries for the same. When I try to create an object of my class using CoCreateInstance or…
Salil Taneja
  • 91
  • 1
  • 1
  • 8
2
votes
0 answers

How to communicate beetwen parts of out-proc *.exe COM server?

We have *.exe application which is also out-process COM server. The main thread is doing some network routine: it receives data packets and puts them into queue. COM client, VBA for example, uses COM server and wants to use queue too. Despite the…
nix
  • 464
  • 1
  • 5
  • 13
2
votes
0 answers

Pyzmq's eventloop.future context with 'inproc' in worker threads

Part of my application consists of a main thread and a couple of worker threads that send their results to the main thread using pyzmq sockets. The main thread is running a tornado IOloop and uses async functions to read the incoming data on a…
Schwingkopf
  • 113
  • 2
  • 5
2
votes
0 answers

How much memory is the InProc Session State using on my ASP.net Server?

Is there any way to tell how much memory the InProc Session state is using for an ASP.net site at any one time? IIS7, ASP.net 3.5, Windows Server 2008 R2.
Yaakov Ellis
  • 40,752
  • 27
  • 129
  • 174
2
votes
1 answer

ZeroMQ mixed PUB/SUB DEALER/ROUTER pattern

I need to do the following: multiple clients connecting to the SAME remote port each of the clients open 2 different sockets, one is a PUB/SUB, the other is a ROUTER/DEALER ( the server can occasionally send back to client heartbeats, different…
harsszegi
  • 369
  • 2
  • 15
2
votes
1 answer

Inproc and Outproc session state modes

I have basic understanding of session state modes,i have gone through this article on MSDN but not able to understand When to use InProc,StateServer and SqlServer session modes?more specifically confused between when to use State server and when to…
F11
  • 3,703
  • 12
  • 49
  • 83
2
votes
1 answer

Switched from inproc to SQL Server gives me SQL timeouts (no connection max pool size, typed datasets)

Here is my situation: I have a web and database server (SQL Server 2005) in a LAN. The webserver(iis6) has several application pools and sites run fine with asp.net session inproc. both servers run win 2k3 Now I switched from inproc to SQL Server…
JP Hellemons
  • 5,977
  • 11
  • 63
  • 128
2
votes
3 answers

Preserve ASP.NET InProc Session when W3WP (IIS) Process Recycles

I understand that all InProc session data is always gone when its w3wp owner process recycles as it only resides in the w3wp memory. I wondered though if it is possible to cache the session data when recycling happens somewhere external to the…
Alex
  • 75,813
  • 86
  • 255
  • 348
1
vote
1 answer

How can we change session state of a website from one state to another

Basically my question is i have a website which was developed around 3 years ago, while development it was proposed that this site will be used by few people on internet. But now it seems like many users are accessing the website. So we have planned…
Murtaza
  • 3,045
  • 2
  • 25
  • 39
1
vote
2 answers

ASP.NET SessionState timeout

I use ASP.NET website on IIS7 where in web.config I have: But session doesn't keep 20 minutes, it works very strange, sometimes it expires in 1 minute or less, sometimes just redirect to…
ihorko
  • 6,855
  • 25
  • 77
  • 116
1
vote
2 answers

Unwillingly calling QueryInterface via RPC

In my application, I create an object A, that creates an object B, both via CreateInstance. Both objects should live in the same process. Now I see that object B, when asked for a certain interface, is returning E_NOINTERFACE, although I defined it…
xtofl
  • 40,723
  • 12
  • 105
  • 192
1
vote
2 answers

IIS ASP.NET InProc session variables randomly not written to session

There are reams of info out there about things causing InProc session to drop session objects, but that's not what's happening here. We're missing individual variables within stable InProc session objects, and are not sure whether they're not being…
codepoke
  • 1,272
  • 1
  • 22
  • 40