User &#216;yvind Skaar - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T11:06:33Z http://stackoverflow.com/feeds/user/49194 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1619448/how-to-avoid-processcontentslax-in-wcf-wsdl-from-classes-implementing-ixmlseri 0 How to avoid processContents="lax" in WCF WSDL from classes implementing IXmlSerializable? Øyvind Skaar 2009-10-24T23:06:40Z 2009-10-25T13:43:00Z <p>I have a wcf service written in a contract-first fashion. As some of the elements in the schema uses attributes, I had to create a custom serialization for this (using <code>IXmlSerializable</code>). Below is a snippet of the schema, and the classes, as well as the schema from the wsdl output.</p> <p>My problem is that even though I render the xsd for my IXmlSerializable classes, the schema is not included in the wsdl. They are just referenced with <code>processContents="lax"</code>. This seems to be a problem for consumers of my services, as they can not use their wizards to create clients.</p> <p>Has anyone encountered this problem? Is there anyway to control the wsdl output to avoid this. I experience the same behaviour using both message contracts and data contracts.</p> <p><strong>The schema for collection and item:</strong></p> <pre><code>&lt;xs:element name="TelephoneList"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:element ref="Telephone" maxOccurs="unbounded"/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;xs:element name="Telephone"&gt; &lt;xs:complexType&gt; &lt;xs:simpleContent&gt; &lt;xs:extension base="xs:string"&gt; &lt;xs:attribute name="Type"&gt; &lt;xs:simpleType&gt; &lt;xs:restriction base="xs:NMTOKEN"&gt; &lt;xs:enumeration value="Preferred"/&gt; &lt;xs:enumeration value="Office"/&gt; &lt;xs:enumeration value="Mobile"/&gt; &lt;xs:enumeration value="Home"/&gt; &lt;xs:enumeration value="MobilePhoneFromExternalPartner"/&gt; &lt;xs:enumeration value="HomePhoneFromExternalPartner"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;/xs:attribute&gt; &lt;/xs:extension&gt; &lt;/xs:simpleContent&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; </code></pre> <p><strong>The collection class:</strong></p> <pre><code>[CollectionDataContract(ItemName = "Telephone", Name = "TelephoneList", Namespace = Schema.WorkOrderNamespace)] public class TelephoneSet : SetBase&lt;Telephone&gt; { } </code></pre> <p><strong>The item class:</strong></p> <pre><code> [XmlSchemaProvider("GetSchemaFile")] public class Telephone : CustomSerializedEntity //The base class implements IXmlSerializable { public virtual TelephoneType? Type { get; set; } public virtual string Number { get; set; } /// &lt;remarks&gt;This method is referenced in the &lt;seealso cref="XmlSchemaProviderAttribute"/&gt; decoration.&lt;/remarks&gt; public static XmlSchemaComplexType GetSchemaFile(XmlSchemaSet xs) { return CreateSchema(xs, "Telephone"); } public override void ReadXml(XmlReader reader) { Type = ReadEnumAttribute&lt;TelephoneType?&gt;(reader, "Type"); reader.MoveToElement(); Number = reader.Value; } public override void WriteXml(XmlWriter writer) { WriteAttribute(writer, "Type", Type); if (!string.IsNullOrEmpty(Number)) { writer.WriteValue(Number); } } } </code></pre> <p><strong>The xsd rendered by the service:</strong></p> <pre><code>&lt;xs:complexType name="TelephoneList"&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs="0" maxOccurs="unbounded" name="Telephone" nillable="true"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:any minOccurs="0" processContents="lax"/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:element name="TelephoneList" nillable="true" type="tns:TelephoneList"/&gt; </code></pre> http://stackoverflow.com/questions/1298769/serializationexception-from-system-web-ui-page-saveallstate-on-a-member-marked 1 SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttribute Øyvind Skaar 2009-08-19T09:30:13Z 2009-08-31T01:47:40Z <p>I get a serialization error on a page containing a custom control. the control has a member (<code>dataContext</code>) of a type (<code>EntityContext</code>) that is non-serializable, and marked as such.</p> <p>this is the error:</p> <blockquote> <p>Type 'Entities.EntityContext' in Assembly '...' is not marked as serializable.</p> <p>[SerializationException: Type '...Entities.EntityContext' in Assembly '...' is not marked as serializable.]<br /> System.Runtime.Serialization.FormatterServices.InternalGetSerializableMembers(RuntimeType type) +7733643<br /> System.Runtime.Serialization.FormatterServices.GetSerializableMembers(Type type, StreamingContext context) +258<br /> System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitMemberInfo() +111 System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitSerialize(Object obj, ISurrogateSelector surrogateSelector, StreamingContext context, SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter, ObjectWriter objectWriter) +161 System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.Serialize(Object obj, ISurrogateSelector surrogateSelector, StreamingContext context, SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter, ObjectWriter objectWriter) +51 System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Serialize(Object graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck) +410<br /> System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream serializationStream, Object graph, Header[] headers, Boolean fCheck) +134 System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream serializationStream, Object graph) +13 System.Web.UI.ObjectStateFormatter.SerializeValue(SerializerBinaryWriter writer, Object value) +4966</p> <p>[ArgumentException: Error serializing value '...Entities.EntityContext' of type '...Entities.EntityContext.'] System.Web.UI.ObjectStateFormatter.SerializeValue(SerializerBinaryWriter writer, Object value) +5425<br /> System.Web.UI.ObjectStateFormatter.Serialize(Stream outputStream, Object stateGraph) +163 System.Web.UI.ObjectStateFormatter.Serialize(Object stateGraph) +99<br /> System.Web.UI.ObjectStateFormatter.System.Web.UI.IStateFormatter.Serialize(Object state) +37<br /> System.Web.UI.Util.SerializeWithAssert(IStateFormatter formatter, Object stateGraph) +55<br /> System.Web.UI.HiddenFieldPageStatePersister.Save() +143 System.Web.UI.Page.SavePageStateToPersistenceMedium(Object state) +190<br /> System.Web.UI.Page.SaveAllState() +1466 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5477</p> </blockquote> <p>This is the control:</p> <pre><code> public class EntityDataSource : ObjectDataSource { [NonSerialized] private EntityContext dataContext; /// &lt;summary&gt; /// Gets the data context. (This is used by the page at runtime.) /// &lt;/summary&gt; /// &lt;value&gt;The data context.&lt;/value&gt; // ReSharper disable MemberCanBePrivate.Global public EntityContext DataContext // ReSharper restore MemberCanBePrivate.Global { get { return dataContext; } } protected override void OnLoad(EventArgs e) { base.OnLoad(e); dataContext = new EntityContext(SessionProvider.GetContext()); } /// &lt;summary&gt; /// Viewstate is not implemented. This value allways return &lt;c&gt;false&lt;/c&gt;. /// &lt;/summary&gt; /// &lt;exception cref="NotSupportedException"&gt;Exception is thrown when setting this value.&lt;/exception&gt; [Browsable(false)] public override bool EnableViewState { get { return false; } set { //Throws exception if value is true. if (value) { throw new NotSupportedException("Viewstate is not enabled on this control."); } } } public override void Dispose() { if (DataContext != null) { DataContext.Dispose(); } base.Dispose(); } } </code></pre> <p>It almost seems like the page doesn't honor the <code>NonSerializedAttribute</code>. I have omitted the company and product names from the namespaces.</p> http://stackoverflow.com/questions/1019150/extending-sharepoint-breadcrumbs-across-multiple-site-collections/1158355#1158355 2 Answer by Øyvind Skaar for Extending SharePoint Breadcrumbs across multiple site collections Øyvind Skaar 2009-07-21T10:20:01Z 2009-07-21T10:20:01Z <p>Since you are implementing a custom masterpage (or customizing the default one), why not replace the breadcrumb control with your own? Or make a custom sitemap provider if you need to combine your sitemap with Sharepoint's generated map.</p> http://stackoverflow.com/questions/913832/how-to-duplicate-a-virtual-pc-with-sharepoint-k2-and-domain-controller/933682#933682 0 Answer by Øyvind Skaar for How to duplicate a virtual PC with SharePoint, K2 and domain controller Øyvind Skaar 2009-06-01T05:45:21Z 2009-06-01T05:45:21Z <p>I've done this, and it wasn't too bad.</p> <p>Rename the SharePoint-server first, then rename the Windows server.</p> <p><a href="http://www.sharepointblogs.com/nrdev/archive/2008/07/15/tip-how-to-rename-a-sharepoint-server-machine-name.aspx" rel="nofollow">This posting</a> has a nice checklist.</p> <p>Don't forget to remove the NIC node from the settings file of the virtual machine, otherwise you get name collision due to duplicate MAC addresses. <a href="http://www.aspdeveloper.net/Virtual%5FPC/rn-739-36343%5FHow%5Fto%5Fgenerate%5Fnew%5FMAC%5Faddress.aspx" rel="nofollow">Here's a how-to</a>.</p> http://stackoverflow.com/questions/888204/which-piece-of-code-is-more-performant/888397#888397 3 Answer by Øyvind Skaar for Which piece of code is more performant? Øyvind Skaar 2009-05-20T14:49:29Z 2009-05-20T14:49:29Z <p>Test it and time it. The first is more performant, but it is probably not significant.</p> <pre><code>using System; using System.Diagnostics; using System.Security.Cryptography; using System.Text; namespace ConsoleApplication11 { class Program { static void Main(string[] args) { Stopwatch timer=new Stopwatch(); int iterations = 100000; timer.Start(); for (int i = 0; i &lt; iterations; i++) { string s = "test" + i; string t=s.ToMd5Hash0(); } timer.Stop(); Console.WriteLine(timer.ElapsedTicks); timer.Reset(); timer.Start(); for (int i = 0; i &lt; iterations; i++) { string s = "test" + i; string t = s.ToMd5Hash1(); } timer.Stop(); Console.WriteLine(timer.ElapsedTicks); Console.ReadKey(); } } public static class Md5Factory { private static MD5CryptoServiceProvider md5CryptoServiceProvider; public static string ToMd5Hash0(this string value) { if (md5CryptoServiceProvider == null) { md5CryptoServiceProvider = new MD5CryptoServiceProvider(); } byte[] newData = Encoding.Default.GetBytes(value); byte[] encrypted = md5CryptoServiceProvider.ComputeHash(newData); return BitConverter.ToString(encrypted).Replace("-", "").ToLower(); } public static string ToMd5Hash1(this string value) { using (var provider = new MD5CryptoServiceProvider()) { byte[] newData = Encoding.Default.GetBytes(value); byte[] encrypted = provider.ComputeHash(newData); return BitConverter.ToString(encrypted).Replace("-", "").ToLower(); } } } } </code></pre> http://stackoverflow.com/questions/519662/how-to-upload-a-publishing-page-using-features/817239#817239 0 Answer by Øyvind Skaar for How to upload a publishing page using features? Øyvind Skaar 2009-05-03T14:45:10Z 2009-05-03T14:45:10Z <p>I had a similar problem. It turned out i had to publish the uploaded file to make it visible.</p> http://stackoverflow.com/questions/798121/date-vs-datetime/798471#798471 0 Answer by Øyvind Skaar for Date vs DateTime Øyvind Skaar 2009-04-28T15:10:20Z 2009-04-28T15:10:20Z <p>Create a wrapper class. Something like this:</p> <pre><code>public class Date:IEquatable&lt;Date&gt;,IEquatable&lt;DateTime&gt; { public Date(DateTime date) { value = date.Date; } public bool Equals(Date other) { return other != null &amp;&amp; value.Equals(other.value); } public bool Equals(DateTime other) { return value.Equals(other); } public override string ToString() { return value.ToString(); } public static implicit operator DateTime(Date date) { return date.value; } public static explicit operator Date(DateTime dateTime) { return new Date(dateTime); } private DateTime value; } </code></pre> <p>And expose whatever of <code>value</code> you want.</p> http://stackoverflow.com/questions/556116/properly-implement-a-webpart-with-postback/795268#795268 0 Answer by Øyvind Skaar for Properly implement a webpart with postback? Øyvind Skaar 2009-04-27T21:01:19Z 2009-04-27T21:01:19Z <p>Here is a suggestion. It works for me anyway.</p> <pre><code>using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; namespace Skaar.UI { public class PostBackWebPart:WebPart { private Literal literal; private TextBox textBox; protected override void OnInit(System.EventArgs e) { base.OnInit(e); literal=new Literal(); literal.Mode = LiteralMode.PassThrough; Controls.Add(literal); textBox=new TextBox(); textBox.AutoPostBack = true; Controls.Add(textBox); textBox.TextChanged += textBox_TextChanged; } void textBox_TextChanged(object sender, System.EventArgs e) { literal.Text = string.Format("&lt;h1&gt;{0}&lt;/h1&gt;", textBox.Text); } } } </code></pre> http://stackoverflow.com/questions/770637/is-there-an-equivalent-to-the-spweb-properties-in-the-sharepoint-web-services/772761#772761 2 Answer by Øyvind Skaar for Is there an equivalent to the SPWeb.Properties in the SharePoint web services? Øyvind Skaar 2009-04-21T14:08:01Z 2009-04-21T14:08:01Z <p>I doubt there is a builtin service doing that. If you have access to the server, it should be trivial to create a service exposing this, though.</p> http://stackoverflow.com/questions/772509/finding-how-a-foreach-collection-gets-modified/772571#772571 0 Answer by Øyvind Skaar for Finding how a foreach collection gets modified Øyvind Skaar 2009-04-21T13:24:08Z 2009-04-21T13:24:08Z <p>You might want to try out the <a href="http://msdn.microsoft.com/en-us/library/ms668604.aspx" rel="nofollow">ObservableCollection</a> class for this. There are some examples for making this thread safe as well.</p> http://stackoverflow.com/questions/702734/how-can-i-schedule-a-report-in-sharepoint-to-run-on-the-last-day-of-the-month/743540#743540 1 Answer by Øyvind Skaar for How can I schedule a report in SharePoint to run on the last day of the month? Øyvind Skaar 2009-04-13T10:26:43Z 2009-04-13T10:32:30Z <p>SPMonthlySchedule can only run on a specific date. Afaik you cannot configure it to run on the last day of the month.</p> <p>I would create a timer job running daily, and doing the report if today is the last day of the month. Create a <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.administration.spjobdefinition.aspx" rel="nofollow">SPJobDefinition</a> with a <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spdailyschedule.aspx" rel="nofollow">SPDailySchedule</a> to achieve this.</p> <p><a href="http://saftsack.fs.uni-bayreuth.de/~dun3/archives/visual-studio-2005-project-template-for-sharepoint-2007-timer-jobs/142.html" rel="nofollow">Here</a> is a howto.</p> <pre><code>if(DateTime.Now.Month != DateTime.Now.AddDays(1).Month) { //Do report } </code></pre> http://stackoverflow.com/questions/599709/navigation-of-pages-only-when-submit-button-is-clicked/599722#599722 0 Answer by Øyvind Skaar for navigation of pages only when submit button is clicked Øyvind Skaar 2009-03-01T12:03:28Z 2009-03-01T12:03:28Z <p>Have a look at this: <a href="http://msdn.microsoft.com/en-us/library/ms178140.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/x3x8t37x.aspx</a> You may want to try implementing cross-page posting.</p> <pre><code>&lt;asp:Button ID="Button1" PostBackUrl="~/TargetPage.aspx" runat="server" Text="Submit" /&gt; </code></pre> <p>(From <a href="http://msdn.microsoft.com/en-us/library/ms178140.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms178140.aspx</a>)</p> http://stackoverflow.com/questions/569154/how-to-deep-copy-between-objects-of-different-types-in-c-net/569167#569167 0 Answer by Øyvind Skaar for How to deep copy between objects of different types in C#.NET Øyvind Skaar 2009-02-20T11:12:27Z 2009-02-20T11:12:27Z <p>If speed is an issue, you should implement clone methods in the methods themselves.</p> http://stackoverflow.com/questions/549198/web-part-deployed-to-gac-not-working/551433#551433 0 Answer by Øyvind Skaar for Web Part Deployed To GAC Not Working... Øyvind Skaar 2009-02-15T19:18:16Z 2009-02-15T19:18:16Z <p>It is common problem in WSS that the template information is duplicated and embedded in the data in the database. One example of this is the definitions in the onet.xml file which is duplicated into each web instance. Another is when webparts are added to the page by the user. To change the strong name usually means you have to recreate every site where the web part has been used.</p> http://stackoverflow.com/questions/527947/invoke-required/527975#527975 0 Answer by Øyvind Skaar for Invoke Required. Øyvind Skaar 2009-02-09T12:37:14Z 2009-02-09T12:37:14Z <p>It would seem that you in the first example are within the scope of a control, while in the second you are not. The main form is a control just like any other. If someControl is added to the Control collection of the main control, you may use either.</p> http://stackoverflow.com/questions/527561/move-one-arraylist-data-to-another-arraylist-in-c/527567#527567 2 Answer by Øyvind Skaar for Move one arraylist data to another arraylist in C# Øyvind Skaar 2009-02-09T09:43:18Z 2009-02-09T09:43:18Z <pre><code>ArrayList l1=new ArrayList(); l1.Add("1"); l1.Add("2"); ArrayList l2=new ArrayList(l1); </code></pre> http://stackoverflow.com/questions/527493/what-significance-does-newweb-and-blank-configurations-have-in-wss-site-defin 3 What significance does "NewWeb" and "Blank" configurations have in WSS site definitions Øyvind Skaar 2009-02-09T09:12:27Z 2009-02-09T09:32:41Z <p>I customize a WSS site definitions by tweaking one of the built in definitions. When examining the sts definition, I see it has a configuration "NewWeb" with ID -1, and "Blank" with ID 1. In the sps definition these are defined like this:</p> <pre><code>&lt;Configuration ID="-1" Name="NewWeb"/&gt; &lt;Configuration ID="1" Name="Blank"&gt; &lt;ExecuteUrl Url="_layouts/[%=Web.Language%]/settings.aspx" /&gt; &lt;/Configuration&gt; </code></pre> <p>Does anyone know what significance these have? Should I include them in my custom definition, or may I safely omit them? </p> http://stackoverflow.com/questions/527209/global-customized-view-for-document-libraries-in-sharepoint/527226#527226 2 Answer by Øyvind Skaar for Global Customized View for Document Libraries in Sharepoint Øyvind Skaar 2009-02-09T06:09:12Z 2009-02-09T09:00:19Z <p>One way to do this is to create a feature with an event receiver. When a user creates a list, you can check if the list is of the proper type (101), and then add new views to it. The feature could also add this view to existing document libraries on activation. Shouldn't be too much of an effort. The view is not truly global. As list definitions are duplicated for each instance, there are no such thing as a global view (afaik) in WSS. We could all hope that views are a part of content type in the next version.</p> http://stackoverflow.com/questions/521146/c-split-string-but-keep-split-chars/521284#521284 0 Answer by Øyvind Skaar for c# split string but keep split chars Øyvind Skaar 2009-02-06T17:35:27Z 2009-02-06T17:35:27Z <pre><code>using System.Collections.Generic; using System.Text.RegularExpressions; namespace ConsoleApplication9 { class Program { static void Main(string[] args) { string input = @"This;is:a.test"; char sep0 = ';', sep1 = ':', sep2 = '.'; string pattern = string.Format("[{0}{1}{2}]|[^{0}{1}{2}]+", sep0, sep1, sep2); Regex regex = new Regex(pattern); MatchCollection matches = regex.Matches(input); List&lt;string&gt; parts=new List&lt;string&gt;(); foreach (Match match in matches) { parts.Add(match.ToString()); } } } } </code></pre> http://stackoverflow.com/questions/489317/how-to-pass-an-arbitrary-number-of-parameters-in-c/489353#489353 0 Answer by Øyvind Skaar for How to pass an arbitrary number of parameters in C# Øyvind Skaar 2009-01-28T21:03:32Z 2009-01-28T21:03:32Z <p>How are these items stored? They should be stored in a item collection object. It should have the methods necessary to inspect it's innards.</p> <p>Or use an params array of objects implementing your IItem interface.</p> http://stackoverflow.com/questions/442022/how-to-build-a-threaded-comment-system-in-c-help/442809#442809 0 Answer by Øyvind Skaar for How to build a threaded Comment System in C#? Help... Øyvind Skaar 2009-01-14T12:40:50Z 2009-01-14T12:40:50Z <p>This might work:</p> <pre><code>class Program { static void Main(string[] args) { CommentCollection collection=new CommentCollection(); Comment c1=new Comment("Blah",1,0,collection); Comment c2=new Comment("Blah blah",2,1,collection); Comment c3=new Comment("Blah blah", 3, 2, collection); Console.WriteLine(collection); } } [DebuggerDisplay("{id}-{parentId}: {text}")] class Comment:IEnumerable&lt;Comment&gt; { private readonly CommentCollection collection; private readonly int parentId; public Comment(string text, int id, int parentId, CommentCollection collection) { Id = id; this.parentId = parentId; collection.Add(this); this.collection = collection; this.text = text; } public Comment Parent { get { if (parent == null) { parent = parentId == 0 ? null : collection[parentId]; } return parent; } } private Comment parent; private readonly string text; public int Id{ get; private set;} public IEnumerator&lt;Comment&gt; GetEnumerator() { return collection.Where(c =&gt; c.Parent == this).GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } public int Level { get { return Parent == null ? 0 : Parent.Level + 1; } } public override string ToString() { return Parent == null ? text : Parent + " &gt; " + text; } public string ToString(bool tree) { if (!tree) { return ToString(); } else { StringBuilder output = new StringBuilder(); output.AppendLine(new string(' ', Level) + ToString(false)); foreach (Comment comment in this) { output.AppendLine(comment.ToString(true)); } return output.ToString(); } } } class CommentCollection:IEnumerable&lt;Comment&gt; { public void Add(Comment comment) { comments.Add(comment.Id,comment); } public Comment this[int id] { get { return comments[id]; } } private readonly Dictionary&lt;int,Comment&gt; comments=new Dictionary&lt;int, Comment&gt;(); public IEnumerator&lt;Comment&gt; GetEnumerator() { return comments.Select(p =&gt; p.Value).GetEnumerator(); } public IEnumerable&lt;Comment&gt; GetTopLevel() { return comments.Where(c =&gt; c.Value.Parent == null). Select(c =&gt; c.Value); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } public override string ToString() { StringBuilder output=new StringBuilder(); foreach (Comment comment in GetTopLevel()) { output.AppendLine(comment.ToString(true)); } return output.ToString(); } } </code></pre> http://stackoverflow.com/questions/440693/how-would-i-practice-net-at-home-gratis/440920#440920 4 Answer by Øyvind Skaar for How would I Practice .NET at Home (gratis)? Øyvind Skaar 2009-01-13T21:44:42Z 2009-01-13T21:44:42Z <p>Someones gotta suggest <a href="http://www.mono-project.com/Main_Page" rel="nofollow">MONO</a>.</p> http://stackoverflow.com/questions/433926/generic-c-copy-constructor/433939#433939 7 Answer by Øyvind Skaar for Generic C# Copy Constructor Øyvind Skaar 2009-01-11T23:00:38Z 2009-01-11T23:06:58Z <p>Avoid reflection if you can. Each class should have the responsibility of copying its own properties, and send it further to the base method.</p> http://stackoverflow.com/questions/433918/extension-method-not-updating-object-passed-in/433932#433932 2 Answer by Øyvind Skaar for Extension method not updating object passed in Øyvind Skaar 2009-01-11T22:58:00Z 2009-01-11T23:06:49Z <p>I think it is because <code>list</code> is not passed by ref. Thus setting the <code>list</code> variable to another object doesn't alter where the original variable was pointing.</p> <p>You might be able to do this (haven't tested it properly):</p> <pre><code>public static void Sort&lt;TSource, TKey&gt;(this List&lt;TSource&gt; list, Func&lt;TSource, TKey&gt; keySelector) { var tempList = list.OrderBy(keySelector).ToList&lt;TSource&gt;(); list.Clear(); list.AddRange(tempList); } </code></pre> http://stackoverflow.com/questions/433833/dynamic-creation-of-control/433841#433841 1 Answer by Øyvind Skaar for Dynamic creation of control Øyvind Skaar 2009-01-11T22:17:40Z 2009-01-11T22:17:40Z <p>It looks like you get your 200 instances, all placed at the same point.</p> http://stackoverflow.com/questions/433743/dynamically-create-text-inputs-asp-net-c/433773#433773 1 Answer by Øyvind Skaar for Dynamically create text inputs (ASP.net/C#) Øyvind Skaar 2009-01-11T21:39:29Z 2009-01-11T21:51:51Z <p>When creating web controls dynamically, I find it best to have the controls themselves report in the answers. You can achieve it like this:</p> <p>Create something in your Page class to store the values:</p> <pre><code>private readonly Dictionary&lt;TextBox, string&gt; values=new Dictionary&lt;TextBox, string&gt;(); </code></pre> <p>Make a method to act as a callback for the textboxes when their value changes:</p> <pre><code>void tmp_TextChanged(object sender, EventArgs e) { TextBox txt = sender as TextBox; if(txt!=null) { values.Add(txt,txt.Text); } } </code></pre> <p>And then add this method to each textbox as they are added:</p> <pre><code>int num_flds; if(!int.TryParse(a_fld.Text,out num_flds)) { num_flds = 0; } for (int i = 0; i &lt; num_flds; i++) { TextBox tmp = new TextBox(); tmp.ID = "answer_box" + i; tmp.Width = Unit.Pixel(300); answer_inputs.Controls.Add(tmp); tmp.TextChanged += tmp_TextChanged; } </code></pre> <p>Finally, you iterate through the dictionary on callback to see if it holds any values. Do this in the OnPreRender method for instance.</p> <p>Edit: There is a problem with this, if the number of text fields are decreased on postback. Some safe way to recreate the previous textfields on postback should be employed.</p> http://stackoverflow.com/questions/433523/c-assigning-default-property-for-class-and-operator/433629#433629 2 Answer by Øyvind Skaar for C# Assigning default property for class and operator = Øyvind Skaar 2009-01-11T20:30:06Z 2009-01-11T20:30:06Z <p>You could create an implisit operator overload. Then you can create Stringfield from strings like this:</p> <pre><code>StringField field = "value of new object"; string value=(string)field; </code></pre> <p>Know that this creates a new StringField object. I wouldn't neccesarily advice you to do this.</p> <pre><code>[System.Diagnostics.DebuggerDisplay("{Value}")] public class StringField { public string Value { get; set; } public static implicit operator StringField(string s) { return new StringField { Value = s }; } public static explicit operator string(StringField f) { return f.Value; } public override string ToString() { return Value; } } </code></pre> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/433109#433109 0 Answer by Øyvind Skaar for Why Create Custom Exceptions? Øyvind Skaar 2009-01-11T15:58:45Z 2009-01-11T15:58:45Z <p>You shouldn't if the built in Exceptions appropriately describes the problem/exception. I wouldn't make my own base classes to create a custom <code>ArgumentException</code>, <code>ArgumentNullException</code> or <code>InvalidOperationException</code>.</p> <p>You can create your own exceptions, and describe the error at a higher level. however, this usually doesn't help that much in debugging from a consumer class.</p> <p>If you throw and catch the exception yourself, a custom exception may be in order.</p> http://stackoverflow.com/questions/425077/how-to-delete-the-pluginassembly-after-appdomain-unloaddomain/433103#433103 2 Answer by Øyvind Skaar for how to delete the pluginassembly after AppDomain.Unload(domain) Øyvind Skaar 2009-01-11T15:50:05Z 2009-01-11T15:50:05Z <p>If you load the assembly as a stream, it should work.</p> <pre><code>byte[] fileContent; string path = "../../../test/bin/Debug/test.dll"; //Path to plugin assembly using (FileStream dll = File.OpenRead(path)) { fileContent = new byte[dll.Length]; dll.Read(fileContent, 0, (int)dll.Length); } Assembly assembly = appDomain.Load(fileContent); File.Delete(path); </code></pre> http://stackoverflow.com/questions/420064/remove-scope-dropdown-from-osssearchresults-aspx-in-sharepoint-moss/432968#432968 0 Answer by Øyvind Skaar for Remove scope dropdown from OSSSearchResults.aspx in SharePoint MOSS Øyvind Skaar 2009-01-11T13:59:25Z 2009-01-11T13:59:25Z <p>You could edit the file directly, although this is not a recommended practice. The file is found in <code>\12\TEMPLATE\LAYOUTS\osssearchresults.aspx</code> and the control in question is in line 97: </p> <pre><code>&lt;SPSWC:SearchBoxEx id="SearchBox" runat="server" GoImageUrl="/_layouts/images/gosearch.gif" GoImageUrlRTL="/_layouts/images/gosearch.gif" DropdownModeEx=ShowDD_DefaultURL ScopeDisplayGroupName = "" FrameType="None" ShouldTakeFocusIfEmpty=true /&gt; </code></pre> http://stackoverflow.com/questions/1619448/how-to-avoid-processcontentslax-in-wcf-wsdl-from-classes-implementing-ixmlseri/1620954#1620954 Comment by Øyvind Skaar on How to avoid processContents="lax" in WCF WSDL from classes implementing IXmlSerializable? Øyvind Skaar 2009-10-25T20:17:07Z 2009-10-25T20:17:07Z Thanks. Wonder how I missed that! Unfortunately, when returning qualified names, the metadata endpoint fails in a bad request 400 error... http://stackoverflow.com/questions/1298769/serializationexception-from-system-web-ui-page-saveallstate-on-a-member-marked Comment by Øyvind Skaar on SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttribute Øyvind Skaar 2009-09-01T06:48:49Z 2009-09-01T06:48:49Z I guess i should have stated a more precise question, as most people misunderstood my problem. Still, thanks for the effort. http://stackoverflow.com/questions/1298769/serializationexception-from-system-web-ui-page-saveallstate-on-a-member-marked/1355470#1355470 Comment by Øyvind Skaar on SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttribute Øyvind Skaar 2009-09-01T06:47:50Z 2009-09-01T06:47:50Z This was the workaround I ended up with. Still, it almost seems like a bug, though. http://stackoverflow.com/questions/1298769/serializationexception-from-system-web-ui-page-saveallstate-on-a-member-marked/1338706#1338706 Comment by Øyvind Skaar on SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttribute Øyvind Skaar 2009-08-27T13:21:55Z 2009-08-27T13:21:55Z The control inheriting ObjectDataSource is declared in the page markup, and thus is serialized by the page when saving view state. I have no need for serialization at all. http://stackoverflow.com/questions/1298769/serializationexception-from-system-web-ui-page-saveallstate-on-a-member-marked/1338706#1338706 Comment by Øyvind Skaar on SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttribute Øyvind Skaar 2009-08-27T13:13:12Z 2009-08-27T13:13:12Z Well, this class isn't really serializable, so it wouldn't solve my problem. http://stackoverflow.com/questions/1298769/serializationexception-from-system-web-ui-page-saveallstate-on-a-member-marked/1298810#1298810 Comment by Øyvind Skaar on SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttribute Øyvind Skaar 2009-08-19T10:21:48Z 2009-08-19T10:21:48Z [NonSerialized] may only decorate fields. Nothing inherits from EntityContext. http://stackoverflow.com/questions/1019150/extending-sharepoint-breadcrumbs-across-multiple-site-collections/1158355#1158355 Comment by Øyvind Skaar on Extending SharePoint Breadcrumbs across multiple site collections Øyvind Skaar 2009-07-22T07:08:52Z 2009-07-22T07:08:52Z Try this: <a href="http://msdn.microsoft.com/en-us/library/cc789625.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/796607/how-do-i-override-tostring-in-c-enums/796646#796646 Comment by Øyvind Skaar on How do I override ToString in C# enums? Øyvind Skaar 2009-04-28T07:49:07Z 2009-04-28T07:49:07Z I agree wholeheartedly. Neither should you expose the result of ToString() to the UI. And, you don't get localization. http://stackoverflow.com/questions/770637/is-there-an-equivalent-to-the-spweb-properties-in-the-sharepoint-web-services/772761#772761 Comment by Øyvind Skaar on Is there an equivalent to the SPWeb.Properties in the SharePoint web services? Øyvind Skaar 2009-04-27T19:30:05Z 2009-04-27T19:30:05Z If you deploy your template as a SharePoint solution, you should consider including a custom web service as a part of that. http://stackoverflow.com/questions/744419/moss-2007-site-in-a-farm-type-initializer-exception Comment by Øyvind Skaar on MOSS 2007 site in a farm type initializer exception Øyvind Skaar 2009-04-21T14:16:49Z 2009-04-21T14:16:49Z What is the type of the exception? http://stackoverflow.com/questions/599527/scripting-and-programming/599540#599540 Comment by Øyvind Skaar on Scripting and Programming Øyvind Skaar 2009-03-01T12:09:34Z 2009-03-01T12:09:34Z Couldn't that be said about using libraries and frameworks in general? http://stackoverflow.com/questions/569154/how-to-deep-copy-between-objects-of-different-types-in-c-net/569167#569167 Comment by Øyvind Skaar on How to deep copy between objects of different types in C#.NET Øyvind Skaar 2009-02-21T09:48:03Z 2009-02-21T09:48:03Z Not necessarily. You could clone the state to a generic format. the classes would just have to be aware of the common protocol. http://stackoverflow.com/questions/527493/what-significance-does-newweb-and-blank-configurations-have-in-wss-site-defin/527542#527542 Comment by Øyvind Skaar on What significance does "NewWeb" and "Blank" configurations have in WSS site definitions Øyvind Skaar 2009-02-09T12:20:57Z 2009-02-09T12:20:57Z These are not mentioned in the webtemp manifest. And why should a null configuration be defined in all templates? Does that make sense? http://stackoverflow.com/questions/521146/c-split-string-but-keep-split-chars/521155#521155 Comment by Øyvind Skaar on c# split string but keep split chars Øyvind Skaar 2009-02-06T17:07:10Z 2009-02-06T17:07:10Z This only works if there is one single separator. You may need to employ some regex magic. http://stackoverflow.com/questions/402517/is-there-a-better-way-to-test-for-an-integer-in-c-than-double-tryparse/402533#402533 Comment by Øyvind Skaar on Is there a better way to test for an integer in C# than Double.TryParse? Øyvind Skaar 2009-01-15T06:52:00Z 2009-01-15T06:52:00Z Neither will it detect if non-English separators are used.