RPC Limit

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm still trying to solve the problem with my code that stops working after
249 items (see my other query on that topic), but this is a more general
question. Where can I find out more about the limit of 255 open RPC channels?
Is this a concurrent limit? How can I force a channel to close? How can I
write my code to eliminate the problem? That kind of thing.

Any pointers, whether to other resources, or simply advice on this issue
would be extremely gratefully received.

Thanks

Vaughan
 
=?Utf-8?B?VmF1Z2hhbg==?= said:
I'm still trying to solve the problem with my code that stops working
after 249 items (see my other query on that topic), but this is a more
general question. Where can I find out more about the limit of 255
open RPC channels? Is this a concurrent limit? How can I force a
channel to close? How can I write my code to eliminate the problem?
That kind of thing.

There's been a lot of discussion about this type of thing in the archives
of mapi-l; see http://peach.ease.lsoft.com/archives/mapi-l.html

That's mostly in the context of Extended MAPI, not the OOM, though. The
general solution is to spawn multiple threads, each of which gets a new
set of channels to use at once. I'm not sure how useful this is in the
particular context of whatever your problem is, though.

-- dan
 
Back
Top