User Keith Sirmons - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T17:20:26Zhttp://stackoverflow.com/feeds/user/1048http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1755843/how-to-decompress-nested-gzip-tgz-files-in-c/1758380#17583800Answer by Keith Sirmons for How to Decompress nested GZip (TGZ) files in C#Keith Sirmons2009-11-18T19:19:06Z2009-11-18T19:19:06Z<p>Take a look at <a href="http://www.codeplex.com/DotNetZip" rel="nofollow">DotNetZip</a> on CodePlex. </p>
<blockquote>
<p>"If all you want is a better
DeflateStream or GZipStream class to
replace the one that is built-into the
.NET BCL, that is here, too.
DotNetZip's DeflateStream and
GZipStream are available in a
standalone assembly, based on a .NET
port of Zlib. These streams support
compression levels and deliver much
better performance that the built-in
classes. There is also a ZlibStream to
complete the set (RFC 1950, 1951,
1952)."</p>
</blockquote>
<p>It appears that you can iterate through the compressed file and pull the individual files out of the archive. You can then test the files you uncompressed and see if any of them are themselves GZip files.</p>
<p>Here is a snippit from their <a href="http://dotnetzip.codeplex.com/wikipage?title=CS-Examples&referringTitle=Examples" rel="nofollow">Examples Page</a></p>
<pre><code>using (ZipFile zip = ZipFile.Read(ExistingZipFile))
{
foreach (ZipEntry e in zip)
{
e.Extract(OutputStream);
}
}
</code></pre>
<p>Keith</p>
http://stackoverflow.com/questions/1681700/why-is-my-ole-data-source-data-not-querying-consistently1Why is my OLE data source data not querying consistently?Keith Sirmons2009-11-05T16:18:37Z2009-11-05T16:18:37Z
<p>Howdy, </p>
<p>I have a Microsoft Excel 2003 file that I am querying from C# 2.0 using an OleDbConnection. </p>
<p>One of the cells in the Excel file is formated as a short date and displays in Excel as "1/1/2009". If I change the format to General the text displayed in that cell changes to "39814".</p>
<p>If I query the Excel file while the <b>file is open</b>, I receive <b>"39814"</b> in the result set. </p>
<p>If I query the Excel file while the <b>file is closed</b>, I receive <b>"1/1/2009"</b> in the result set.</p>
<p>Why the inconsistency with importing data from this Ole Data Source? </p>
<p>Thank you,<br>
Keith</p>
http://stackoverflow.com/questions/20797/how-to-split-a-byte-array4How to split a byte arrayKeith Sirmons2008-08-21T19:01:28Z2009-11-02T16:58:08Z
<p>Howdy,</p>
<p>I have a byte array in memory, read from a file. I would like to split the byte array at a certain point(index) without having to just create a new byte array and copy each byte at a time, increasing the in memory foot print of the operation. What I would like is something like this:</p>
<blockquote>
<p>byte[] largeBytes = [1,2,3,4,5,6,7,8,9];<br />
byte[] smallPortion;<br />
smallPortion = split(largeBytes, 3); </p>
<p>smallPortion would equal 1,2,3,4<br />
largeBytes would equal 5,6,7,8,9</p>
</blockquote>
<p>Thank you,
Keith</p>
<p>EDIT:
@Michael, Nice code..</p>
<p>I see how this example works, by just creating specific "views" of the original array.</p>
<p>Just a few FYI questions for others who may read this later.</p>
<p>How would you see this working when passing the resultant view to other classes for use? How does the reference to the original array stay in scope?</p>
<p>I guess since you would actually be passing references to the "views", the other classes will continue to access the view in the same manner as the example in your Main. The View contains a private reference to the original array keeping in in scope and would not be GC'ed.</p>
<p>I think this is the answer.</p>
<p>Thank you, Keith</p>
<p>BTW, I love this site!</p>
http://stackoverflow.com/questions/150038/how-to-wire-a-middle-tier-of-objects-to-a-data-tier-consisting-of-a-dataset1How to wire a middle tier of Objects to a data tier consisting of a DataSet?Keith Sirmons2008-09-29T18:38:22Z2009-10-25T00:03:10Z
<p>Howdy,</p>
<p>I have a middle tier containing several related objects and a data tier that is using a DataSet with several DataTables and relationships.</p>
<p>I want to call a Save method on one of my objects (a parent object) and have its private variable data transformed into a DataRow and added to a DataTable. Some of the private variable data are actually other objects (child object) that each need to have their own Save method called and their own variable data persisted.</p>
<p>How do I "lace" this together? What parts of a DataSet should be instantiated in the ParentObject and what needs to be passed to the ChildObjects so they can add themselves to the dataset?</p>
<p>Also, how do I wire the relationships together for 2 tables?</p>
<p>The examples I have seen for an Order OrderDetail relationship create the OrderRow and the OrderDetailRow then call OrderDetailRow.SetParentRow(OrderDetail)</p>
<p>I do not think this will work for me since my Order and OrderDetail (using their examples naming) are in separate classes and the examples have it all happening in a Big Honking Method.</p>
<p>Thank you,
Keith</p>
http://stackoverflow.com/questions/374919/should-i-keep-solutions-and-features-in-a-1-1-ratio4Should I keep solutions and features in a 1-1 ratio?Keith Sirmons2008-12-17T15:35:29Z2009-10-22T15:27:14Z
<p>Howdy, </p>
<p>I have a complex sharepoint deploy with multiple EventReceivers and Workflows. </p>
<p>I also have schema changes to existing lists, adding new columns of metadata and changing existing columns. </p>
<p>Should I package a single feature, eventreceiver or workflow, to a single solution, or should I put multiple features inside the single solution since they all work together? </p>
<p>One major reason I am asking is for future code upgrades. If the features are seperated, then an upgrade in one portion of code would not require a re-deploy of all the features in the solution. Is this something I should worry about or does the "stsadmin -o upgradesolution" take care of any issues with the upgrade of a solution with many features?</p>
<p>Let me know if this makes sense to any SharePoint gurus out there. </p>
<p>Thank you,<br />
Keith</p>
<p><strong>Update:</strong>
Looking at the website <a href="http://stackoverflow.com/questions/374919/should-i-keep-solutions-and-features-in-a-1-1-ratio#375278">drax</a> referenced, I found this reference site: <a href="http://msdn.microsoft.com/en-us/library/aa543659.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa543659.aspx</a> </p>
<p>This statement seems to put a large handicap on upgrading features in solutions:</p>
<blockquote>
<p>Solution upgrade can only be used to
replace files. You can add new files
in a solution upgrade and remove old
versions of the files, but you cannot
install Features or use Feature event
handlers to run code for Feature
installation and activation. The
following operations are not supported
in solution upgrade.</p>
<ul>
<li><p>Removing old Features in a new
version of a solution.</p></li>
<li><p>Adding new Features in a solution
upgrade.</p></li>
<li><p>Updating or changing the receiver
assembly for existing Features in a
new version of a solution.</p></li>
<li><p>Adding or changing Feature elements
(Element.xml files) in a new version
of a solution.</p></li>
<li><p>Adding or changing Feature
properties in a new version of a
solution.</p></li>
<li><p>Changing the ID or scope of old
Features in a new version of a
solution.</p></li>
<li><p>Removing Feature elements
(Element.xml files) in a new version
of a solution.</p></li>
<li><p>Removing Feature properties in a new
version of a solution.</p></li>
</ul>
</blockquote>
<p>So... What can you do with a solution upgrade?</p>
http://stackoverflow.com/questions/357032/how-to-upgrade-a-long-running-sharepoint-workflow-already-in-production14How to upgrade a long running SharePoint Workflow already in productionKeith Sirmons2008-12-10T18:13:06Z2009-10-22T12:35:16Z
<p>I have been tasked with helping the deployment of a Phase 2 of a previous SharePoint deployment.</p>
<p>The original deployment has custom workflows that have been updated in phase 2.<br />
<strong>Is there a "How-To" for this type of situation?</strong></p>
<p>Some of the pitfalls we have seen requires you to mark the original workflow to not accept any new instances, then deploy its update as a new worflow. This would allow the previous items to finish processing under the old code and any new processes to spin up the new workflow. </p>
<p>One problem with this is we would then have to visit each site where the original workflow was attached and attach the new workflowV2. Now we have two workflow status columns in the doc library. </p>
<p>I am just getting into the project and these are problems the devs have noticed. </p>
<p><strong>Any resources or hints you can throw at me would be appreciated as I am learning all of this as I go.</strong></p>
<p>Here are some notes up from another dev who is giving me some background as to what he has seen:</p>
<blockquote>
<p>If a version of a workflow already exists, then redeploying it as a feature will cause the existing workflow to have its status set to “No New Instances”. This can be seen by going to a document library where the workflow has been attached, select Settings -> Document Library Settings -> Workflow settings -> Remove a workflow and noting the radio button setting for the workflow. Any current, in work, workflows instances will still complete as normal, but this setting will prevent any new instances of the workflow. </p>
<p>Once the 2nd ‘version’ of the same workflow has been deployed, you’ll need to revisit each document library where you want it to be associated and re-add it as if it were a new workflow. You’ll have to give it a unique name, like ‘MyWorkflow_v2’. The other side-effect is that now you’ll have 2 workflow status columns in the document library. You can remove/hide the first one once all instances of it have completed and the status is no longer needed.</p>
<p>If you redeploy the workflow using the same feature and manifest XML files, then the internal GUID will be the same one as was used in the first deploy. SharePoint will recognize this as a second ‘version’ of the same workflow and automatically set the first version to the “No New Instances” status. If however, you choose to use a different GUID in the XML files, then SharePoint will see this as a deployment of a brand new workflow and do nothing with the existing instances. You will need to manually set each instance in each document library to the “No New Instances” setting.</p>
<p>After re-deploying the second ‘version’ of the workflow, you will still need to manually visit each document library where you want it used and add it to the document library. Keep in mind that its workflow template name will appear in the list of workflow templates as it is named in the XML files (which is OK), but once you add it you’ll be required to enter a unique workflow name for the workflow. This is the point you must choose something like ‘Workflow_v2” as a new name.</p>
<p>The retract action removes all instances of the features within the solution, specifically for my workflow application, it removes all instances of the workflow from all document libraries that it was associated with. However, in the case of <em></em>, where a task is created by the workflow, once the solution is retracted if a user clicks on a task item expecting to get the signature page, they’ll instead get a SharePoint “Unknown error” page. The reason is because the retract process removed the workflow from the database and there is no longer a workflow associated with the task.</p>
</blockquote>
http://stackoverflow.com/questions/122523/why-is-a-sql-float-different-from-a-c-float7Why is a SQL float different from a C# floatKeith Sirmons2008-09-23T17:39:28Z2009-10-09T22:14:00Z
<p>Howdy, I have a DataRow pulled out of a DataTable from a DataSet. I am accessing a column that is defined in SQL as a float datatype. I am trying to assign that value to a local variable (c# float datatype) but am getting an InvalidCastExecption </p>
<pre><code>DataRow exercise = _exerciseDataSet.Exercise.FindByExerciseID(65);
_AccelLimit = (float)exercise["DefaultAccelLimit"];
</code></pre>
<p>Now, playing around with this I did make it work but it did not make any sense and it didn't feel right. </p>
<pre><code>_AccelLimit = (float)(double)exercise["DefaultAccelLimit"];
</code></pre>
<p>Can anyone explain what I am missing here?</p>
http://stackoverflow.com/questions/382535/how-to-update-spitemeventreceiver-assembly-version-for-a-list-in-sharepoint1How to update SPItemEventReceiver assembly version for a list in SharePoint?Keith Sirmons2008-12-19T23:16:10Z2009-10-02T15:19:15Z
<p>Howdy, </p>
<p>Still in the learning process with SharePoint. </p>
<p>We have an SPItemEventReceiver compiled into its own assembly. </p>
<p>We are using STSDev to package up a SharePoint solution with this EventReceiver as a feature. I am not assigning the SPItemEventReceiver to a specific ListTemplateId within the elements.xml, but am instead linking a ReceiverAssembly in the feature.xml and programmaticaly assigning the SPItemEventReceiver to multiple SPList items.</p>
<pre><code> public override void FeatureActivated(SPFeatureReceiverProperties properties)
{
foreach (SPWeb web in site.AllWebs)
{
SPListCollection webListCollection = web.Lists;
foreach (SPList myList in webListCollection)
{
if (myList.Title == "Lab Reports")
{
SPEventReceiverDefinitionCollection receivers = myList.EventReceivers;
SPEventReceiverDefinition receiver = receivers.Add();
receiver.Name = "PostUpdateLabReport";
receiver.Assembly = "LabReportEventHandlers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1111111111111";
receiver.Class = "LabReportEventHandlers.LabReportsHandler";
receiver.Type = SPEventReceiverType.ItemUpdated;
receiver.Update();
break;
}
}
web.Dispose();
}
}
</code></pre>
<p>I am using FeatureDeactivating to do the reverse of the above code, removing the EventReceiver from the lists. </p>
<p><strong>Question:</strong></p>
<p>How should I handle the future event where LabReportEventHandlers is updated and the version changes? </p>
<p>These are the options I can think of:</p>
<ol>
<li><p>Deactivate / Reactivate feature -- I would wrap the updated dll back into the SharePoint solution file, change my code above to reflect the new version, and use stsadmin to upgrade the solution. I would then deactivate/ reactivate the feature.</p></li>
<li><p>Add Assembly redirection to the web.config. </p></li>
<li><p>Don't bump the LabReportEventHandlers version number.</p></li>
</ol>
<p>Is there something in changing the solution version that will help me?</p>
<p>I think there are problems with the 3 options: </p>
<ol>
<li><p>After deactivation of the feature, someone could update an item before I can reactiave.</p></li>
<li><p>I would not want to edit the web.config by hand, so I would use the sharepoint API instead. Where would I run that code? </p></li>
<li><p>This is just plain wrong, but easy. </p></li>
</ol>
<p>Hope you enjoy the question more than I enjoy SP. (SP and I have a love/hate relationship) </p>
<p>Thank you,<br />
Keith</p>
http://stackoverflow.com/questions/854598/sharepoint-list-webservice-error-on-checkoutfile-method-with-ssl1Sharepoint List webservice error on CheckoutFile method with SSLKeith Sirmons2009-05-12T20:03:04Z2009-09-21T03:00:07Z
<p>Howdy, </p>
<p>I am trying to checkout a file from a SharePoint document library before downloading to my client application for edit. </p>
<pre><code>//documentPath = https://192.168.1.10/Utility/Phys/Document%20Library/document.xml
//listWebServiceURL = https://192.168.1.10/Utility/Phys/Document%20Library/_vti_bin/lists.asmx
private void CheckOutFile(string documentPath)
{
string listWebServiceUrl = this.GetListServiceURL(documentPath);
bool checkedOut;
using (Lists listWebService = new Lists())
{
listWebService.Credentials = CredentialCache.DefaultCredentials;
listWebService.Url = listWebServiceUrl;
checkedOut = listWebService.CheckOutFile(documentPath, "true", string.Empty);
}
}
</code></pre>
<p>When the checkedOut = listWebService.CheckOutFile(documentPath, "true", string.Empty); line runs I get a SOAPServerException. </p>
<p>((System.Xml.XmlElement)((System.Web.Services.Protocols.SoapException)(ex)).Detail).InnerText
Object reference not set to an instance of an object.</p>
<p>Any help on this would be appreciated. </p>
<p>Thank you,<br />
Keith</p>
<p>EDIT:
I have tested the above code against a SharePoint library that does not use SSL and it seems to work fine. </p>
http://stackoverflow.com/questions/508442/what-does-a-well-formed-xml-or-schema-look-like-for-infopath-form-creation0What does a well formed XML or Schema look like for InfoPath form creation?Keith Sirmons2009-02-03T19:00:27Z2009-09-04T12:00:01Z
<p>Howdy,</p>
<p>Are there any resources out there that defines how a well formed XML or Schema may look like for InfoPath? </p>
<p>When designing a new form, there is an option to base the new form off of an existing XML document or XML Schema as the data source. </p>
<p>I am looking for any guidelines or rules that will help me make sure the structure of the XML file I use to create the form will work the best it could work. </p>
<p>I am creating the XML structure for another project, but we want to make sure the XML that is created would be InfoPath friendly for possible future applications.</p>
<p>Thank you,<br />
Keith</p>
http://stackoverflow.com/questions/1140716/how-do-i-handle-cls-compliant-within-a-web-reference0How do I handle CLS-compliant within a Web Reference?Keith Sirmons2009-07-16T22:46:34Z2009-07-16T23:20:19Z
<p>Howdy,</p>
<p>I am turning on [assembly: System.CLSCompliant(true)] inside the assemblies of my C# solution.</p>
<p>I am now getting a few warnings inside the generated code for a SharePoint Web Service. </p>
<p>Here is one of the methods that are not CLS-compliant:</p>
<pre><code> /// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/sharepoint/soap/GetItem", RequestNamespace="http://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace="http://schemas.microsoft.com/sharepoint/soap/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public uint GetItem(string Url, out FieldInformation[] Fields, [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] out byte[] Stream) {
object[] results = this.Invoke("GetItem", new object[] {
Url});
Fields = ((FieldInformation[])(results[1]));
Stream = ((byte[])(results[2]));
return ((uint)(results[0]));
}
</code></pre>
<p>How can I remove this warning?</p>
<p>Thank you,
Keith</p>
http://stackoverflow.com/questions/42395/how-do-i-write-a-while-loop11How do I write a While loopKeith Sirmons2008-09-03T19:42:50Z2009-07-15T23:43:16Z
<p>How do you write the syntax for a While loop?</p>
<h2>C<code>#</code></h2>
<pre><code>int i = 0;
while (i != 10)
{
Console.WriteLine(i);
i++;
}
</code></pre>
<h2>VB.Net</h2>
<pre><code>Dim i As Integer = 0
While i <> 10
Console.WriteLine(i)
i += 1
End While
</code></pre>
<h2>PHP</h2>
<pre><code><?php
while(CONDITION)
{
//Do something here.
}
?>
<?php
//MySQL query stuff here
$result = mysql_query($sql, $link) or die("Opps");
while($row = mysql_fetch_assoc($result))
{
$_SESSION['fName'] = $row['fName'];
$_SESSION['lName'] = $row['lName'];
//...
}
?>
</code></pre>
<h2>Python</h2>
<pre><code>i = 0
while i != 10:
print i
i += 1
</code></pre>
http://stackoverflow.com/questions/386613/who-develops-against-sharepoint-and-is-there-anyone-out-there-who-would-be-called6Who develops against SharePoint and is there anyone out there who would be called an Expert?Keith Sirmons2008-12-22T16:08:09Z2009-07-15T14:45:26Z
<p>Howdy all,</p>
<p>I see there are just 506 questions tagged SharePoint, out of 63,057 total questions. (as of 12/22/08 9:48am cdt.) </p>
<p>Who developes against SharePoint and is there anyone out there who would be called an Expert? (I think SP experts are like unicorns, mythical creatures that don't exist, but the world would be more beautiful if they did)</p>
<p>What resources do you use to answer the hard questions? </p>
<p>Keith</p>
http://stackoverflow.com/questions/1088394/why-is-the-column-name-from-a-csv-file-different-than-its-datatable1Why is the column name from a CSV file different than its DataTable?Keith Sirmons2009-07-06T18:01:06Z2009-07-06T18:04:16Z
<p>Howdy, </p>
<p>I'm using an OleDbConnection, OleDbCommand, and OleDbDataReader to read a CSV file into a DataTable. </p>
<p>The CSV file uses the first row as a header row. </p>
<p>Some of the names in the header have non alphanumeric characters like ( _ . / ). </p>
<p>When the system creates the Column names it is transposing the . (period) character into a # (pound sign). </p>
<p>Why is this one character being changed and is there a way to stop the change, making the . (period) stay in the column name?</p>
<p>Thank you,<br />
Keith</p>
http://stackoverflow.com/questions/307292/how-to-use-an-appdomain-to-limit-a-static-class-scope-for-thread-safe-use4How to use an AppDomain to limit a static class' scope for thread-safe use?Keith Sirmons2008-11-20T23:34:59Z2009-07-06T16:36:09Z
<p>Howdy, </p>
<p>I have been bitten by a poorly architected solution. It is not thread safe! </p>
<p>I have several shared classes and members in the solution, and during development all was cool...<br />
BizTalk has sunk my battle ship. </p>
<p>We are using a custom BizTalk Adapter to call my assemblies. The Adapter is calling my code and running things in parallel, so I assume it is using multiple threads all under the same AppDomain. </p>
<p>What I would like to do is make my code run under its own AppDomain so the shared problems I have will not muck with each other. </p>
<p>I have a very simple class that the BizTalk adapter is instantiating then running a Process() method. </p>
<p>I would like to create a new AppDomain inside my Process() method, so each time BizTalk spins another thread, it will have its own version of the static classes and methods. </p>
<p>BizTalkAdapter Code: </p>
<pre><code> // this is inside the BizTalkAdapter and it is calling the Loader class //
private void SendMessage(IBaseMessage message, TransactionalTransmitProperties properties)
{
Stream strm = message.BodyPart.GetOriginalDataStream();
string connectionString = properties.ConnectionString;
string msgFileName = message.Context.Read("ReceivedFileName", "http://schemas.microsoft.com/BizTalk/2003/file-properties") as string;
Loader loader = new Loader(strm, msgFileName, connectionString);
loader.Process();
EventLog.WriteEntry("Loader", "Successfully processed: " + msgFileName);
}
</code></pre>
<p>This is the class BizTalk Calls: </p>
<pre><code>public class Loader
{
private string connectionString;
private string fileName;
private Stream stream;
private DataFile dataFile;
public Loader(Stream stream, string fileName, string connectionString)
{
this.connectionString = connectionString;
this.fileName = fileName;
this.stream = stream;
}
public void Process()
{
//***** Create AppDomain HERE *****
// run following code entirely under that domain
dataFile = new DataFile(aredStream, fileName, connectionString);
dataFile.ParseFile();
dataFile.Save();
// get rid of the AppDomain here...
}
}
</code></pre>
<p>FYI: The Loader class is in a seperate DLL from the dataFile class.</p>
<p>Any help would be appreciated. I will continue to working on making the code Thread-Safe, but I feel like this could be the "simple" answer. </p>
<p>If anyone has any other thought, please throw in.</p>
<p>Thank you,<br />
Keith</p>
http://stackoverflow.com/questions/1007881/why-is-my-xml-validation-failing-against-its-schema4Why is my XML validation failing against its schema?Keith Sirmons2009-06-17T15:41:27Z2009-06-17T16:32:35Z
<p>Howdy, </p>
<p>I need to validate a XML file against a schema. The XML file is being generated in code and before I save it I need to validate it to be correct. </p>
<p>I have stripped the problem down to its barest elements but am having an issue. </p>
<p>XML: </p>
<pre><code><?xml version="1.0" encoding="utf-16"?>
<MRIDSupportingData xmlns="urn:GenericLabData">
<MRIDNumber>MRIDDemo</MRIDNumber>
<CrewMemberIdentifier>1234</CrewMemberIdentifier>
<PrescribedTestDate>1/1/2005</PrescribedTestDate>
</MRIDSupportingData>
</code></pre>
<p>Schema: </p>
<pre><code><?xml version="1.0" encoding="utf-16"?>
<xs:schema xmlns="urn:GenericLabData" targetNamespace="urn:GenericLabData"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="MRIDSupportingData">
<xs:complexType>
<xs:sequence>
<xs:element name="MRIDNumber" type="xs:string" />
<xs:element minOccurs="1" name="CrewMemberIdentifier" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</code></pre>
<p>ValidationCode: (This code is from a simple app I wrote to test the validation logic. The XML and XSD files are stored on disk and are being read from there. In the actual app, the XML file would be in memory already as an XmlDocument object and the XSD would be read from an internal webserver.)</p>
<pre><code>private void Validate()
{
XmlReaderSettings settings = new XmlReaderSettings();
settings.ValidationType = ValidationType.Schema;
//settings.ValidationFlags |= XmlSchemaValidationFlags.ProcessInlineSchema;
//settings.ValidationFlags |= XmlSchemaValidationFlags.ProcessSchemaLocation;
//settings.ValidationFlags |= XmlSchemaValidationFlags.ReportValidationWarnings;
settings.ValidationEventHandler += new ValidationEventHandler(OnValidate);
XmlSchemaSet schemas = new XmlSchemaSet();
settings.Schemas = schemas;
try
{
schemas.Add(null, schemaPathTextBox.Text);
using (XmlReader reader = XmlReader.Create(xmlDocumentPathTextBox.Text, settings))
{
validateText.AppendLine("Validating...");
while (reader.Read()) ;
validateText.AppendLine("Finished Validating");
textBox1.Text = validateText.ToString();
}
}
catch (Exception ex)
{
textBox1.Text = ex.ToString();
}
}
StringBuilder validateText = new StringBuilder();
private void OnValidate(object sender, ValidationEventArgs e)
{
switch (e.Severity)
{
case XmlSeverityType.Error:
validateText.AppendLine(string.Format("Error: {0}", e.Message));
break;
case XmlSeverityType.Warning:
validateText.AppendLine(string.Format("Warning {0}", e.Message));
break;
}
}
</code></pre>
<p>When running the above code with the XML and XSD files defined above I get this output: </p>
<blockquote>
<p>Validating...
Error: The element 'MRIDSupportingData' in namespace 'urn:GenericLabData' has invalid child element 'MRIDNumber' in namespace 'urn:GenericLabData'. List of possible elements expected: 'MRIDNumber'.
Finished Validating </p>
</blockquote>
<p>What am I missing? As far as I can tell, MRIDNumber is MRIDNumber so why the error? </p>
<p>The actual XML file is much larger as well as the XSD, but it fails at the very beginning, so I have reduced the problem to almost nothing. </p>
<p>Any assistance on this would be great. </p>
<p>Thank you,<br />
Keith</p>
<p><hr /></p>
<p>BTW, These files do work: </p>
<p>XML: </p>
<pre><code><?xml version='1.0'?>
<bookstore xmlns="urn:bookstore-schema">
<book genre="novel">
<title>The Confidence Man</title>
<author>
<first-name>Herman</first-name>
<last-name>Melville</last-name>
</author>
<price>11.99</price>
</book>
</bookstore>
</code></pre>
<p>Schema: </p>
<pre><code> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="urn:bookstore-schema"
elementFormDefault="qualified"
targetNamespace="urn:bookstore-schema">
<xsd:element name="bookstore">
<xsd:complexType>
<xsd:sequence >
<xsd:element name="book" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence >
<xsd:element name="title" type="xsd:string"/>
<xsd:element name="author">
<xsd:complexType>
<xsd:sequence >
<xsd:element name="first-name" type="xsd:string"/>
<xsd:element name="last-name" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="price" type="xsd:decimal"/>
</xsd:sequence>
<xsd:attribute name="genre" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
</code></pre>
http://stackoverflow.com/questions/982043/how-to-create-a-custom-document-library-in-sharepoint2How to create a custom document library in SharePoint?Keith Sirmons2009-06-11T16:08:22Z2009-06-11T18:58:28Z
<p>Howdy,</p>
<p>I am wanting to create a Custom Document Library for the purpose of targeting a custom action feature to the Custom Document Library's New Menu. </p>
<p>I have found many different guides on the internet, but you know how old those can be. </p>
<p>So what would be the "correct" way to create a custom document library in SharePoint 2007.</p>
<p>Thank you,
Keith</p>
http://stackoverflow.com/questions/982043/how-to-create-a-custom-document-library-in-sharepoint/982165#9821653Answer by Keith Sirmons for How to create a custom document library in SharePoint?Keith Sirmons2009-06-11T16:29:49Z2009-06-11T18:58:28Z<p>I have taken the approach of copying the OOTB DocumentLibrary folder and files structure from the 12hive\TEMPLATE\Feature directory, changing some of the default files to make this a new CustomDocumentLibrary, and wrapping the new files and folders up as a feature to be deployed with stsadm.</p>
<h2>Feature.XML File</h2>
<ol>
<li>Create a new GUID and change the original Id attribute to this new GUID.</li>
<li>Change the Title and Description attributes in the feature.xml file to its new name and change the hidden attribute from true to false.</li>
<li>Update the ElementManifest node to point to the name change in the ListTemplates file.</li>
</ol>
<h2>ListsTemplate Folder</h2>
<ol>
<li>Change the ListTemplate file name from DocumentLibrary.xml to my new CustomDocumentLibrary.xml </li>
<li>Change the Name attribute of the CustomDocumentLibrary.xml match the new name library name (CustomDocumentLibrary).</li>
<li><strong>Change the Type attribute from 101 (document library) to 10055 (you pick and don't duplicate), the new custom list type's ID</strong> </li>
</ol>
<h2>DocumentLibrary Folder</h2>
<ol>
<li>Rename the doclib folder to match the new name of the document library (CustomDocumentLibrary). The new folder name should be the same as the Name attribute in the liststemplate file.</li>
<li>Keep the EditDlg.htm, filedlg.htm, repair.aspx, schema.xml, and upload.aspx files in the folder. </li>
</ol>
http://stackoverflow.com/questions/30543/is-code-written-in-vista-64-compatible-on-32-bit-os6Is code written in Vista 64 compatible on 32 bit os?Keith Sirmons2008-08-27T16:04:29Z2009-05-16T09:39:59Z
<p>Howdy,</p>
<p>We are getting new dev machines and moving up to Vista 64 Ultimate to take advantage of our 8gb ram. Our manager wants us to do all dev in 32bit virtual machines to make sure there will be no problems with our code moving into production. </p>
<p>Is there any way to guarantee the resultant programs will work on 32bit os's?
I don't mind using virtual machines, but I don't like how they force you back into a "Single" monitor type view. I like moving my VS toolbars off to my other monitor.</p>
<p>EDIT: We are using Visual Studio 2005 and 2008, VB.NET and/or C#</p>
<p>EDIT: Using Harpreet's <a href="http://beta.stackoverflow.com/questions/30543/is-code-written-in-vista-64-compatible-on-32-bit-os#30643" rel="nofollow">answer</a>, these are the steps I used to set my Visual Studio IDE to compile x86 / 32bit:</p>
<ol>
<li>Click Build and open Configuration Manager</li>
<li>Select Active Solution Platform drop down list</li>
<li>Select x86 if it is in the list and skip to step 5, if not Select <code><New...</code>></li>
<li>In the New Solution Platform dialog, select x86 and press OK</li>
<li>Verify the selected platform for all of your projects is x86</li>
<li>Click Close.</li>
</ol>
<p>Enjoy. </p>
<p>Thank you,
Keith</p>
http://stackoverflow.com/questions/109186/bypass-invalid-ssl-certificate-errors-when-calling-web-services-in-net/865786#8657863Answer by Keith Sirmons for Bypass invalid SSL certificate errors when calling web services in .NetKeith Sirmons2009-05-14T21:10:31Z2009-05-14T21:10:31Z<p>Like Jason S's answer:</p>
<pre><code>ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
</code></pre>
<p>I put this in my Main and look to my app.config and test if (ConfigurationManager.AppSettings["IgnoreSSLCertificates"] == "True") before calling that line of code. </p>
<p>Keith</p>
http://stackoverflow.com/questions/841825/does-a-clickonce-application-deploy-to-a-fdcc-locked-down-computer1Does a ClickOnce Application deploy to a FDCC locked down computer?Keith Sirmons2009-05-08T21:14:57Z2009-05-08T21:18:43Z
<p>Howdy,</p>
<p>We are looking to publish a ClickOnce application to a large Active Directory network which has to abide by the <a href="http://nvd.nist.gov/fdcc/fdcc%5Ffaq.cfm#1" rel="nofollow">FDCC</a> (Federal Desktop Core Configuration) which is an OMB-mandated security configuration.</p>
<p>Does anyone have experience with this security configuration and ClickOnce applications? The application requires the ability to read a file the logged in user has access to.</p>
<p>We are also concerned with extra security setting being placed in the future that may stop the ClickOnce application from working.</p>
<p>How robust is the ClickOnce method for deployment when you start to lock down the computer?
What settings must be in place for a ClickOnce to function?</p>
<p>Thank you,
Keith </p>
<p>edit:
I am also asking this on <a href="http://serverfault.com/questions/6485/does-a-clickonce-application-deploy-to-a-fdcc-locked-down-computer">serverfault</a> since it kind of rides both sides.</p>
http://stackoverflow.com/questions/747609/are-there-design-patterns-for-writing-sharepoint-workflows-that-will-be-upgradabl2Are there design patterns for writing SharePoint workflows that will be upgradable?Keith Sirmons2009-04-14T13:38:56Z2009-05-07T01:31:37Z
<p>Howdy,</p>
<p>I have asked a question on another thread about upgrading long running workflows and have not received an answer that I wanted to hear.
(<a href="http://stackoverflow.com/questions/357032/how-to-upgrade-a-long-running-sharepoint-workflow-already-in-production">http://stackoverflow.com/questions/357032/how-to-upgrade-a-long-running-sharepoint-workflow-already-in-production</a>)</p>
<p>The answer, which matches up with the other research I have done on this topic, suggests installing the new WF (workflow) in a side by side method and marking the old WF as no new instances.</p>
<p>I have read that if the new WF has the same interface then there may be a possibility just replacing the original WF's dll and the existing long running workflows will continue to function.</p>
<p>Is there a design pattern, or guidelines, that would be useful in creating the original workflow allowing for code changes over the life-cycle of a product, without having to replace the workflow in each SharePoint List instance?</p>
http://stackoverflow.com/questions/827414/why-does-my-custom-contenttype-feature-error-on-activation1Why does my custom ContentType feature error on activation?Keith Sirmons2009-05-05T23:39:14Z2009-05-06T04:20:19Z
<p>Howdy,</p>
<p>I am creating a custom ContentType for SharePoint 2007 as a feature scoped to the site collection. When I attempt to activate the feature, I get an error page with only this clue: "Value does not fall within the expected range" </p>
<p>Here are my XML files
feature.xml:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<!--Created by STSDEV at 5/5/2009 5:11:40 PM-->
<Feature
Id="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
Title="Custom Document Content Type"
Description="Custom Document Content Type"
Version="1.0.0.0"
Scope="Site"
Hidden="false"
ImageUrl="CustomDocumentContentType\Image.gif"
xmlns="http://schemas.microsoft.com/sharepoint/">
<ElementManifests>
<ElementManifest
Location="CustomDocumentContentType.xml" />
</ElementManifests>
</Feature>
</code></pre>
<p>and CustomDocumentContentType.xml: </p>
<pre><code><!--<?xml version="1.0" encoding="utf-8"?>-->
<!--Created by STSDEV at 5/5/2009 5:11:40 PM-->
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<ContentType ID="0X010100YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY"
Name="Custom Document Content Type"
Group ="Custom Document Content Types"
Description="Custom Document Content Type inherits from Document"
Version="0">
<FieldRefs>
</FieldRefs>
</ContentType>
</Elements>
</code></pre>
<p>Thank you,<br />
Keith </p>
http://stackoverflow.com/questions/827414/why-does-my-custom-contenttype-feature-error-on-activation/827428#8274282Answer by Keith Sirmons for Why does my custom ContentType feature error on activation?Keith Sirmons2009-05-05T23:42:57Z2009-05-05T23:42:57Z<p>I figured this one out. </p>
<p>This line, <code><ContentType ID="0X010100YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY"</code></p>
<p>Should be <code><ContentType ID="0x010100YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY"</code> </p>
<p>the "X" in the ID should be lowercase. </p>
<p>Keith</p>
http://stackoverflow.com/questions/812495/is-there-a-using-pattern-that-does-not-rely-on-idisposable3Is there a Using pattern that does not rely on IDisposable ?Keith Sirmons2009-05-01T18:06:21Z2009-05-01T22:30:24Z
<p>I am wanting to create an internal messaging system that can tell me the duration of some code being called. I was thinking for ease of use, to make the SystemMessage class implement IDisposable. </p>
<p>I would set a time stamp during the SystemMessage's constructor and if the Dispose was called, I could figure out the duration. </p>
<p>The problem is that I do not want to have the object GC'ed. I want it to stay around as part of a MessageCollection. </p>
<p><strong>Is there another construct in C# that can give me the usability of the Using Statement without stepping on the intended function of IDisposable.</strong></p>
<pre><code>Using (message = Collection.CreateNewMessage("FileDownlading"))
{
// I wonder how long it is taking me to download this file in production?
// Lets log it in a message and store for later pondering.
WebClass.DownloadAFile("You Know This File Is Great.XML");
}
// we fell out of the using statement, message will figure out how long
// it actually took to run.
// This was clean and easy to implement, but so wrong?
</code></pre>
http://stackoverflow.com/questions/787610/how-do-you-copy-a-file-into-sharepoint-using-a-webservice3How do you copy a file into SharePoint using a WebService?Keith Sirmons2009-04-24T21:16:34Z2009-04-28T10:22:30Z
<p>Howdy,</p>
<p>I am writting a winforms c# 2.0 application that needs to put an XML file into a document library on SharePoint. </p>
<p>I want to use a WebService instead of using the object model (no sharepoint.dll to reference here) </p>
<p>I am currently using the <a href="http://webserver/site/_vti_bin/copy.asmx" rel="nofollow">http://webserver/site/_vti_bin/copy.asmx</a> webservice.</p>
<p>Here is some code: </p>
<pre><code>byte[] xmlByteArray;
using (MemoryStream memoryStream = new MemoryStream())
{
xmlDocument.Save(memoryStream);
xmlBytes = memoryStream.ToArray();
}
string[] destinationUrlArray = new string[] {"http://webserver/site/Doclib/UploadedDocument.xml"};
FieldInformation fieldInfo = new FieldInformation();
FieldInformation[] fields = { fieldInfo };
CopyResult[] resultsArray;
using (Copy copyService = new Copy())
{
copyService.Credentials = CredentialCache.DefaultCredentials;
copyService.Url = "http://webserver/site/_vti_bin/copy.asmx";
copyService.Timeout = 600000;
uint documentId = copyService.CopyIntoItems("", destinationUrlArray, fields, xmlByteArray, out resultsArray);
}
</code></pre>
<p>When this code runs, I get a single result in the resultsArray out parameter: </p>
<pre><code>DestinationURL: "http://webserver/site/Doclib/UploadedDocument.xml"
ErrorCode: UnKnown
ErrorMessage: "Object reference not set to an instance of an object."
</code></pre>
<p>From my searching, I have found a couple of possible helps. </p>
<ul>
<li><p><a href="http://social.technet.microsoft.com/Forums/pt-BR/sharepointdevelopment/thread/5a1ce3c9-ebc7-4ec9-b0fb-b891d076591b" rel="nofollow">Microsoft TechNet</a> -- "The copy.asmx copyintoitems will only work if the source and destination urls are in the same SPWebApplication (Site Collection)."</p></li>
<li><p><a href="http://social.microsoft.com/Forums/zh-CN/sharepointdevelopment/thread/273528be-b207-48d9-b697-74777416638e" rel="nofollow">Microsoft Social</a> -- "Object reference not set to an instance of an object
error occurs because of SharePoint not able to identified that particular property."</p></li>
</ul>
<p>This leads me to believe my source url should be set to something, but what? This is originating from a client workstation and does not have a source URL.</p>
<p>Any help would be appricated. </p>
<p>hank you,<br />
Keith </p>
http://stackoverflow.com/questions/787610/how-do-you-copy-a-file-into-sharepoint-using-a-webservice/794801#7948010Answer by Keith Sirmons for How do you copy a file into SharePoint using a WebService?Keith Sirmons2009-04-27T18:50:55Z2009-04-27T18:50:55Z<p>Here is what is currently working:</p>
<pre><code>WebRequest request = WebRequest.Create(“http://webserver/site/Doclib/UploadedDocument.xml”);
request.Credentials = CredentialCache.DefaultCredentials;
request.Method = "PUT";
byte[] buffer = new byte[1024];
using (Stream stream = request.GetRequestStream())
{
using (MemoryStream memoryStream = new MemoryStream())
{
dataFile.MMRXmlData.Save(memoryStream);
memoryStream.Seek(0, SeekOrigin.Begin);
for (int i = memoryStream.Read(buffer, 0, buffer.Length); i > 0;
i = memoryStream.Read(buffer, 0, buffer.Length))
{
stream.Write(buffer, 0, i);
}
}
}
WebResponse response = request.GetResponse();
response.Close();
</code></pre>
<p>So... Does anyone have an opinion as to if this "PUT" method is better in the SharePoint environment than using a built-in webservice? </p>
<p>Right now I would have to say the "PUT" method is better since it works and I could not get the WebService to work.</p>
<p>Keith</p>
http://stackoverflow.com/questions/596744/is-there-a-firebug-like-utility-for-inspecting-a-winform-application2Is there a FireBug like utility for inspecting a Winform Application?Keith Sirmons2009-02-27T21:25:28Z2009-02-27T22:03:06Z
<p>Howdy, </p>
<p>I am designing a program that dynamically creates its own GUI at run time. </p>
<p>I am looking for a firebug like utility that allows me to move my mouse around the form to see different controls highlighted and see what their size, padding, margins, etc are set to. </p>
<p>Thank you,<br />
Keith</p>
http://stackoverflow.com/questions/557657/shoud-i-make-an-iunitycontainer-object-use-a-singleton-pattern1Shoud I make an IUnityContainer object use a Singleton pattern?Keith Sirmons2009-02-17T16:36:17Z2009-02-25T07:44:50Z
<p>Howdy, </p>
<p>I am new to using Unity and IoC/DI concepts. I started with the concept by rolling my own via James Kovacs' show on <a href="http://www.dnrtv.com/default.aspx?showNum=126" rel="nofollow">dnrTV </a> in a test. </p>
<p>His example had the Container run as a singleton accessed through a static method in an IoC class so you could register types at a startup and resolve the type throughout your application. </p>
<p>I know this was not full featured and was to mainly show the concepts of IoC. </p>
<p>I am now attempting to use Unity in a project. </p>
<p>In my Main() I create a new container, but once my WinForms opens, the container falls out of scope and is disposed. Later on in the program, when I try to resolve a type I no longer have the original container and its registered types. </p>
<p>Is there a concept or implementation construct I am missing?</p>
<p>My current thought is to create something like this: </p>
<pre><code>public static class Container
{
private static readonly object syncRoot = new object();
private static volatile IUnityContainer instance;
public static IUnityContainer Instance
{
get
{
if (instance == null)
{
lock (syncRoot)
{
if (instance == null)
{
instance = new UnityContainer();
}
}
}
return instance;
}
}
}
</code></pre>
<p>I'm pretty sure this will work, it just doesn't seem right. </p>
<p>Thank you,<br />
Keith</p>
http://stackoverflow.com/questions/397956/how-do-you-change-the-listtemplateid-of-an-existing-sharepoint-list0How do you change the ListTemplateID of an existing SharePoint list?Keith Sirmons2008-12-29T15:47:33Z2009-01-22T12:49:52Z
<p>Howdy,</p>
<p>I have several lists in a sitecollection that are currently using ListTemplateID 101 (DocumentLibary). I want to attach an eventhandler to these lists, but if I attach the event to list 101 all of the document libaries in the sitecollection will get this eventhandler. </p>
<p>I do not want to programatically attach the eventhandler to these lists. </p>
<p>I would like to know, how do you change the ListTemplateID for an existing list? </p>
<p>Thank you,<br />
Keith</p>
http://stackoverflow.com/questions/20797/how-to-split-a-byte-array/1662438#1662438Comment by Keith Sirmons on How to split a byte arrayKeith Sirmons2009-11-02T17:23:10Z2009-11-02T17:23:10ZInteresting. Too bad I didn't see this one when I was working on that project. Thanks for the info anyway.
http://stackoverflow.com/questions/479497/how-can-i-learn-csla-net-fast/1424575#1424575Comment by Keith Sirmons on How can I learn CSLA.NET Fast?Keith Sirmons2009-10-12T16:59:52Z2009-10-12T16:59:52ZA little dated, but take a look at this: <a href="http://www.lhotka.net/weblog/ADONETEntityFrameworkLINQAndCSLANET.aspx" rel="nofollow">lhotka.net/weblog/…</a>
"ADO.NET EF ... works with entity objects - objects designed primarily as data containers."
"CSLA .NET is all about creating business objects - objects designed primarily around the responsibilities and behaviors defined by a business use case. It is all about making it easy to build use case-derived objects that have business logic, validaiton rules and authorization rules."http://stackoverflow.com/questions/122523/why-is-a-sql-float-different-from-a-c-float/1421260#1421260Comment by Keith Sirmons on Why is a SQL float different from a C# floatKeith Sirmons2009-09-14T14:17:20Z2009-09-14T14:17:20ZI suggest you start a new question and you will get better answers to your situation.http://stackoverflow.com/questions/10644/any-decent-c-profilers-out-there/10649#10649Comment by Keith Sirmons on Any decent C# profilers out there?Keith Sirmons2009-08-11T14:51:13Z2009-08-11T14:51:13ZDo you have a link describing this loophole and how to capitalize on it?http://stackoverflow.com/questions/181596/how-to-convert-a-column-number-eg-127-into-an-excel-column-eg-aa/182924#182924Comment by Keith Sirmons on How to convert a column number (eg. 127) into an excel column (eg. AA)Keith Sirmons2009-08-06T18:33:37Z2009-08-06T18:33:37ZThis code works well. It assumes Column A is columnNumber 1. I had to make a quick change to account for my system using Column A as columnNumber 0. I changed the line int dividend to int dividend = columnNumber + 1; Keith
http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c/708922#708922Comment by Keith Sirmons on Switch Case on type of object (C#)Keith Sirmons2009-07-15T21:31:11Z2009-07-15T21:31:11ZIf you change the Type's Name during refactoring, you could introduce a bug that would not be caught until runtime.http://stackoverflow.com/questions/1088394/why-is-the-column-name-from-a-csv-file-different-than-its-datatable/1088409#1088409Comment by Keith Sirmons on Why is the column name from a CSV file different than its DataTable?Keith Sirmons2009-07-06T21:28:10Z2009-07-06T21:28:10ZHere is an example: object data = datatable.Rows[rowIndex][sourceColumnName.Replace(".", "#")];http://stackoverflow.com/questions/1088394/why-is-the-column-name-from-a-csv-file-different-than-its-datatable/1088409#1088409Comment by Keith Sirmons on Why is the column name from a CSV file different than its DataTable?Keith Sirmons2009-07-06T18:37:24Z2009-07-06T18:37:24ZSo, would you advise sourceColumnName.Replace(".", "#"); instead of trying to preserve the period?http://stackoverflow.com/questions/1007881/why-is-my-xml-validation-failing-against-its-schema/1007924#1007924Comment by Keith Sirmons on Why is my XML validation failing against its schema?Keith Sirmons2009-06-17T18:00:20Z2009-06-17T18:00:20ZThe issue wasn't the PrescribedTestDate.http://stackoverflow.com/questions/1007881/why-is-my-xml-validation-failing-against-its-schema/1007937#1007937Comment by Keith Sirmons on Why is my XML validation failing against its schema?Keith Sirmons2009-06-17T16:00:54Z2009-06-17T16:00:54ZTried it and it works.... So why does this fix the problem?
http://stackoverflow.com/questions/1007881/why-is-my-xml-validation-failing-against-its-schema/1007924#1007924Comment by Keith Sirmons on Why is my XML validation failing against its schema?Keith Sirmons2009-06-17T15:49:42Z2009-06-17T15:49:42ZIt doesn't matter if PrescribedTestDate is in the XML file or not. The error is the same, stopping at the MRIDNumber element.http://stackoverflow.com/questions/30543/is-code-written-in-vista-64-compatible-on-32-bit-os/872073#872073Comment by Keith Sirmons on Is code written in Vista 64 compatible on 32 bit os?Keith Sirmons2009-05-16T16:30:54Z2009-05-16T16:30:54ZTurn this into it's own question.http://stackoverflow.com/questions/854598/sharepoint-list-webservice-error-on-checkoutfile-method-with-ssl/869053#869053Comment by Keith Sirmons on Sharepoint List webservice error on CheckoutFile method with SSLKeith Sirmons2009-05-15T16:00:03Z2009-05-15T16:00:03ZI think you may be onto something. I stumbled onto this a little earlier, by changing the url I was using from the IP address to the hostname of the server and it started to work. I will look into the Alternate Access Mappings now. Thank you.http://stackoverflow.com/questions/854598/sharepoint-list-webservice-error-on-checkoutfile-method-with-ssl/857792#857792Comment by Keith Sirmons on Sharepoint List webservice error on CheckoutFile method with SSLKeith Sirmons2009-05-13T14:20:50Z2009-05-13T14:20:50ZAn example of a documentPath is in the question's code block. It is the first commented line.http://stackoverflow.com/questions/854598/sharepoint-list-webservice-error-on-checkoutfile-method-with-ssl/854869#854869Comment by Keith Sirmons on Sharepoint List webservice error on CheckoutFile method with SSLKeith Sirmons2009-05-12T21:19:46Z2009-05-12T21:19:46ZOk.. Tried it with the Date Modified that is listed for that item in the document library, no luck. I tried it with null in place of string.empty, no luck. Same exception each time.