User Nat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T19:28:06Zhttp://stackoverflow.com/feeds/user/13813http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1828646/how-to-temporarily-disable-email-notification-while-updating-items-in-code/1828930#18289303Answer by Nat for how to temporarily disable email notification while updating items in code?Nat2009-12-01T21:06:11Z2009-12-03T23:14:30Z<p>Does using a SPListItem.<a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.systemupdate.aspx" rel="nofollow">SystemUpdate()</a> instead still kick off the alerts?</p>
http://stackoverflow.com/questions/1834194/how-to-set-up-a-load-stress-test-for-a-web-site/1834978#18349781Answer by Nat for How to set up a load/stress test for a web site?Nat2009-12-02T18:46:32Z2009-12-02T18:46:32Z<p>I found Visual Studio Test edition easier to test with (though it is not free). You can record a browsing session as a single test and it will allow you to read the perfmon stats from both your webserver and database easily enough.</p>
<p>The first step you should take is to look at your IIS logs to find out what is going on there. <a href="http://www.microsoft.com/emea/spotlight/sessionh.aspx?videoid=265" rel="nofollow">Log Parser 2 is the tool</a> I would use should get the IIS logs into a database.</p>
<p>Querying that will give you an idea of peak load.</p>
<p>Next step is to formulate a goal or two for the testing. Do you need to make sure the website is able to handle spike loads on a single page or two of X requests per second?</p>
<p>Are you intending on increasing the customers of the site, in which case take the current IIS log load and forumlate webtests that can simulate that range of page requests, but load for the expected concurrent users.</p>
<p>If you are intending to change functionality on the site, you can do a baseline loadtest and compare the performance after any changes to the site.</p>
<p>The real goal in load testing is to prove that the application and hardware are able to handle a target load that the business finds acceptable and still returns pages within a reasonable time.</p>
http://stackoverflow.com/questions/1040944/generate-webtest-files-without-using-visual-studio/1823788#18237880Answer by Nat for Generate .webtest files without using Visual StudioNat2009-12-01T03:21:53Z2009-12-01T03:21:53Z<p><a href="http://www.fiddler2.com" rel="nofollow">Fiddler2</a> allows users to record thier browser session as a Visual Studio web test.</p>
<p>That would allow people to create the basic tests. However, developing a good web test usually involves a coded webtest, not quite so good without the test edition of Visual Studio. </p>
http://stackoverflow.com/questions/1806837/alternative-to-vsts-2008-web-tests-to-test-javascript-ajax/1816720#18167200Answer by Nat for Alternative to VSTS 2008 WEb tests to test JavaScript & AjaxNat2009-11-29T20:48:50Z2009-11-29T20:48:50Z<p>You can try the <a href="http://msdn.microsoft.com/en-us/library/dd286726%28VS.100%29.aspx" rel="nofollow">coded ui test in visual studio 2010</a>?</p>
http://stackoverflow.com/questions/1803589/webtest-with-session-id-in-url/1805901#18059011Answer by Nat for Webtest with session-id in urlNat2009-11-26T22:16:44Z2009-11-26T22:23:57Z<p>Yes, it is relatively easy to do this. You will need to create a coded webtest however.</p>
<p>In my example we have a login post that will return the url including the session string.
Just after the we yield the login post request (request3) to the enumerator I call the following.</p>
<pre><code>WebTestRequest request3 = new WebTestRequest((this.Context["WebServer1"].ToString() + "/ICS/Login/English/Login.aspx"));
//more request setup code removed for clarity
yield return request3;
string responseUrl = Context.LastResponse.ResponseUri.AbsoluteUri;
string cookieUrl = GetUrlCookie(responseUrl, this.Context["WebServer1"].ToString(),"/main.aspx");
request3 = null;
</code></pre>
<p>Where GetUrlCookie is something like this:</p>
<pre><code>public static string GetUrlCookie(string fullUrl, string webServerUrl, string afterUrlPArt)
{
string result = fullUrl.Substring(webServerUrl.Length);
result = result.Substring(0, result.Length - afterUrlPArt.Length);
return result;
}
</code></pre>
<p>Once you have the session cookie string, you can substitute it really easy in any subsequent urls for request/post
e.g.</p>
<pre><code>WebTestRequest request4 = new WebTestRequest((this.Context["WebServer1"].ToString() + cookieUrl + "/mySecureForm.aspx"));
</code></pre>
<p>I apologise for my code being so rough, but it was deprecated in my project and is pulled from the first version of the codebase - and for saying it was easy :)</p>
<p>For any load testing, depending on your application, you may have to come up with a stored procedure to call to provide distinct login information each time the test is run.</p>
<p>Note, because the response url cannot be determined ahead of time, for the login post you will have to temporarily turn off the urlValidationEventHandler. To do this I store the validationruleeventhandler in a local variable:</p>
<pre><code> ValidateResponseUrl validationRule1 = new ValidateResponseUrl();
urlValidationRuleEventHandler = new EventHandler<ValidationEventArgs>(validationRule1.Validate);
</code></pre>
<p>So can then turn it on and off as I require:</p>
<pre><code>this.ValidateResponse -= urlValidationRuleEventHandler ;
this.ValidateResponse += urlValidationRuleEventHandler ;
</code></pre>
<p>The alternative is to code your own such as this (reflectored from the Visual Studio code and changed to be case insensitive.</p>
<pre><code>class QueryLessCaseInsensitiveValidateResponseUrl : ValidateResponseUrl
{
public override void Validate(object sender, ValidationEventArgs e)
{
Uri uri;
string uriString = string.IsNullOrEmpty(e.Request.ExpectedResponseUrl) ? e.Request.Url : e.Request.ExpectedResponseUrl;
if (!Uri.TryCreate(e.Request.Url, UriKind.Absolute, out uri))
{
e.Message = "The request URL could not be parsed";
e.IsValid = false;
}
else
{
Uri uri2;
string leftPart = uri.GetLeftPart(UriPartial.Path);
if (!Uri.TryCreate(uriString, UriKind.Absolute, out uri2))
{
e.Message = "The request URL could not be parsed";
e.IsValid = false;
}
else
{
uriString = uri2.GetLeftPart(UriPartial.Path);
////this removes the query string
//uriString.Substring(0, uriString.Length - uri2.Query.Length);
Uri uritemp = new Uri(uriString);
if (uritemp.Query.Length > 0)
{
string fred = "There is a problem";
}
//changed to ignore case
if (string.Equals(leftPart, uriString, StringComparison.OrdinalIgnoreCase))
{
e.IsValid = true;
}
else
{
e.Message = string.Format("The value of the ExpectedResponseUrl property '{0}' does not equal the actual response URL '{1}'. QueryString parameters were ignored.", new object[] { uriString, leftPart });
e.IsValid = false;
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1796173/load-or-stress-testing-tool-with-url-import-functionality/1799745#17997450Answer by Nat for Load or Stress Testing Tool with URL Import FunctionalityNat2009-11-25T20:30:39Z2009-11-25T20:30:39Z<p>Visual Studio Test Edition would require some code to parse the file into a suitable test run. </p>
<p>It is a great load testing solution.</p>
http://stackoverflow.com/questions/1760544/datetime-tryparse-century-control-c2DateTime.TryParse century control C#Nat2009-11-19T02:35:41Z2009-11-19T04:24:44Z
<p>The result of the following snippet is "12/06/1930 12:00:00". How do I control the implied century so that "12 Jun 30" becomes 2030 instead? </p>
<pre><code> string dateString = "12 Jun 30"; //from user input
DateTime result;
DateTime.TryParse(dateString, new System.Globalization.CultureInfo("en-GB"),System.Globalization.DateTimeStyles.None,out result);
Console.WriteLine(result.ToString());
</code></pre>
<p>Please set aside, for the moment, the fact that a <em>correct</em> solution is to specify the date correctly in the first place.</p>
<p>Note: The result is independant of the system datetime for the pc running the code.</p>
<p>Answer: Thanks Deeksy</p>
<pre><code> for (int i = 0; i <= 9; i++)
{
string dateString = "12 Jun " + ((int)i * 10).ToString();
Console.WriteLine("Parsing " + dateString);
DateTime result;
System.Globalization.CultureInfo cultureInfo = new System.Globalization.CultureInfo("en-GB");
cultureInfo.Calendar.TwoDigitYearMax = 2099;
DateTime.TryParse(dateString, cultureInfo , System.Globalization.DateTimeStyles.None, out result);
Console.WriteLine(result.ToString());
}
</code></pre>
http://stackoverflow.com/questions/1718286/performance-testing-application-for-bottle-necks-using-production-data/1759374#17593740Answer by Nat for Performance testing application for bottle necks using production dataNat2009-11-18T21:55:45Z2009-11-18T21:55:45Z<p>That is going to be a hard ask. I work with Visual Studio Test Edition to load test my applications and we are only able to "estimate" the users activity on the site.</p>
<p>It is possible to look at the logs and gather information on the likelyhood of certain paths through your app. You can then look at the production database to look at the likely values entered in any post requests. From that you will have to make load tests that approach the useage patterns of your production site.</p>
<p>With any current tools I don't think it is possible to record and playback actual user interation. </p>
<p>It <em>is</em> possible to alter your web app so that is records and logs every request and post against session and datetime. This custom logging could be then used to generate load test requests against a test website. This would be some serious code change to your existing site and would likely have performance impacts.</p>
<p>That said, I have worked with web apps that do this level of logging and the ability to analyse the exact series of page posts/requests that caused an error is quite valuable to a developer.</p>
<p>So in summary: It is possible, but I have not heard of any off the shelf tools that do it.</p>
http://stackoverflow.com/questions/1731143/ui-automated-testing-within-sharepoint/1739842#17398421Answer by Nat for UI automated testing within SharePointNat2009-11-16T03:03:24Z2009-11-16T03:03:24Z<p>Have a crack with Visual Studio 2010. It is in Beta now, so downloadable. It has a new product that will create web front end tests.</p>
http://stackoverflow.com/questions/1719505/filter-sharepoint-content/1719596#17195960Answer by Nat for Filter sharepoint contentNat2009-11-12T02:56:26Z2009-11-12T02:56:26Z<p>There are no out of the box components that will help you do exactly what you want. The closest you can get to is using the Audience Targeting feature. Kept to simple scenarios, this feature can provide a lot of mileage.</p>
http://stackoverflow.com/questions/1682984/windows-sharepoint-services-search-wont-stop/1684558#16845580Answer by Nat for Windows SharePoint Services Search won't stopNat2009-11-06T00:12:41Z2009-11-06T00:12:41Z<p>Are you able to install sp2?
Stopping the search service actually works after sp2.</p>
http://stackoverflow.com/questions/1666294/stress-testing-with-simulated-browser-behaviour/1676535#16765350Answer by Nat for Stress testing with simulated browser behaviourNat2009-11-04T20:53:36Z2009-11-04T20:53:36Z<p>Visual Studio Test Edition should do the trick for you. A Visual Studio web test recording will record that the page requested the sub pages as dependant http requests.</p>
<p>However, you can still simulate the load correctly, you just have to instruct JMeter to do the http requests for the dependant requests. To record the complete array of http requests made, try using <a href="http://www.fiddler2.com" rel="nofollow">fiddler2</a> to record. Fiddler2 also works to record visual studio web tests.</p>
http://stackoverflow.com/questions/1393434/webtesting-using-vsts-2008/1485042#14850420Answer by Nat for WebTesting using VSTS 2008Nat2009-09-28T01:38:37Z2009-11-01T06:40:41Z<p>Unfortunately webtests work on a request response basis and only validate based on the contents of those. VSTS is not going to be able to run the javascript in the context of the returned html response. </p>
<p>It is theoretically possible to instanciate a browser object from your coded webtest and feed it the returned html+javascript and check modifications made to the html after that, but I don't see that would really end happily.</p>
<p>The "correctness" of your Javascript is also highly browser dependant, so you really need to test this on each of the browsers you require. Like Css and look and feel, this is still going to require manual testing.</p>
<p>However, Visual Studio 2010 now has a <a href="http://blogs.msdn.com/vstsqualitytools/archive/2009/06/12/automated-user-interface-testing-with-coded-ui-test.aspx" rel="nofollow">coded UI test</a> that will allow you to test your pages in the way you want.</p>
http://stackoverflow.com/questions/77352/how-do-i-reward-my-developers-for-the-little-things-they-get-right36How do I reward my developers for the little things they get right?Nat2008-09-16T21:33:11Z2009-10-23T02:13:50Z
<p>I am in a tech lead role and my developers get stuff right most of the time.
How do I communicate to them thier value to me? (I.e. they have value because I do not have to go through and point out mistakes which means I do not have to watch them like a hawk which frees me to do more useful things).</p>
<p><strong>In summary</strong></p>
<p>For doing the mundane well on a day to day basis, it is good to recognise the developers effort verbally to them. An honest thankyou that mentions the specific behaviour and its positive repercussions to you personally will be well received, adjust the language to suite each individual.
(Note that other developers within earshot may also respond to this by increasing their efforts in this specific activity.)</p>
<p>Other things that should be done regularly are:</p>
<ol>
<li><p>Team drinks<br />
In many cultures this is an entirely
worthy way of giving the team some
time to socialise and relax. Be sure
that you do not exclude people who
do not drink or are not keen on pub
culture. Shared meals are another
option.</p></li>
<li><p>Formal written (email)
acknowledgment and praise to senior
managers of the teams efforts and
successes. (Note that acknowledging
individuals alone may damage team
spirit)</p></li>
<li><p>Work the hours you expect your team
to do. If they absolutely must work
late for a deadline, be there in
support Go to bat for the team.
Refuse to let them be forced to work
long periods of overtime without
compensation.</p></li>
<li><p>Protect them from level politics and stress.</p></li>
<li><p>Give your team the best equipment
you can afford. Good tools show
respect and improve productivity.</p></li>
<li><p>Small or large team rewards where
appropriate can consist of many
interesting activities/ items. If it
allows the team to get together in a
fun and even lightly competitive
manner it will work (foosball table,
go-karting, darts board, video game
console etc). Don’t forget to listen
to what the team wants, each team
will have different ideas.</p></li>
<li><p>Ensure they are getting a fair deal
financially from the company. While
different people may have different
expectations of their pay, someone
being paid unfairly will rot morale
for the entire team</p></li>
</ol>
http://stackoverflow.com/questions/231690/sharepoint-web-part-vs-asp-net-user-control/232185#2321855Answer by Nat for Sharepoint: Web Part vs. ASP.NET User ControlNat2008-10-24T01:20:19Z2009-10-22T14:50:49Z<p>A bare ASP.NET ascx control would have to be added to a custom layout page. This limits the utility of the control a little as it cannot be added "just anywhere".</p>
<p>Having a webpart gives the flexibility of the control being added to the site multiple times in different locations or even multiple times on the same page with different properties. </p>
<p>As has been mentioned it is good to use <code>CreateChildControls()</code> to create the controls in the webpart and it is not that much of a big deal to code and package a webpart into a solution, making it worth the extra effort.</p>
<p>Webparts are also able to accept connections from "filter" webparts on the same page, giving additional flexibility to webparts compared to hosting ascx controls on the site.</p>
<p>When it comes to editors using the site, it makes a lot of difference for them to be able to add a webpart compared to editing a page layout, publishing it and then creating pages based on that page layout, so from the perspective of a site editor, the difference in usability is really quite large.</p>
<p>I recommend going even further and coding your webpart to use an xslt file to display the contents and making the location of that xslt a configurable property of the webpart. This <em>really</em> adds to the flexibility of your control.</p>
<p>Look at the Dataview webpart to see how much can be done with the addition of custom rendering.</p>
http://stackoverflow.com/questions/1228888/references-on-how-to-create-webtests-for-asp-net/1575404#15754040Answer by Nat for References on how to create webtests for ASP.NETNat2009-10-15T22:08:32Z2009-10-15T22:08:32Z<p>Grab a copy of <a href="http://www.fiddlertool.com/Fiddler2/" rel="nofollow">Fiddler2</a>. When run it will "record" your session with the ASP.NET server (requests and responses - also done by Visual Studio when "recording" a new web test). You can then select the requests and save them as a visual studion web test.</p>
<p>The rest is all about understanding how ASP.NET creates and uses Requests and responses to control the application. </p>
<p>Turn your web tests into coded webtests and search microsoft for details on each object the webtest uses for extra credit.</p>
http://stackoverflow.com/questions/1222931/stopping-a-webtest-if-an-extraction-rule-failed/1575360#15753600Answer by Nat for Stopping a webtest if an extraction rule failedNat2009-10-15T22:01:23Z2009-10-15T22:01:23Z<p>Can you not check the eventargs.Success property from inside the webtest? A simple if statement should suffice to prevent the successive requests in the webtest from executing.</p>
http://stackoverflow.com/questions/1231939/programatically-shutdown-application-before-webtest/1575348#15753480Answer by Nat for Programatically shutdown application before webtestNat2009-10-15T21:58:36Z2009-10-15T21:58:36Z<p><a href="http://msdn.microsoft.com/en-us/library/ms243191%28VS.80%29.aspx" rel="nofollow">Create a web test plugin</a> that will give you the ability to run code before the webtest runs. </p>
http://stackoverflow.com/questions/1572252/problem-with-load-testing-web-service-vsts-2008/1575050#15750500Answer by Nat for Problem with load testing Web Service - VSTS 2008Nat2009-10-15T21:02:35Z2009-10-15T21:02:35Z<p>If your requests per second are constant and with the total tests remaining constant despite the number of virtual users, the bottleneck could be the webservice itself only being able to service a set number of requests at a time.</p>
http://stackoverflow.com/questions/1563761/vsts-load-test-one-run-per-data-row/1575016#15750160Answer by Nat for VSTS load test one run per data rowNat2009-10-15T20:55:49Z2009-10-15T20:55:49Z<p>I assume you only want data tests to run when there is a row of data available.</p>
<p>I would change the data driving the test to read a stored procedure with an atomic transation such as this SQL code: </p>
<pre><code>BEGIN TRANSACTION
DECLARE @Id UNIQUEIDENTIFIER
SET @Id = (SELECT top 1 ID from #TestData WHERE TestRun = 0)
SELECT top 1 * FROM #TestData WHERE ID = @Id
UPDATE #TestData SET TestRun = 1 WHERE ID = @ID
COMMIT TRANSACTION
</code></pre>
<p>This will get you a unique datarow each time the test is run, allowing the test to be used in a load test.</p>
<p>You will have to use SQL Express instead of access as I don't think it can handle the concurrency so well (open to correction here).</p>
<p>If you need more control over what happens during the load test, consider <a href="http://msdn.microsoft.com/en-us/library/ms243153%28VS.80%29.aspx" rel="nofollow">creating a load test plugin</a> that will allow you to implement code from the following load test events:</p>
<ul>
<li>LoadTestStarting </li>
<li>LoadTestFinished </li>
<li>LoadTestWarmupComplete </li>
<li>TestStarting </li>
<li>TestFinished </li>
<li>ThresholdExceeded </li>
<li>HeartBeat </li>
<li>LoadTestAborted</li>
</ul>
http://stackoverflow.com/questions/526946/where-are-sharepoint-resources-strings-located2Where are SharePoint resources strings located.Nat2009-02-09T02:03:48Z2009-10-15T02:40:01Z
<p>I have a page layout, PeopleSearchResults.aspx programmed by someone else.
It contains the following tag for a <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.server.search.webcontrols.refinesearchresults.aspx" rel="nofollow">SharePoint refine people search results control</a>.</p>
<pre><code>Title="<%$Resources:sps,RefineByTitle%>"
</code></pre>
<p>Where on earth/SharePoint do I look to find the string that code references?</p>
http://stackoverflow.com/questions/1542179/server-benchmarking-what-tools-to-use-with-my-real-world-test-data/1548999#15489990Answer by Nat for Server Benchmarking: What tools to use with my real-world test dataNat2009-10-10T20:31:06Z2009-10-10T20:31:06Z<p>I would reccomend Visual Studio Test Edition. It would be a relativley simple matter to create a coded webtest that loads your url's for testing.</p>
<p>This advice predicates a knowledge of C# or VB for coding and the ability to install and licence Visual Studio. Visual Studio does have a trial edition available so you can have a taste of what you are getting first.</p>
<p>Visual Studio does not require the target site to be running any particular hardware or software, but it does provide more information on the load of the server due to the use of Perfmon counters and any ASP.Net application will provide more detail on the running app.</p>
<p>The caveat to this is that I have not actually used any other web testing software.</p>
http://stackoverflow.com/questions/1527940/web-service-current-connections-performance-counter/1534282#15342820Answer by Nat for Web Service - "Current Connections" performance counterNat2009-10-07T21:24:15Z2009-10-07T21:24:15Z<p>Have a look at the WebTest Connection Model and WebTest Connection Pool Size from the properties of your Run Settings in the load test. These settings have a lot to do with connection re-use to the server.</p>
<p>Current connections records the number of connections open, whether currently active or not.
<a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/af36e903-75c3-4a4c-ae47-8663f8543b0c.mspx?mfr=true" rel="nofollow">This article</a> describes the counter in more depth.</p>
<p>" These counters can exaggerate the number of simultaneous connections because, at any given moment, some entries may not have been deleted even though the connections on which they are based have been closed. "</p>
http://stackoverflow.com/questions/1523340/stress-testing-in-visual-studio/1534080#15340801Answer by Nat for Stress Testing in Visual StudioNat2009-10-07T20:42:59Z2009-10-07T20:42:59Z<p>The best way of doing it is to create a <a href="http://msdn.microsoft.com/en-us/library/ms243153%28VS.80%29.aspx" rel="nofollow">LoadTestPlugin</a> to do what you want at various points in the load test.</p>
<p>The events exposed are:</p>
<ul>
<li>LoadTestStarting </li>
<li>LoadTestFinished </li>
<li>LoadTestWarmupComplete </li>
<li>TestStarting </li>
<li>TestFinished </li>
<li>ThresholdExceeded </li>
<li>HeartBeat </li>
<li>LoadTestAborted</li>
</ul>
http://stackoverflow.com/questions/1493535/web-part-with-a-custom-property-bound-to-a-choice-field-from-a-content-type/1494744#14947441Answer by Nat for Web Part with a custom property bound to a "choice" field from a content type?Nat2009-09-29T20:27:27Z2009-09-29T20:27:27Z<p>You cannot data bind directly to a content type column as it does not exist as in a bindable form, only as an XML secification on the content type itself.</p>
<p>Better to specify the column as a lookup and databind to the list directly. However, that is not going to work well when you only want one lookup across multiple webs or site collections. </p>
<p>In that case create a list in a config site such as <a href="http://intranet/sites/config" rel="nofollow">http://intranet/sites/config</a> and code a lookup control to databind to that list. Then use the control in the webpart and in a custom field control on the content type.</p>
<p>A bit of work, but worth it if you require SharePoint edit control (versioning, security etc) access to the contents of the lookup and a single (changeable) source of data across the entire site.</p>
http://stackoverflow.com/questions/1489803/sharepoint-import-error-access-denied/1489819#14898191Answer by Nat for SharePoint import error - 'Access Denied'Nat2009-09-28T23:15:15Z2009-09-29T20:13:38Z<p>All those files require higher permissions to access than normal, what account are you running the export as? Try logging into the site as that account and see if you are able to access the site <a href="http://%5Byoursite%5D/%5Fcatalogs/masterpage/Forms/AllItems.aspx" rel="nofollow">http://%5Byoursite%5D/%5Fcatalogs/masterpage/Forms/AllItems.aspx</a>. </p>
<p>That should tell you straight up if there are permission issue with those files.</p>
http://stackoverflow.com/questions/1477935/best-tell-tale-sign-on-their-first-day-that-a-programmer-might-not-work-out/1485083#14850836Answer by Nat for Best tell-tale sign on their first day that a programmer might not work out?Nat2009-09-28T01:54:25Z2009-09-28T01:54:25Z<p>True story. He clicked on the "little minus sign" on his application and it disappeared. Had to ask where it went.</p>
http://stackoverflow.com/questions/1441483/net-webtest-custom-validationrules-how-to-unit-test/1485032#14850321Answer by Nat for .NET WebTest Custom ValidationRules - How to unit test?Nat2009-09-28T01:33:18Z2009-09-28T01:33:18Z<p>Create a database+table for holding webtest values, create a webtest that loads from your table and populates the form with the values from your table. You can also add an "expected result" column. The webtest can then iterate automatically through rows in the table and report success based on the "expected result". A coded webtest is going to be easier to create your custom validation rule with.</p>
http://stackoverflow.com/questions/1471028/how-to-use-the-getchanges-method-of-sitedata-webservice/1484983#14849830Answer by Nat for How to use the GetChanges method of SiteData WebServiceNat2009-09-28T01:04:21Z2009-09-28T01:14:48Z<p>Try calling GetContent first with </p>
<pre><code>string result = mysiteDataServiceInstance.GetContent(SiteDataService.ObjectType.ContentDatabase,
myContentDbGuid.ToString(), "", "", false, false, ref lastChangeID);
</code></pre>
<p>Where lastChangeID is an empty string. This should give back results like </p>
<pre><code><ContentDatabase><Metadata ChangeId="1;0;146b129e-4f56-4701-ada2-b370744f2ca3;633896405160170000;168811216" ID="{146b129e-4f56-4701-ada2-b370744f2ca3}" /></ContentDatabase>
</code></pre>
<p>Where 146b129e-4f56-4701-ada2-b370744f2ca3 is the guid of my ContentDb
The ChangeId mentioned here can be used in place of the lastChangeId and currentChangeId.
My results appeared like</p>
<pre><code><SPContentDatabase Change="Unchanged" ItemCount="0">
<ContentDatabase><Metadata ChangeId="1;0;146b129e-4f56-4701-ada2-b370744f2ca3;633896953296070000;30349699" ID="{146b129e-4f56-4701-ada2-b370744f2ca3}" /></ContentDatabase></SPContentDatabase>
</code></pre>
<p>The process is exactly the same when using SiteDataService.ObjectType.Site</p>
http://stackoverflow.com/questions/1467147/copy-sharepoint-splistitem-while-preventing-new-workflows-or-modifications/1469037#14690371Answer by Nat for Copy SharePoint SPListItem while preventing new workflows or modificationsNat2009-09-23T23:26:17Z2009-09-23T23:26:17Z<p>You could get your workflow code to checkout the list item until the workflow ends and check it back in.</p>
http://stackoverflow.com/questions/1834194/how-to-set-up-a-load-stress-test-for-a-web-site/1834978#1834978Comment by Nat on How to set up a load/stress test for a web site?Nat2009-12-02T20:43:48Z2009-12-02T20:43:48ZSweet, break down the IIS logs activity into a group of web tests create a load test to get the proportion of the tests about right. Go to 2010 it is really nice and works well even in Beta.http://stackoverflow.com/questions/1796173/load-or-stress-testing-tool-with-url-import-functionality/1799745#1799745Comment by Nat on Load or Stress Testing Tool with URL Import FunctionalityNat2009-11-26T20:22:59Z2009-11-26T20:22:59ZYou could use LogParser to get the logs into .Net the webtest format for tests in Visual Studio is xml, so not completelty impossible to create.http://stackoverflow.com/questions/1760544/datetime-tryparse-century-control-c/1760631#1760631Comment by Nat on DateTime.TryParse century control C#Nat2009-11-19T20:49:03Z2009-11-19T20:49:03ZYeah, in this case they do want all dates in the future, but it is nice to know the best place to put more complicated code should the need arise.http://stackoverflow.com/questions/1760544/datetime-tryparse-century-control-cComment by Nat on DateTime.TryParse century control C#Nat2009-11-19T20:47:27Z2009-11-19T20:47:27ZThe other benefit to this approach is that the short time in the database tops out at 2067, so setting the twodigityearmax to 2067 works nicely.http://stackoverflow.com/questions/1760544/datetime-tryparse-century-control-c/1760557#1760557Comment by Nat on DateTime.TryParse century control C#Nat2009-11-19T02:55:37Z2009-11-19T02:55:37ZIt is independant of the system date time, however it does play merry havok with my evaluation licence for visual studio :)http://stackoverflow.com/questions/1760544/datetime-tryparse-century-control-c/1760557#1760557Comment by Nat on DateTime.TryParse century control C#Nat2009-11-19T02:41:46Z2009-11-19T02:41:46ZThat is anotherway of putting the question yes.http://stackoverflow.com/questions/1666294/stress-testing-with-simulated-browser-behaviour/1676535#1676535Comment by Nat on Stress testing with simulated browser behaviourNat2009-11-10T19:28:13Z2009-11-10T19:28:13ZI am sorry, I have no idea how JMeter works, I do not even know if such an option exists. It may require manually adding the requests.
fiddler should tell you what requests are actually made.http://stackoverflow.com/questions/1527940/web-service-current-connections-performance-counter/1534282#1534282Comment by Nat on Web Service - "Current Connections" performance counterNat2009-10-08T20:08:21Z2009-10-08T20:08:21ZI don't know enough about the lifecycle of IIS connections with webservices. Perhaps the connection is closed immediately following the call, allowing the counter to incorrectly collect the connection information. Sorry I cannot be of more help.http://stackoverflow.com/questions/1477935/best-tell-tale-sign-on-their-first-day-that-a-programmer-might-not-work-outComment by Nat on Best tell-tale sign on their first day that a programmer might not work out?Nat2009-09-28T01:45:57Z2009-09-28T01:45:57Zturns out his identical twin did the interview?http://stackoverflow.com/questions/1466759/differentiate-between-sharepoint-user-defined-columns-and-default-columnsComment by Nat on Differentiate between Sharepoint User defined columns and default columnsNat2009-09-23T23:52:08Z2009-09-23T23:52:08ZThere is no practical way to do this. It may help if we know the reason you need to know the difference.http://stackoverflow.com/questions/1467150/wsrp-server-was-unable-to-process-request-security-validation-failed-at-sharepComment by Nat on WSRP - Server was unable to process request. Security Validation failed at Sharepoint ServerNat2009-09-23T23:24:57Z2009-09-23T23:24:57ZIs this an example of the dreaded double hop issue, where the user credentials are not being passed to the SharePoint server?http://stackoverflow.com/questions/1457112/proper-model-for-side-storage-in-sharepoint/1457559#1457559Comment by Nat on proper model for side storage in SharePoint?Nat2009-09-22T01:13:23Z2009-09-22T01:13:23ZSry, the example did not provide code to render a custom field control as well as the custom type. The microsoft example includes that.http://stackoverflow.com/questions/1363664/repeated-reporting-services-login-issue-when-deploying-through-bids-to-a-remote-sComment by Nat on Repeated Reporting Services Login issue when deploying through BIDS to a remote serverNat2009-09-01T21:59:28Z2009-09-01T21:59:28ZIs it the dreaded multi hop issue?http://stackoverflow.com/questions/1308298/change-pictures-on-a-masterpage-depending-on-documents-in-document-library/1308856#1308856Comment by Nat on Change pictures on a Masterpage depending on documents in Document Library.Nat2009-08-24T01:30:59Z2009-08-24T01:30:59ZOooh yeah, would have to be the layout page.http://stackoverflow.com/questions/901320/anti-joel-test/901635#901635Comment by Nat on Anti-Joel TestNat2009-07-08T23:38:24Z2009-07-08T23:38:24Zwhich ones? - the cartoons you have on the wall.