User Øyvind Skaar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T11:06:33Zhttp://stackoverflow.com/feeds/user/49194http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1619448/how-to-avoid-processcontentslax-in-wcf-wsdl-from-classes-implementing-ixmlseri0How to avoid processContents="lax" in WCF WSDL from classes implementing IXmlSerializable?Øyvind Skaar2009-10-24T23:06:40Z2009-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><xs:element name="TelephoneList">
<xs:complexType>
<xs:sequence>
<xs:element ref="Telephone" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Telephone">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="Type">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Preferred"/>
<xs:enumeration value="Office"/>
<xs:enumeration value="Mobile"/>
<xs:enumeration value="Home"/>
<xs:enumeration value="MobilePhoneFromExternalPartner"/>
<xs:enumeration value="HomePhoneFromExternalPartner"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</code></pre>
<p><strong>The collection class:</strong></p>
<pre><code>[CollectionDataContract(ItemName = "Telephone", Name = "TelephoneList", Namespace = Schema.WorkOrderNamespace)]
public class TelephoneSet : SetBase<Telephone>
{ }
</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; }
/// <remarks>This method is referenced in the <seealso cref="XmlSchemaProviderAttribute"/> decoration.</remarks>
public static XmlSchemaComplexType GetSchemaFile(XmlSchemaSet xs)
{
return CreateSchema(xs, "Telephone");
}
public override void ReadXml(XmlReader reader)
{
Type = ReadEnumAttribute<TelephoneType?>(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><xs:complexType name="TelephoneList">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="Telephone" nillable="true">
<xs:complexType>
<xs:sequence>
<xs:any minOccurs="0" processContents="lax"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:element name="TelephoneList" nillable="true" type="tns:TelephoneList"/>
</code></pre>
http://stackoverflow.com/questions/1298769/serializationexception-from-system-web-ui-page-saveallstate-on-a-member-marked1SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttributeØyvind Skaar2009-08-19T09:30:13Z2009-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;
/// <summary>
/// Gets the data context. (This is used by the page at runtime.)
/// </summary>
/// <value>The data context.</value>
// 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());
}
/// <summary>
/// Viewstate is not implemented. This value allways return <c>false</c>.
/// </summary>
/// <exception cref="NotSupportedException">Exception is thrown when setting this value.</exception>
[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#11583552Answer by Øyvind Skaar for Extending SharePoint Breadcrumbs across multiple site collectionsØyvind Skaar2009-07-21T10:20:01Z2009-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#9336820Answer by Øyvind Skaar for How to duplicate a virtual PC with SharePoint, K2 and domain controllerØyvind Skaar2009-06-01T05:45:21Z2009-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#8883973Answer by Øyvind Skaar for Which piece of code is more performant?Øyvind Skaar2009-05-20T14:49:29Z2009-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 < 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 < 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#8172390Answer by Øyvind Skaar for How to upload a publishing page using features?Øyvind Skaar2009-05-03T14:45:10Z2009-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#7984710Answer by Øyvind Skaar for Date vs DateTimeØyvind Skaar2009-04-28T15:10:20Z2009-04-28T15:10:20Z<p>Create a wrapper class. Something like this:</p>
<pre><code>public class Date:IEquatable<Date>,IEquatable<DateTime>
{
public Date(DateTime date)
{
value = date.Date;
}
public bool Equals(Date other)
{
return other != null && 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#7952680Answer by Øyvind Skaar for Properly implement a webpart with postback?Øyvind Skaar2009-04-27T21:01:19Z2009-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("<h1>{0}</h1>", textBox.Text);
}
}
}
</code></pre>
http://stackoverflow.com/questions/770637/is-there-an-equivalent-to-the-spweb-properties-in-the-sharepoint-web-services/772761#7727612Answer by Øyvind Skaar for Is there an equivalent to the SPWeb.Properties in the SharePoint web services?Øyvind Skaar2009-04-21T14:08:01Z2009-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#7725710Answer by Øyvind Skaar for Finding how a foreach collection gets modifiedØyvind Skaar2009-04-21T13:24:08Z2009-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#7435401Answer by Øyvind Skaar for How can I schedule a report in SharePoint to run on the last day of the month?Øyvind Skaar2009-04-13T10:26:43Z2009-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#5997220Answer by Øyvind Skaar for navigation of pages only when submit button is clicked Øyvind Skaar2009-03-01T12:03:28Z2009-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><asp:Button
ID="Button1"
PostBackUrl="~/TargetPage.aspx"
runat="server"
Text="Submit" />
</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#5691670Answer by Øyvind Skaar for How to deep copy between objects of different types in C#.NETØyvind Skaar2009-02-20T11:12:27Z2009-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#5514330Answer by Øyvind Skaar for Web Part Deployed To GAC Not Working...Øyvind Skaar2009-02-15T19:18:16Z2009-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#5279750Answer by Øyvind Skaar for Invoke Required.Øyvind Skaar2009-02-09T12:37:14Z2009-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#5275672Answer by Øyvind Skaar for Move one arraylist data to another arraylist in C#Øyvind Skaar2009-02-09T09:43:18Z2009-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-defin3What significance does "NewWeb" and "Blank" configurations have in WSS site definitionsØyvind Skaar2009-02-09T09:12:27Z2009-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><Configuration ID="-1" Name="NewWeb"/>
<Configuration ID="1" Name="Blank">
<ExecuteUrl Url="_layouts/[%=Web.Language%]/settings.aspx" />
</Configuration>
</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#5272262Answer by Øyvind Skaar for Global Customized View for Document Libraries in SharepointØyvind Skaar2009-02-09T06:09:12Z2009-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#5212840Answer by Øyvind Skaar for c# split string but keep split charsØyvind Skaar2009-02-06T17:35:27Z2009-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<string> parts=new List<string>();
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#4893530Answer by Øyvind Skaar for How to pass an arbitrary number of parameters in C#Øyvind Skaar2009-01-28T21:03:32Z2009-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#4428090Answer by Øyvind Skaar for How to build a threaded Comment System in C#? Help...Øyvind Skaar2009-01-14T12:40:50Z2009-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<Comment>
{
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<Comment> GetEnumerator()
{
return collection.Where(c => 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 + " > " + 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<Comment>
{
public void Add(Comment comment)
{
comments.Add(comment.Id,comment);
}
public Comment this[int id]
{
get { return comments[id]; }
}
private readonly Dictionary<int,Comment> comments=new Dictionary<int, Comment>();
public IEnumerator<Comment> GetEnumerator()
{
return comments.Select(p => p.Value).GetEnumerator();
}
public IEnumerable<Comment> GetTopLevel()
{
return comments.Where(c => c.Value.Parent == null).
Select(c => 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#4409204Answer by Øyvind Skaar for How would I Practice .NET at Home (gratis)?Øyvind Skaar2009-01-13T21:44:42Z2009-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#4339397Answer by Øyvind Skaar for Generic C# Copy ConstructorØyvind Skaar2009-01-11T23:00:38Z2009-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#4339322Answer by Øyvind Skaar for Extension method not updating object passed inØyvind Skaar2009-01-11T22:58:00Z2009-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<TSource, TKey>(this List<TSource> list, Func<TSource, TKey> keySelector)
{
var tempList = list.OrderBy(keySelector).ToList<TSource>();
list.Clear();
list.AddRange(tempList);
}
</code></pre>
http://stackoverflow.com/questions/433833/dynamic-creation-of-control/433841#4338411Answer by Øyvind Skaar for Dynamic creation of control Øyvind Skaar2009-01-11T22:17:40Z2009-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#4337731Answer by Øyvind Skaar for Dynamically create text inputs (ASP.net/C#)Øyvind Skaar2009-01-11T21:39:29Z2009-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<TextBox, string> values=new Dictionary<TextBox, string>();
</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 < 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#4336292Answer by Øyvind Skaar for C# Assigning default property for class and operator =Øyvind Skaar2009-01-11T20:30:06Z2009-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#4331090Answer by Øyvind Skaar for Why Create Custom Exceptions?Øyvind Skaar2009-01-11T15:58:45Z2009-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#4331032Answer by Øyvind Skaar for how to delete the pluginassembly after AppDomain.Unload(domain)Øyvind Skaar2009-01-11T15:50:05Z2009-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#4329680Answer by Øyvind Skaar for Remove scope dropdown from OSSSearchResults.aspx in SharePoint MOSSØyvind Skaar2009-01-11T13:59:25Z2009-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><SPSWC:SearchBoxEx id="SearchBox" runat="server"
GoImageUrl="/_layouts/images/gosearch.gif"
GoImageUrlRTL="/_layouts/images/gosearch.gif"
DropdownModeEx=ShowDD_DefaultURL
ScopeDisplayGroupName = ""
FrameType="None"
ShouldTakeFocusIfEmpty=true />
</code></pre>
http://stackoverflow.com/questions/1619448/how-to-avoid-processcontentslax-in-wcf-wsdl-from-classes-implementing-ixmlseri/1620954#1620954Comment by Øyvind Skaar on How to avoid processContents="lax" in WCF WSDL from classes implementing IXmlSerializable?Øyvind Skaar2009-10-25T20:17:07Z2009-10-25T20:17:07ZThanks. 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-markedComment by Øyvind Skaar on SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttributeØyvind Skaar2009-09-01T06:48:49Z2009-09-01T06:48:49ZI 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#1355470Comment by Øyvind Skaar on SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttributeØyvind Skaar2009-09-01T06:47:50Z2009-09-01T06:47:50ZThis 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#1338706Comment by Øyvind Skaar on SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttributeØyvind Skaar2009-08-27T13:21:55Z2009-08-27T13:21:55ZThe 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#1338706Comment by Øyvind Skaar on SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttributeØyvind Skaar2009-08-27T13:13:12Z2009-08-27T13:13:12ZWell, 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#1298810Comment by Øyvind Skaar on SerializationException from System.Web.UI.Page.SaveAllState() on a member marked with NonSerializedAttributeØyvind Skaar2009-08-19T10:21:48Z2009-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#1158355Comment by Øyvind Skaar on Extending SharePoint Breadcrumbs across multiple site collectionsØyvind Skaar2009-07-22T07:08:52Z2009-07-22T07:08:52ZTry this: <a href="http://msdn.microsoft.com/en-us/library/cc789625.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/796607/how-do-i-override-tostring-in-c-enums/796646#796646Comment by Øyvind Skaar on How do I override ToString in C# enums?Øyvind Skaar2009-04-28T07:49:07Z2009-04-28T07:49:07ZI 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#772761Comment by Øyvind Skaar on Is there an equivalent to the SPWeb.Properties in the SharePoint web services?Øyvind Skaar2009-04-27T19:30:05Z2009-04-27T19:30:05ZIf 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-exceptionComment by Øyvind Skaar on MOSS 2007 site in a farm type initializer exceptionØyvind Skaar2009-04-21T14:16:49Z2009-04-21T14:16:49ZWhat is the type of the exception?http://stackoverflow.com/questions/599527/scripting-and-programming/599540#599540Comment by Øyvind Skaar on Scripting and ProgrammingØyvind Skaar2009-03-01T12:09:34Z2009-03-01T12:09:34ZCouldn'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#569167Comment by Øyvind Skaar on How to deep copy between objects of different types in C#.NETØyvind Skaar2009-02-21T09:48:03Z2009-02-21T09:48:03ZNot 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#527542Comment by Øyvind Skaar on What significance does "NewWeb" and "Blank" configurations have in WSS site definitionsØyvind Skaar2009-02-09T12:20:57Z2009-02-09T12:20:57ZThese 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#521155Comment by Øyvind Skaar on c# split string but keep split charsØyvind Skaar2009-02-06T17:07:10Z2009-02-06T17:07:10ZThis 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#402533Comment by Øyvind Skaar on Is there a better way to test for an integer in C# than Double.TryParse?Øyvind Skaar2009-01-15T06:52:00Z2009-01-15T06:52:00ZNeither will it detect if non-English separators are used.