ps: I like to post these kinds of questions on Chris Sells' Y! group
for OT windows dev topics:
http://groups.yahoo.com/group/win_tech_off_topic/
Many of the same people here hang out there, too -- you're just much
more likely to get a comprehensive rundown of VPC vs VMWare, instead
of flames...
Sounds like Virtual Server will get you what you need...?
http://www.microsoft.com/windowsserversystem/virtualserver/default.mspx
-S
===
This list is hosted by DevelopMentor® http://www.develop.com
Some .NET courses you may be interested in:
Essential .NET: build
This isn't a .NET question, so I apologize if it's inappropriate, but I
think many here might have some interest in it, as it relates to the QA
and deployment of software (albeit not necessarily .NET software). And I
have no idea where else I might post this. Maybe someone can point me to a
list th
The dll's being referenced from the \obj directory are dll's referenced
through project references in the solution.
Best Regards,
Benny S. Tordrup
-Oprindelig meddelelse-
Fra: Unmoderated discussion of advanced .NET topics.
[mailto:[EMAIL PROTECTED] På vegne af Alex Niblett
Sendt: 8. d
Please exscuse a relative newbie to this field, my application is
throwing the following on attempting to send a confirm action email when
using any of the smtp servers in our network, this includes using the
firewall as an smtp proxy - does anyone have any ideas as googling has
been in vain
[
Oh, yeah. That does it.
Many thanks.
--Jekke
-Original Message-
From: Unmoderated discussion of advanced .NET topics.
[mailto:[EMAIL PROTECTED] On Behalf Of Shawn A. Van
Ness
Sent: Wednesday, December 08, 2004 11:49 AM
To: [EMAIL PROTECTED]
Subject: Re: [ADVANCED-DOTNET] Relative X-Path
Have you tried
XmlNodeList MarketNodes = policyNode.SelectNodes("policy-criterion"); ?
Steve
- Original Message -
From: "Jekke Bladt" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, December 08, 2004 4:00 PM
Subject: [ADVANCED-DOTNET] Relative X-Path
All--
I'm trying
It's sortof like specifying absolute vs relative paths to files...
don't lead off with the leading slash -- that means absolute, not
relative!
XmlNodeList MarketNodes = policyNode.SelectNodes("policy-criterion");
or
XmlNodeList MarketNodes = policyNode.SelectNodes("./policy-criterion");
-S
All--
I'm trying to get all the nodes named "policy-criterion" immediately
under the current node (called policyNode in the lines below.) I've
tried both of the following:
XmlNodeList MarketNodes = policyNode.SelectNodes("/policy-criterion");
XmlNodeList MarketNodes = policyNode.SelectNodes("//po