all groups > dotnet component services > recent posts
DCOM Error EventID 10015
Posted by Mike Chung at 4/24/2008 7:21:01 PM
Hello all,
I have the following error message appearing about every two minutes.
Event Type: Error
Event Source: DCOM
Event Category: None
Event ID: 10015
Date: 4/24/2008
Time: 6:25:19 AM
User: NT AUTHORITY\NETWORK SERVICE
Computer: LSKDFS11
Description:
The machine wide limit setting... more >>
GC.Collect() not cleaning memory, how to find out what references to lots of memory still exist?
Posted by DR at 4/15/2008 2:03:42 PM
GC.Collect() not cleaning memory, how to find out what references to lots of
memory still exist?
When all my processign is done i set everything to null and then:
GC.Collect();
and then
GC.WaitForPendingFinalizers();
but it still shows that my process takes 400 MB of memory. Is there any ea... more >>
PerformanceCounterCategory.Create() takes 3 minutes to add a new category!! How come? What can cause this?
Posted by DR at 4/10/2008 12:25:35 PM
PerformanceCounterCategory.Create() takes 3 minutes to add a new category!!
How come? What can cause this?
... more >>
Loop through COM+ compoents of a COM+ application ????????????
Posted by David at 4/7/2008 12:52:30 PM
I would like to parse through a list of the COM+ components for a COM+
application, is this possible ?
Ultimately what I would like to do is change the constructor string
for a COM+ component that is in
a COM+ application, is this possible ?
Any help would be appreciated.
Heres what I ... more >>
Internet - Take Advantage of Multiple Windows When Surfing
Posted by Visitbazaar Info at 4/1/2008 1:37:37 AM
--
Internet - Take Advantage of Multiple Windows When Surfing
SUMMARY: Stop jumping back and forth between index pages by using several
browser windows.
Why use one web browser window when you can have multiple? If you have an
adequate amount of memory, open up several web browsers t... more >>
Activate not called
Posted by mnichols at 3/31/2008 10:35:57 AM
Hello,
We have a COM+ application where the Activate method of one of our COM+ components is not being called reliably.
I understand from the following that this is to be expected:
http://support.microsoft.com/kb/276012/en-us
I also understand that there is sort of a work around:
http://s... more >>
Call from one serviced component to another fails
Posted by pekrr at 3/17/2008 2:21:00 AM
I instantiate a ServicedComponent and inside my class I instansiate another
ServicedComponent and assign it to an
instance variable. This assignment results in an InvalidCastException
pointing to a
completely unexpected class.
CoCreateInstance returned an unexpected type: expected <Class1>,... more >>
RE: COM+ package Dllhost.exe not shutting down
Posted by Simon Hart [MVP] at 3/12/2008 3:40:00 PM
Idle shutdown will only work if there are no connections to any components
from clients. Ensure you are releasing the client connection.
--
Simon Hart
Visual Developer - Device Application Development MVP
http://simonrhart.blogspot.com
"Muralidharan" wrote:
> COM+ package Dllhost.exe... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Re: exhausted, beaten - C# COM+ component as a web services...File
Posted by John Saunders [MVP] at 3/7/2008 11:00:15 AM
"caractacus" <caractacus@discussions.microsoft.com> wrote in message
news:44688302-30BC-48AC-BBB3-6BA6605B1229@microsoft.com...
> I am having ongoing problems with this in VISTA on .NET 2.0. I can't get
> SOAP to work on serviced components - there's no WSDL support and the
> .soap
> url repo... more >>
Re: Asynchronous COM+ Method Calls?
Posted by John Saunders [MVP] at 3/7/2008 10:59:16 AM
"caractacus" <caractacus@discussions.microsoft.com> wrote in message
news:B2CB4DEE-2373-402C-ACDF-11ADEA4E4946@microsoft.com...
> Another memory sparked:
>
> I can't locate the source, but a reputable source noted that the .NET
> thread
> pool is quickly exhausted by high volume blocking COM... more >>
Re: Asynchronous COM+ Method Calls?
Posted by John Saunders [MVP] at 3/7/2008 10:16:40 AM
"caractacus" <caractacus@discussions.microsoft.com> wrote in message
news:1594F668-0A78-4664-BCF7-D7991C648048@microsoft.com...
> Interface queueing is another option for long-running processes.
Thanks for the answer (though I had almost forgotten the question).
But, what is interface queui... more >>
Re: Asynchronous COM+ Method Calls?
Posted by caractacus at 3/7/2008 1:13:00 AM
Another memory sparked:
I can't locate the source, but a reputable source noted that the .NET thread
pool is quickly exhausted by high volume blocking COM+calls, resulting in a
severe scalability issue.
A recommended solution was to access COM+ components via async web service
proxy, th... more >>
Re: Asynchronous COM+ Method Calls?
Posted by caractacus at 3/7/2008 1:01:01 AM
Interface queueing is another option for long-running processes.
"John Saunders [MVP]" wrote:
> "Brian Muth" <bmuth@mvps.org> wrote in message
> news:OEJ0$7KSIHA.1208@TK2MSFTNGP05.phx.gbl...
> >> If I have a COM+ method that returns results from a long-running database
> >> query, is ther... more >>
Re: exhausted, beaten - C# COM+ component as a web services...File
Posted by caractacus at 3/7/2008 12:58:00 AM
I am having trouble in this area, but I solved the File not Found message:
Ensure that the DLL containing your interfaces is also installed into the
GAC. It's your DLL's dependencies that are not being found.
I moved my interfaces into the ServicedComponent DLL before I understood the
prob... more >>
move/delete mailbox in exchange 2003 without CDOEXM
Posted by Hema at 3/6/2008 1:49:00 AM
Hi,
I'm trying to write a code which will move the mailbox from one location to
another location (be it same storage group, same admin group, diff storage
group). The code has to run remotely and in that server, i dont have exchange
components installed and that is not part of any domain. T... more >>
Modify Existing COM+ App Properties
Posted by kgayCNE at 3/5/2008 5:25:33 PM
I'm trying to use app.set_Value("<prop>", <value>). I need to change the
Remote Server property of the COM+ application (Local com+ app). I can find
it and connect to it using the, I just cannot find the property name of the
remote server string/value.
The whole point of this app I'm writing ... more >>
Can not get Client Certificates to work with .NET COM+ component
Posted by Tapio Lindqvist at 2/11/2008 5:42:01 AM
I have a problem with .NET COM+ component which cannot access the private
key of the client certificate. The problem seems to be that when the user on
which privileges the COM+ server application is running is logged in, the
certificate can be accessed. But as soon as the user logs out the I g... more >>
Re: exhausted, beaten - C# COM+ component as a web services...FileNotFoundException
Posted by John Saunders [MVP] at 1/25/2008 5:43:51 AM
"uncle" <aktxyz@gmail.com> wrote in message
news:1a239c19-4229-49fa-9f31-b61f6c08fa52@k39g2000hsf.googlegroups.com...
> Tried that, BadImageFormatException.
If the DLL isn't in C:\Windows\System32\com\SoapVRoots\Cache\bin\, then you
get a file not found. If it _is_ in
C:\Windows\System32\c... more >>
Re: exhausted, beaten - C# COM+ component as a web services...FileNotFoundException
Posted by uncle at 1/24/2008 7:53:03 PM
Tried that, BadImageFormatException.
On Jan 23, 12:40 pm, "John Saunders [MVP]" <john.saunders at
trizetto.com> wrote:
> "uncle" <akt...@gmail.com> wrote in message
>
> news:c1383a17-d803-41ae-88d2-e982a600b8d0@e23g2000prf.googlegroups.com...
>
>
>
> > On Jan 22, 8:23 pm, uncle <akt...@gm... more >>
Re: exhausted, beaten - C# COM+ component as a web services...FileNotFoundException
Posted by John Saunders [MVP] at 1/23/2008 1:40:02 PM
"uncle" <aktxyz@gmail.com> wrote in message
news:c1383a17-d803-41ae-88d2-e982a600b8d0@e23g2000prf.googlegroups.com...
> On Jan 22, 8:23 pm, uncle <akt...@gmail.com> wrote:
>> On Jan 22, 7:12 pm, "John Saunders [MVP]" <john.saunders at
>>
>>
>>
>> trizetto.com> wrote:
>> > "uncle" <akt...@gm... more >>
Re: exhausted, beaten - C# COM+ component as a web services...FileNotFoundException
Posted by John Saunders [MVP] at 1/22/2008 8:12:17 PM
"uncle" <aktxyz@gmail.com> wrote in message
news:a5606cb0-7783-4105-ab52-9b2f9204f9a4@d4g2000prg.googlegroups.com...
>- I have a class lib C# project that has a few methods and the (I
> think) proper magic for managing via COM+.
> - I can expose it via SOAP using the property dialog (identity t... more >>
Re: exhausted, beaten - C# COM+ component as a web services...FileNotFoundException
Posted by uncle at 1/22/2008 6:29:54 PM
On Jan 22, 8:23 pm, uncle <akt...@gmail.com> wrote:
> On Jan 22, 7:12 pm, "John Saunders [MVP]" <john.saunders at
>
>
>
> trizetto.com> wrote:
> > "uncle" <akt...@gmail.com> wrote in message
>
> >news:a5606cb0-7783-4105-ab52-9b2f9204f9a4@d4g2000prg.googlegroups.com...
>
> > >- I have a cla... more >>
Re: exhausted, beaten - C# COM+ component as a web services...FileNotFoundException
Posted by uncle at 1/22/2008 6:23:42 PM
On Jan 22, 7:12 pm, "John Saunders [MVP]" <john.saunders at
trizetto.com> wrote:
> "uncle" <akt...@gmail.com> wrote in message
>
> news:a5606cb0-7783-4105-ab52-9b2f9204f9a4@d4g2000prg.googlegroups.com...
>
>
>
> >- I have a class lib C# project that has a few methods and the (I
> > think) p... more >>
exhausted, beaten - C# COM+ component as a web services...FileNotFoundException
Posted by uncle at 1/22/2008 11:31:25 AM
- I have a class lib C# project that has a few methods and the (I
think) proper magic for managing via COM+.
- I can expose it via SOAP using the property dialog (identity tab)
uses soap checkbox.
- A virtual directory magically shows up in IIS.
- I am running on Windows Server 2003 Standard
... more >>
using remote COM+ .NET objects without a proxy
Posted by prevoste@hotmail.com at 1/17/2008 8:55:55 PM
Hi,
In the past, I was using an unmanaged COM+ application, deployed on
2-3 servers. On a workstation, in VB6, I was using
createObject("MyCom.MyClass","TheServerName") to create the object
remotely on one of any server. The server was chosen at runtime.
Now, this COM+ application is MANA... more >>
com+ versioning
Posted by vkgroup2008@gmail.com at 1/15/2008 8:39:38 AM
Hello-
I am developing a .Net Enterprise Services COM+ component on
WindowsXP using VS2005.
Can I install this DLL in the Component Services under 2 different
applications? Can settings (not the class name) define different
versions on the same COM+ component? Can I do it without using COM... more >>
Problem getting Queued Components Technology Sample on Windows 2003 Server
Posted by = Tom C = at 1/11/2008 8:47:30 AM
I have been having problem getting the Queued Components Technology
Sample (available at http://msdn2.microsoft.com/en-us/library/9c0z8284(VS.80).aspx)
running on Windows 2003 Server.
I followed the directions on a Windows 2000 Server and everything
worked smoothly. When I perform the same se... more >>
Re: MSMQ Trigger Call to COM+ Component Getting "Stuck"
Posted by John Breakwell (MSFT) at 1/10/2008 1:53:26 PM
Hi "Think",
Could you please let me know what O/S you are running and how you have
configured the Trigger (message processing type, serialised or not) and the
Rule (COM component invocation)?
Cheers
John Breakwell (MSFT)
<thinkfr33ly@hotmail.com> wrote in message
news:52ee1546-d3fd... more >>
MSMQ Trigger Call to COM+ Component Getting "Stuck"
Posted by thinkfr33ly@hotmail.com at 1/1/2008 10:29:49 PM
I'm experiencing a very strange issue in a production environment
under heavy load. It appears as though a COM+ package has object
activations that are getting "stuck". There is no actual processing
taking place (afaict), but the call time for the component just keeps
increasing and the pooling ... more >>
Re: Asynchronous COM+ Method Calls?
Posted by John Saunders [MVP] at 12/27/2007 6:18:13 PM
"Brian Muth" <bmuth@mvps.org> wrote in message
news:OEJ0$7KSIHA.1208@TK2MSFTNGP05.phx.gbl...
>> If I have a COM+ method that returns results from a long-running database
>> query, is there a way to create a version of the method that uses one of
>> the .NET asynchronous calling patterns? Assu... more >>
|