User baretta - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T03:44:30Zhttp://stackoverflow.com/feeds/user/30052http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/623636/net-tiff-file-rgb-to-cmyk-conversion-possible-without-a-third-party-library/623657#6236571Answer by baretta for .NET TIFF file: RGB to CMYK conversion possible without a third party library?baretta2009-03-08T14:24:13Z2009-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#16948932Answer by baretta for Asp.Net MVC RenderPartial different modelbaretta2009-11-08T00:20:44Z2009-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#14341381Answer by baretta for ASPX page renders differently when reached on intranet vs. internet?baretta2009-09-16T16:41:09Z2009-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><meta http-equiv="X-UA-Compatible" content="IE=8" />
</code></pre>
http://stackoverflow.com/questions/976811/how-to-specify-a-wcf-known-type-in-config-that-is-generic/977008#9770085Answer by baretta for How to specify a WCF known type in config that is generic?baretta2009-06-10T17:22:35Z2009-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><configuration>
<system.runtime.serialization>
<dataContractSerializer>
<declaredTypes>
<add type="Wrapper, TheirAssembly">
<!-- this syntax is all good -->
<knownType type="Data`1[System.Int32], MyAssembly"/>
<knownType type="Data`1[System.Int64], MyAssembly"/>
</add>
</declaredTypes>
</dataContractSerializer>
</system.runtime.serialization>
</configuration>
</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><knownType type="Data`1[[System.Int32, mscorlib]], MyAssembly"/>
</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<TKey>
{...}
</code></pre>
<p>By default, the name generated for the Data<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#9496460Answer by baretta for What is the best way to manually parse an XElement into custom objects?baretta2009-06-04T10:08:06Z2009-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#9460884Answer by baretta for C# Automatic Property DeSerialization of JSONbaretta2009-06-03T17:38:33Z2009-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#9282404Answer by baretta for how to add xml namespcesbaretta2009-05-29T21:29:09Z2009-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#9281391Answer by baretta for Cast object to Tbaretta2009-05-29T21:02:30Z2009-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<T>(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#8814744Answer by baretta for C# class to XML (xmlserializaion) problembaretta2009-05-19T07:56:55Z2009-05-19T07:56:55Z<p>Use XmlTextAttribute on StarName property.</p>
http://stackoverflow.com/questions/786832/using-viewstate-across-servers-in-a-farm/786850#7868501Answer by baretta for using viewstate across servers in a farmbaretta2009-04-24T17:30:28Z2009-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-double0WebInvoke/DataContractJsonSerializer, '1,6276' cannot be parsed as 'double'.baretta2009-04-03T16:04:19Z2009-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#6317580Answer by baretta for how to do location based searchbaretta2009-03-10T18:53:53Z2009-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-processing1Implement ASP.NET MVC View Engine for pre-processingbaretta2009-02-26T19:21:21Z2009-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#6223514Answer by baretta for Setup IIS in localhost as web development serverbaretta2009-03-07T19:33:54Z2009-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#6166610Answer by baretta for How can return reference to Dictionary from a method as readonly?baretta2009-03-05T21:18:43Z2009-03-05T21:27:22Z<p>Expose an enumeration(IEnumerable).</p>
<p><em>Edit:</em> Example:</p>
<pre><code>class A : IEnumerable<B>
{
...
public IEnumerator<B> GetEnumerator ( )
{
return _dictionary.GetEnumerator ( );
}
private Dictionary<B> _dictionary;
}
</code></pre>
http://stackoverflow.com/questions/604031/what-is-the-first-last-week-of-a-month/604049#6040491Answer by baretta for What is the first/last week of a month?baretta2009-03-02T21:22:02Z2009-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#6034380Answer by baretta for Why does Visual Studio 2008™ crash?baretta2009-03-02T18:31:54Z2009-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#5932185Answer by baretta for What is the default Precision and Scale for a Number in Oracle?baretta2009-02-27T01:37:02Z2009-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#5983491Answer by baretta for Can you view the XML generated by .Net when using a JavaWS service?baretta2009-02-28T17:30:25Z2009-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#5948991Answer by baretta for how to retrive values from 100 Textbox using loopsbaretta2009-02-27T14:10:53Z2009-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#5948590Answer by baretta for How to crack an Excel workbook that looks up values?baretta2009-02-27T13:59:28Z2009-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#5927382Answer by baretta for Overriding int on a bit enumbaretta2009-02-26T22:25:03Z2009-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#5926500Answer by baretta for Javascript Variable Variablesbaretta2009-02-26T22:01:59Z2009-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#5923861Answer by baretta for How to require a valid username + password using WCF (without Transport Security)baretta2009-02-26T20:51:40Z2009-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#5911641Answer by baretta for Can I add a <br/> and links to a javascript alert?baretta2009-02-26T15:58:04Z2009-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#5876101Answer by baretta for How to put in text when using XElement.baretta2009-02-25T20:03:42Z2009-02-25T20:03:42Z<p>You could also try using numbered entities, they need no declaration.
Numbered entity equivalent to the named entity &nbsp; is &#160;</p>
http://stackoverflow.com/questions/587510/how-to-detect-if-an-aspx-page-was-called-from-server-execute/587550#5875500Answer by baretta for How to detect if an aspx page was called from Server.Execute?baretta2009-02-25T19:51:33Z2009-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#5875071Answer by baretta for Handling Hierarchy Data in Databasebaretta2009-02-25T19:44:42Z2009-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#5871870Answer by baretta for VB.NET and OOP - Shared Methods and Base Propertiesbaretta2009-02-25T18:18:06Z2009-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#5871820Answer by baretta for Specify the assembly explicitly?baretta2009-02-25T18:15:49Z2009-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-genericComment by baretta on How to specify a WCF known type in config that is generic?baretta2009-07-03T16:20:42Z2009-07-03T16:20:42ZYeah, I know! :) I edited my answer http://stackoverflow.com/questions/714594/webinvoke-datacontractjsonserializer-1-6276-cannot-be-parsed-as-doubleComment by baretta on WebInvoke/DataContractJsonSerializer, '1,6276' cannot be parsed as 'double'.baretta2009-04-03T16:41:26Z2009-04-03T16:41:26ZThis is the service client: <a href="http://www.codeproject.com/KB/WCF/GeoNames-WCFClient.aspx" rel="nofollow">codeproject.com/KB/WCF/…</a>
A user of this component first discovered this bug, read the Derserialization Error thread at the bottom. Thankshttp://stackoverflow.com/questions/592022/implement-asp-net-mvc-view-engine-for-pre-processing/627686#627686Comment by baretta on Implement ASP.NET MVC View Engine for pre-processingbaretta2009-03-09T20:14:54Z2009-03-09T20:14:54Zthx 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#594859Comment by baretta on How to crack an Excel workbook that looks up values?baretta2009-02-27T14:55:58Z2009-02-27T14:55:58ZIn Excel 2007, if you mark a column and choose Filter->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 outhttp://stackoverflow.com/questions/592630/javascript-variable-variablesComment by baretta on Javascript Variable Variablesbaretta2009-02-26T22:11:59Z2009-02-26T22:11:59ZYea 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#587550Comment by baretta on How to detect if an aspx page was called from Server.Execute?baretta2009-02-25T22:59:31Z2009-02-25T22:59:31Zin 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#575898Comment by baretta on Why does my C# client, POSTing to my WCF REST service, return (400) Bad Request?baretta2009-02-22T23:38:48Z2009-02-22T23:38:48Zyea 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#574857Comment by baretta on How to impement an event which can be canceled?baretta2009-02-22T12:45:04Z2009-02-22T12:45:04Zworth downvoting?http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/273046#273046Comment by baretta on What is your best programmer joke?baretta2009-02-21T20:46:00Z2009-02-21T20:46:00Zyea 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#570528Comment by baretta on ASP.NET / C#: DropDownList SelectedIndexChanged in server control not firingbaretta2009-02-20T17:39:53Z2009-02-20T17:39:53ZYeah, or preferably in override CreateChildControlshttp://stackoverflow.com/questions/557459/name-this-pattern/557510#557510Comment by baretta on Name this patternbaretta2009-02-17T19:36:06Z2009-02-17T19:36:06ZI 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 herehttp://stackoverflow.com/questions/557459/name-this-pattern/557510#557510Comment by baretta on Name this patternbaretta2009-02-17T18:04:32Z2009-02-17T18:04:32ZYou are right, I really don't see that...http://stackoverflow.com/questions/557459/name-this-pattern/557510#557510Comment by baretta on Name this patternbaretta2009-02-17T17:19:50Z2009-02-17T17:19:50Z@sjbotha: For tracking users online, you could consider using the database, or session statehttp://stackoverflow.com/questions/557459/name-this-pattern/557510#557510Comment by baretta on Name this patternbaretta2009-02-17T16:24:10Z2009-02-17T16:24:10ZI 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#553180Comment by baretta on How to Access a Local Resource in a Theme from an ASP.net Page?baretta2009-02-16T14:50:36Z2009-02-16T14:50:36ZI 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.