User baretta - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T03:44:30Z http://stackoverflow.com/feeds/user/30052 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/623636/net-tiff-file-rgb-to-cmyk-conversion-possible-without-a-third-party-library/623657#623657 1 Answer by baretta for .NET TIFF file: RGB to CMYK conversion possible without a third party library? baretta 2009-03-08T14:24:13Z 2009-11-30T14:56:22Z <p>No, I don't think that's possible using standard GDI+ wrappers (System.Drawing). GDI+ only supports RGB. CMYK based images can be read by GDI+ (implicit conversion to RGB), but CMYK based images can't be written.</p> <p>You might want to try something like <a href="http://www.aurigma.com/Products/GraphicsMilldotNET/default.aspx" rel="nofollow">GraphicsMill</a>, which supports CMYK.</p> http://stackoverflow.com/questions/1694861/asp-net-mvc-renderpartial-different-model/1694893#1694893 2 Answer by baretta for Asp.Net MVC RenderPartial different model baretta 2009-11-08T00:20:44Z 2009-11-08T00:20:44Z <p>Try passing the appropriate model as second parameter when calling RenderPartial.</p> http://stackoverflow.com/questions/1434020/aspx-page-renders-differently-when-reached-on-intranet-vs-internet/1434138#1434138 1 Answer by baretta for ASPX page renders differently when reached on intranet vs. internet? baretta 2009-09-16T16:41:09Z 2009-09-16T16:47:35Z <p>It's most definitely because websites located on internal networks is rendered in <a href="http://en.wikipedia.org/wiki/Quirks%5Fmode" rel="nofollow">quirks mode</a> by default by IE8, while pages located on the Internet will determine rendering mode based on doctype. This means that while you are browsing your page over the Internet, the doctype declaration of that document dictates the rendering mode, while if you are browsing on the Intranet, IE8 uses the IE7 rendering engine.</p> <p>Rendering mode can be explicitly overridden, by the user changing the IE compatibility settings, or, by always forcing IE8 to use the IE8 rendering engine, adding a meta tag to the page:</p> <pre><code>&lt;meta http-equiv="X-UA-Compatible" content="IE=8" /&gt; </code></pre> http://stackoverflow.com/questions/976811/how-to-specify-a-wcf-known-type-in-config-that-is-generic/977008#977008 5 Answer by baretta for How to specify a WCF known type in config that is generic? baretta 2009-06-10T17:22:35Z 2009-07-03T16:20:01Z <p>A generic type is instantiable from a string, if the string follows this pattern: <em>Class name followed by a "`" character, followed by the number of type parameters(in this case it's 1), followed by the type parameters enclosed within "[]", and using comma as type parameter separator</em>.</p> <pre><code>&lt;configuration&gt; &lt;system.runtime.serialization&gt; &lt;dataContractSerializer&gt; &lt;declaredTypes&gt; &lt;add type="Wrapper, TheirAssembly"&gt; &lt;!-- this syntax is all good --&gt; &lt;knownType type="Data`1[System.Int32], MyAssembly"/&gt; &lt;knownType type="Data`1[System.Int64], MyAssembly"/&gt; &lt;/add&gt; &lt;/declaredTypes&gt; &lt;/dataContractSerializer&gt; &lt;/system.runtime.serialization&gt; &lt;/configuration&gt; </code></pre> <p>Edit: I might also add, that if assembly information needs to be specified for the type parameters(althoug it's not the case for stuff in mscorlib), then nested "[]" is used.</p> <pre><code>&lt;knownType type="Data`1[[System.Int32, mscorlib]], MyAssembly"/&gt; </code></pre> <p>Edit: You can customize names of generic types in data contracts, using the string format pattern.</p> <pre><code>[DataContract(Name = "Data{0}")] public class Data&lt;TKey&gt; {...} </code></pre> <p>By default, the name generated for the Data&lt;Int32> type is something like "DataOfInt32HJ67AK7Y", where "HJ67AK7Y" is a hash generated from the string "urn:default", or the namespace of your class, if you have any. But "Data{0}" would give it the name "DataInt32".</p> <p>More <a href="http://msdn.microsoft.com/en-us/library/ms731045.aspx" rel="nofollow">here</a>. Have a look at the "Customizing Data Contract Names for Generic Types" part down the page.</p> http://stackoverflow.com/questions/949572/what-is-the-best-way-to-manually-parse-an-xelement-into-custom-objects/949646#949646 0 Answer by baretta for What is the best way to manually parse an XElement into custom objects? baretta 2009-06-04T10:08:06Z 2009-06-04T10:08:06Z <p>I'd suggest inheriting XElement, and implement properties for the stuff you want in it. These properties shouldn't use backing fields, but rather work directly with the underlying XML element. That way, you'll keep object in sync with XML.</p> http://stackoverflow.com/questions/945585/c-automatic-property-deserialization-of-json/946088#946088 4 Answer by baretta for C# Automatic Property DeSerialization of JSON baretta 2009-06-03T17:38:33Z 2009-06-03T17:52:13Z <p>You'd wanna route the set operation to set_Name/set_Breed, rather than having the deserializer guess the backing field.</p> <p>Solve this by adding some explicit mapping instead:</p> <pre><code>[DataContract] public class Cat { [DataMember] public string Name { get; set; } [DataMember] public string Breed { get; set; } } </code></pre> http://stackoverflow.com/questions/928126/how-to-add-xml-namespces/928240#928240 4 Answer by baretta for how to add xml namespces baretta 2009-05-29T21:29:09Z 2009-05-29T21:29:09Z <p>Try this:</p> <pre><code>writer.WriteStartElement("AmazonEnvelope"); writer.WriteAttributeString( "xmlns", "xsi", null, "http://www.w3.org/2001/XMLSchema-instance"); writer.WriteAttributeString( "xsi", "noNamespaceSchemaLocation", null, "amzn-envelope.xsd"); ... writer.WriteEndElement(); </code></pre> http://stackoverflow.com/questions/899629/cast-object-to-t/928139#928139 1 Answer by baretta for Cast object to T baretta 2009-05-29T21:02:30Z 2009-05-29T21:02:30Z <p>Actually, the problem here is the use of ReadContentAsObject. Unfortunately, this method does not live up to its expectations; while it should detect the most appropirate type for the value, it actually returns a string, no matter what(this can be verified using Reflector). </p> <p>However, in your specific case, you already know the type you want to cast to, therefore i would say you are using the wrong method.</p> <p>Try using ReadContentAs instead, it's exactly what you need.</p> <pre><code>private static T ReadData&lt;T&gt;(XmlReader reader, string value) { reader.MoveToAttribute(value); object readData = reader.ReadContentAs(typeof(T), null); return (T)readData; } </code></pre> http://stackoverflow.com/questions/881455/c-class-to-xml-xmlserializaion-problem/881474#881474 4 Answer by baretta for C# class to XML (xmlserializaion) problem baretta 2009-05-19T07:56:55Z 2009-05-19T07:56:55Z <p>Use XmlTextAttribute on StarName property.</p> http://stackoverflow.com/questions/786832/using-viewstate-across-servers-in-a-farm/786850#786850 1 Answer by baretta for using viewstate across servers in a farm baretta 2009-04-24T17:30:28Z 2009-04-24T17:30:28Z <p>Use an identic machineKey on all nodes. Put it in machine.config, or web.config</p> http://stackoverflow.com/questions/714594/webinvoke-datacontractjsonserializer-1-6276-cannot-be-parsed-as-double 0 WebInvoke/DataContractJsonSerializer, '1,6276' cannot be parsed as 'double'. baretta 2009-04-03T16:04:19Z 2009-04-06T17:02:53Z <p>Hi,</p> <p>I am using WCF <code>WebInvokeAttribute</code> for declarative JSON requests (<code>DataContractJsonSerializer</code>), with <code>DataContractAttribute</code>/<code>DataMemberAttribute</code> based serialization.</p> <p>I'm using a service that supports returning JSON containing data based on different cultures. By default, this service uses en-US culture settings, which means the decimals separator will be ".".</p> <p>I have a class that has a <code>System.Double</code> property. If I request data using a culture that uses "," as decimal separator, I get a <code>SerializationException</code> while trying to deserialize the value for this property, when parsing the <code>System.Double</code>:</p> <blockquote> <p>"There was an error deserializing the object of type XXX. The value '1,6276' cannot be parsed as the type 'double'."</p> </blockquote> <p>This is certainly because an invariant culture is used while parsing the Double. I hoped that setting the correct culture on the current thread would fix this, but it didn't.</p> <p>So the services will break for any cultures that is not using "." as decimal separator.</p> <p>Will appreciate help.</p> <p>Thanks!</p> http://stackoverflow.com/questions/615403/how-to-do-location-based-search/631758#631758 0 Answer by baretta for how to do location based search baretta 2009-03-10T18:53:53Z 2009-03-10T18:53:53Z <p>You might wanna have a look at <a href="http://www.geonames.org/" rel="nofollow">GeoNames</a>.</p> <p>I have written a .NET WCF client for GeoNames, available <a href="http://www.codeproject.com/KB/WCF/GeoNames-WCFClient.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/592022/implement-asp-net-mvc-view-engine-for-pre-processing 1 Implement ASP.NET MVC View Engine for pre-processing baretta 2009-02-26T19:21:21Z 2009-03-09T19:38:00Z <p>I would like to implement a ASP.NET MVC View Engine to perform some pre-processing of the original .aspx/.ascx. file. Then, I want to pass the result to the default view engine (typically the WebForm View Engine).</p> <p>This means, the default View Engine shouldn't read this file from disk, since this is not yet processed. Instead, i would want the View Engine to read the input from an input stream.</p> <p>Is this possible? Should i create a new file extension mapped to this pre-processing view engine?</p> <p>thx</p> http://stackoverflow.com/questions/622336/setup-iis-in-localhost-as-web-development-server/622351#622351 4 Answer by baretta for Setup IIS in localhost as web development server baretta 2009-03-07T19:33:54Z 2009-03-07T19:33:54Z <p>It's in the web project's property pages, under Web->Servers->"Use local IIS web server"</p> http://stackoverflow.com/questions/616657/how-can-return-reference-to-dictionary-from-a-method-as-readonly/616661#616661 0 Answer by baretta for How can return reference to Dictionary from a method as readonly? baretta 2009-03-05T21:18:43Z 2009-03-05T21:27:22Z <p>Expose an enumeration(IEnumerable).</p> <p><em>Edit:</em> Example:</p> <pre><code>class A : IEnumerable&lt;B&gt; { ... public IEnumerator&lt;B&gt; GetEnumerator ( ) { return _dictionary.GetEnumerator ( ); } private Dictionary&lt;B&gt; _dictionary; } </code></pre> http://stackoverflow.com/questions/604031/what-is-the-first-last-week-of-a-month/604049#604049 1 Answer by baretta for What is the first/last week of a month? baretta 2009-03-02T21:22:02Z 2009-03-02T21:22:02Z <p>My definition would be the first week is the week of the first working day in the month, and likewise the last week is the week of the last working day in the month.</p> http://stackoverflow.com/questions/603374/why-does-visual-studio-2008-crash/603438#603438 0 Answer by baretta for Why does Visual Studio 2008™ crash? baretta 2009-03-02T18:31:54Z 2009-03-02T20:31:34Z <p>You get OutOfMemoryException? Check the size of the .suo file. I had <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=309804" rel="nofollow">problems with this</a> in VS 2005, but i havent reproduced it on 2008. The .suo file would bloat, repeating a single line of code thousands, and eventually millions of times. Each time i saved, this would grow the .suo file a few megabytes.</p> http://stackoverflow.com/questions/593197/what-is-the-default-precision-and-scale-for-a-number-in-oracle/593218#593218 5 Answer by baretta for What is the default Precision and Scale for a Number in Oracle? baretta 2009-02-27T01:37:02Z 2009-03-02T17:09:52Z <p>I believe the default precision is 38, default scale is zero. However the actual size of an instance of this column, is dynamic. It will take as much space as needed to store the value, or max 21 bytes.</p> http://stackoverflow.com/questions/596043/can-you-view-the-xml-generated-by-net-when-using-a-javaws-service/598349#598349 1 Answer by baretta for Can you view the XML generated by .Net when using a JavaWS service? baretta 2009-02-28T17:30:25Z 2009-02-28T17:30:25Z <p>Or you can use the XmlSerializer and serialize the object instance you are about to pass, to the disk, for instance.</p> http://stackoverflow.com/questions/594208/how-to-retrive-values-from-100-textbox-using-loops/594899#594899 1 Answer by baretta for how to retrive values from 100 Textbox using loops baretta 2009-02-27T14:10:53Z 2009-02-27T14:10:53Z <p>or you can do something like:</p> <pre><code>int index = 1; while ( ( TextBox tb = FindControl ( string.Concat ( "TxB_Customize", index.ToString ( ) ) as TextBox != null ) { MyList.Add ( tb.Text ); index++; } </code></pre> <p>This could be good if you have actually some other textboxes as well, which is not part of this array of data.</p> http://stackoverflow.com/questions/594828/how-to-crack-an-excel-workbook-that-looks-up-values/594859#594859 0 Answer by baretta for How to crack an Excel workbook that looks up values? baretta 2009-02-27T13:59:28Z 2009-02-27T13:59:28Z <p>Isn't this just data from the worksheet only?</p> <p>Column header dropdown lists acts as filters, they show distinct values of a column. This is a feature of Excel.</p> http://stackoverflow.com/questions/592710/overriding-int-on-a-bit-enum/592738#592738 2 Answer by baretta for Overriding int on a bit enum baretta 2009-02-26T22:25:03Z 2009-02-26T22:25:03Z <p>FlagsAttribute only tells the user that fields in this enum can be combined; it doesn't actually set the fields of the enum to "flaggable" values. This, you will have to do yourself, just like you have already.</p> http://stackoverflow.com/questions/592630/javascript-variable-variables/592650#592650 0 Answer by baretta for Javascript Variable Variables baretta 2009-02-26T22:01:59Z 2009-02-26T22:01:59Z <p>If you mean totally client-side, then eval might do it for you:</p> <pre><code>var varName = "myVar"; eval ("var " + varName + "=2;"); alert(myVar); </code></pre> <p>Generally though, server side scripting is normally used for generating client side script, if the script needs to handle such things as variables of dynamic names.</p> http://stackoverflow.com/questions/592353/how-to-require-a-valid-username-password-using-wcf-without-transport-security/592386#592386 1 Answer by baretta for How to require a valid username + password using WCF (without Transport Security) baretta 2009-02-26T20:51:40Z 2009-02-26T21:08:31Z <p>Yea, WCF will require encrypted communication if you need to pass username/password.</p> <p>I think the only way, is to create a certificate to use for safe communication(security at message level). You can easily do this with makecert, like this:</p> <pre><code>makecert.exe -sr LocalMachine -ss My -a sha1 -n CN=localhostCA -sky exchange -pe </code></pre> <p>You may need to grant access to this certificate for the IIS user, using Windows HTTP Services Certificate Configuration Tool. Then, run the following command (given that ASPNET is the appropriate IIS user):</p> <pre><code>winhttpcertcfg -g -c LOCAL_MACHINE\My -s localhostCA -a ASPNET </code></pre> <p>Replace "localhostCA" with the name of your certificate.</p> http://stackoverflow.com/questions/591130/can-i-add-a-br-and-links-to-a-javascript-alert/591164#591164 1 Answer by baretta for Can I add a <br/> and links to a javascript alert? baretta 2009-02-26T15:58:04Z 2009-02-26T15:58:04Z <p>You can't use markup in a javascript alert. However, you can achieve line breaks using "\n"</p> http://stackoverflow.com/questions/587547/how-to-put-in-text-when-using-xelement/587610#587610 1 Answer by baretta for How to put   in text when using XElement. baretta 2009-02-25T20:03:42Z 2009-02-25T20:03:42Z <p>You could also try using numbered entities, they need no declaration. Numbered entity equivalent to the named entity &amp;nbsp; is &amp;#160;</p> http://stackoverflow.com/questions/587510/how-to-detect-if-an-aspx-page-was-called-from-server-execute/587550#587550 0 Answer by baretta for How to detect if an aspx page was called from Server.Execute? baretta 2009-02-25T19:51:33Z 2009-02-25T19:51:33Z <p>At least you can tell if the request is local through Request.IsLocal .</p> http://stackoverflow.com/questions/587488/handling-hierarchy-data-in-database/587507#587507 1 Answer by baretta for Handling Hierarchy Data in Database baretta 2009-02-25T19:44:42Z 2009-02-25T19:44:42Z <p>In Oracle, you can use CONNECT BY/START WITH to query hierarchial data. In SQL Server, you can use a stored procedure, that calls itself recursively.</p> http://stackoverflow.com/questions/587183/vb-net-and-oop-shared-methods-and-base-properties/587187#587187 0 Answer by baretta for VB.NET and OOP - Shared Methods and Base Properties baretta 2009-02-25T18:18:06Z 2009-02-25T18:18:06Z <p>If you're in a static context, you would need to instantiate this class to access its instance members.</p> http://stackoverflow.com/questions/586963/specify-the-assembly-explicitly/587182#587182 0 Answer by baretta for Specify the assembly explicitly? baretta 2009-02-25T18:15:49Z 2009-02-25T18:15:49Z <p>You mean like this?</p> <pre><code>TIMSSCMS.DNN.Modules.CustomerDemographics.Settings, TIMSSCMS.DNN, Version=x.x.x.x, Culture=neutral, ( PublicKeyToken=...) </code></pre> http://stackoverflow.com/questions/976811/how-to-specify-a-wcf-known-type-in-config-that-is-generic Comment by baretta on How to specify a WCF known type in config that is generic? baretta 2009-07-03T16:20:42Z 2009-07-03T16:20:42Z Yeah, I know! :) I edited my answer http://stackoverflow.com/questions/714594/webinvoke-datacontractjsonserializer-1-6276-cannot-be-parsed-as-double Comment by baretta on WebInvoke/DataContractJsonSerializer, '1,6276' cannot be parsed as 'double'. baretta 2009-04-03T16:41:26Z 2009-04-03T16:41:26Z This is the service client: <a href="http://www.codeproject.com/KB/WCF/GeoNames-WCFClient.aspx" rel="nofollow">codeproject.com/KB/WCF/&hellip;</a> A user of this component first discovered this bug, read the Derserialization Error thread at the bottom. Thanks http://stackoverflow.com/questions/592022/implement-asp-net-mvc-view-engine-for-pre-processing/627686#627686 Comment by baretta on Implement ASP.NET MVC View Engine for pre-processing baretta 2009-03-09T20:14:54Z 2009-03-09T20:14:54Z thx for answering, i didnt have much hope left that someone would reply. And you make some good points, 2. You are probably right that i will need my own build manager. I will look into this, and might also accept this answer in the near future. http://stackoverflow.com/questions/594828/how-to-crack-an-excel-workbook-that-looks-up-values/594859#594859 Comment by baretta on How to crack an Excel workbook that looks up values? baretta 2009-02-27T14:55:58Z 2009-02-27T14:55:58Z In Excel 2007, if you mark a column and choose Filter-&gt;Filter by selected cell's value, this will create a sort of dropdown that can be used to filter the column by values. You see any gaps in the row numbers? If you do, this is definitely it, since then numbers that does not appear, is filtered out http://stackoverflow.com/questions/592630/javascript-variable-variables Comment by baretta on Javascript Variable Variables baretta 2009-02-26T22:11:59Z 2009-02-26T22:11:59Z Yea i can see you like to downvote. What would stackoverflow be without people like you. http://stackoverflow.com/questions/587510/how-to-detect-if-an-aspx-page-was-called-from-server-execute/587550#587550 Comment by baretta on How to detect if an aspx page was called from Server.Execute? baretta 2009-02-25T22:59:31Z 2009-02-25T22:59:31Z in that case, i really don't think there are any references back to the original page. Your best bet is probably as others have said, to pass this information in the querystring http://stackoverflow.com/questions/575893/why-does-my-c-client-posting-to-my-wcf-rest-service-return-400-bad-request/575898#575898 Comment by baretta on Why does my C# client, POSTing to my WCF REST service, return (400) Bad Request? baretta 2009-02-22T23:38:48Z 2009-02-22T23:38:48Z yea the contentType is wrong, too. But i had this problem myself so i was pretty sure it was the BodyStyle causing this. http://stackoverflow.com/questions/574849/how-to-impement-an-event-which-can-be-canceled/574857#574857 Comment by baretta on How to impement an event which can be canceled? baretta 2009-02-22T12:45:04Z 2009-02-22T12:45:04Z worth downvoting? http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/273046#273046 Comment by baretta on What is your best programmer joke? baretta 2009-02-21T20:46:00Z 2009-02-21T20:46:00Z yea Paulius, actually i can't see this is the case in Scandinavia at least.. Its a funny thing to do, almost did it myself once:) http://stackoverflow.com/questions/570294/asp-net-c-dropdownlist-selectedindexchanged-in-server-control-not-firing/570528#570528 Comment by baretta on ASP.NET / C#: DropDownList SelectedIndexChanged in server control not firing baretta 2009-02-20T17:39:53Z 2009-02-20T17:39:53Z Yeah, or preferably in override CreateChildControls http://stackoverflow.com/questions/557459/name-this-pattern/557510#557510 Comment by baretta on Name this pattern baretta 2009-02-17T19:36:06Z 2009-02-17T19:36:06Z I see your point, this pattern might be applicable in some context. But as far as session pattern; if you're talking ASP.NET Session State, i guess this data is just indexed using the session ID, which the client sends to identify itself. I don't think this pattern is used here http://stackoverflow.com/questions/557459/name-this-pattern/557510#557510 Comment by baretta on Name this pattern baretta 2009-02-17T18:04:32Z 2009-02-17T18:04:32Z You are right, I really don't see that... http://stackoverflow.com/questions/557459/name-this-pattern/557510#557510 Comment by baretta on Name this pattern baretta 2009-02-17T17:19:50Z 2009-02-17T17:19:50Z @sjbotha: For tracking users online, you could consider using the database, or session state http://stackoverflow.com/questions/557459/name-this-pattern/557510#557510 Comment by baretta on Name this pattern baretta 2009-02-17T16:24:10Z 2009-02-17T16:24:10Z I can see the use for this kind of information, although maybe there are other approaches, such as profiling systems etc.. However, i don't know if this is a common pattern, with its own name. http://stackoverflow.com/questions/553147/how-to-access-a-local-resource-in-a-theme-from-an-asp-net-page/553180#553180 Comment by baretta on How to Access a Local Resource in a Theme from an ASP.net Page? baretta 2009-02-16T14:50:36Z 2009-02-16T14:50:36Z I really didn't know that. But since your'e telling me, i would guess it's possible to refer to resources in this file, from server markup in the .skin files. That's my guess, but probably these are not directly accessible from a aspx/ascx, but only in the actual skin file.