Kevin
Take a look at: ChannelServices.GetUrlsForObject
thanks
-jhawk
This posting is provided "AS IS" with no warranties, and confers no
rights.
-Original Message-
From: Kevin Burton [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 9:55 AM
To: [EMAIL PROTECTED]
Subject: Re: [
In the event that everyone hasn't found this feature yet, the list server
software upgrade we did a few weeks ago supports searching across multiple
archives. So I thought I post an FYI to make sure everyone knew about the
feature.
In general:
o Go to http://discuss.develop.com/archives and then
I have a method that digitally signs an XML document. When I run this
method in a console it works but when I run it in a web service it
crashes at:
DSA objDSAkey = DSA.Create();
I get an error saying:
Digital Signature Program
System.Reflection.TargetInvocationException: Exception
protected override void OnStart(string[] args) {
# if (DEBUG)
timer = new System.Timers.Timer();
timer.Interval = 2;
timer.Elapsed += new
ElapsedEventHandler(this.DebugStart);
timer.Enabled = true;
Has anyone been able to at least duplicate this behavior? I really need
to get this to work and I don't know why there is a limitation on the
number of event watchers allowed access when there is bound to be more
than one application trying to access these events simultaneously.
Richard A. Hein
Think of OnStart as Main() in C/C++/C# terms. Once OnStart gets called,
you can do whatever you want.
Being a service, there are caveats with UI, because Services run in the
background. You can configure a Service to be able to pop-up dialogs and
windows, but it's not automatic (as it is in Win
You cannot expose windows service this way. Your windows service is from
point of view of your application another application domain, so you have to
use some communication protokol like .net remoting to invoke functions.
It's not verry difficult:
Try to sepatate all the functions to separate cl
Thanks for the help Jeff.
Your code didn't work but I found an article which explained
exactly how to do it. Here it is:
http://www.fawcette.com/vsm/2002_06/online/online_eprods/aspnet_jgoodyear_06
_24_02/default.asp
The code I had to add was:
s1.Proxy = new WebProxy("Proxy Address",
This also works:
s1.Proxy =
new WebProxy("Proxy Address",
true,null,
CredentialCache.DefaultCredentials);
Charles.
-Original Message-
From: Jeff Dunmall [mailto:[EMAIL PROTECTED]]
Sent: 17 July 2002 18:54
To: [EMAIL PROTECTED]
Subject: Re:
As far as I know there is a virtual function
OnCustomCommand(int nCommand)
Within this function you can implement a switch which can evaluate nCommand and then
redirect you. The individual Paramter could e read from a file,reg
Bye Thorsten
-Ursprüngliche Nachricht-
Von: Jeff Hughe
Did you start the SessionState service? Check Administrative
Tools/Services
John
> -Original Message-
> From: Moderated discussion of advanced .NET topics.
> [mailto:[EMAIL PROTECTED]] On Behalf Of kevin
> Sent: Wednesday, July 17, 2002 9:42 PM
> To: [EMAIL PROTECTED]
> Subject: [ADV
I posted a question with the same title to
microsoft.public.dotnet.framework.performance, and got no response from MS.
Ronald Laeremans from MS has gone on record offering to hook people up with
the correct permission-giving people, so you could try an email to him.
Personally, I've published many
Farhan Shah wrote:
> I am currently writing an article which has performance comparisons related
> to Webservices and Remoting.
> I found following in Microsoft's ELUA and i am not sure how to handle this?
> "5.9 Benchmark Testing. You may not disclose the results of any benchmark
> test of the
13 matches
Mail list logo