Re: [ADVANCED-DOTNET] QA Process - Automating a Production Mirror

2004-12-08 Thread Shawn A. Van Ness
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...

Re: [ADVANCED-DOTNET] QA Process - Automating a Production Mirror

2004-12-08 Thread Shawn A. Van Ness
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

[ADVANCED-DOTNET] QA Process - Automating a Production Mirror

2004-12-08 Thread Andy Smith
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

[ADVANCED-DOTNET] SV: [ADVANCED-DOTNET] VS .NET loading my assemblies?

2004-12-08 Thread Benny S. Tordrup
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

[ADVANCED-DOTNET] System.Net.WebException: The underlying connection was closed: Unable to connect to the remote server.

2004-12-08 Thread Martin Harris
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 [

Re: [ADVANCED-DOTNET] Relative X-Path

2004-12-08 Thread Jekke Bladt
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

Re: [ADVANCED-DOTNET] Relative X-Path

2004-12-08 Thread Steve W
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

Re: [ADVANCED-DOTNET] Relative X-Path

2004-12-08 Thread Shawn A. Van Ness
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

[ADVANCED-DOTNET] Relative X-Path

2004-12-08 Thread Jekke Bladt
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