User jhunter - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T17:38:02Zhttp://stackoverflow.com/feeds/user/51709http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1670004/webservice-with-security-headers1Webservice with security headersjhunter2009-11-03T20:39:28Z2009-11-04T03:51:34Z
<p>I'm trying to consume a third party webservice (from the Component Interface in Peoplesoft), but in order to authenticate I have to have a header that looks like this:</p>
<pre><code><soapenv:Header xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<wsse:Security soap:mustUnderstand="1" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:UsernameToken>
<wsse:Username>X</wsse:Username>
<wsse:Password>X</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</soapenv:Header>
</code></pre>
<p>I added a block to the web.config file in my app that's trying to use the webservice as follows:</p>
<pre><code><system.serviceModel>
<client>
<header>
<endpoint>
<wsse:Security soap:mustUnderstand="1" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:UsernameToken>
<wsse:Username>X</wsse:Username>
<wsse:Password>X</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</endpoint>
</header>
</client>
</system.serviceModel>
</code></pre>
<p>But the header still doesn't appear in the XML request to the webservice.</p>
<p>Am I even on the right track?</p>
http://stackoverflow.com/questions/1369323/webservice-returning-text-plain-whern-text-xml-is-expected0Webservice returning text/plain whern text/xml is expected?jhunter2009-09-02T18:17:59Z2009-09-02T19:12:02Z
<p>I need to use People Soft's component interface in order to communicate with People Soft. I can't find any sort of documentation for this so I'm having to go off an old version of software in house that interfaces with an old version of People Soft to learn it.</p>
<p>The People Soft people I work with also don't know anything about the Component Interface, but but they have evidently set up some web services with and given me the wsdl files. I've got it set up in VS2k8 and wrote a little application to try calling a webservice to see if it works. I get this message:</p>
<blockquote>
<p>Client found response content type of
'text/plain; charset=UTF-8', but
expected 'text/xml'.</p>
</blockquote>
<p>Googling it hasn't given me much help. I asked the PS guys to look through the settings and see if there is a way to change the output, but they say they don't see anything like that in there.</p>
<p>The address I got from the WSDL for the webservice is http:///PeopleSoftServiceListeningConnector when I just put that address in a web browser I get what looks like SOAP xml with "IBRequest:getInfoXMLString(). ExternalOperationName is a required field." in faultstring tags.</p>
<p>Any insight into this problem would be great. I don't know if I'm just doing it wrong or PS isn't configured properly and I'm really just fumbling in the dark. Hell even if you just know where there is PS Component Interface documentation hidden somewhere that would be great.</p>
<p>EDIT:
After following Jon Skeet's advice to use fiddler I have this as the response from the webservice:</p>
<pre><code><?xml version="1.0"?>
<IBInfo>
<Status>
<StatusCode>20</StatusCode>
<MsgSet>158</MsgSet>
<MsgID>10409</MsgID>
<DefaultTitle>Integration Gateway Error</DefaultTitle>
</Status>
</IBInfo>
</code></pre>
http://stackoverflow.com/questions/1015115/web-config-override-doesnt-affect-user-controls1Web.config override doesn't affect user controls.jhunter2009-06-18T20:47:08Z2009-06-19T23:06:22Z
<p>I have a sub folder that has an aspx page and a web.config file that overrides a connection string in the web.config in the root directory. The problem is if the aspx page contains any user controls the user controls still get the connection string from the web.config in the root directory. Is there anyway to force them to use the web.config that the parent aspx page uses?</p>
http://stackoverflow.com/questions/926481/form-tag-on-asp-net-page2Form tag on ASP.net pagejhunter2009-05-29T15:07:00Z2009-06-16T18:38:48Z
<p>I have a web application that has a page that loads the content from the database. I want to be able to put a form in the dynamic content, but .net doesn't let the inside form perform it's action. Is there a way to allow this or some other way I can get a form on a dynamic content page?</p>
<p>Thanks.</p>
<p>--EDIT--</p>
<p>I think I need to clarify something. This is an aspx page that loads content from the database. As far as I know, the text I pull from the db and stick in the Label is never compiled or processed by the .net wp, thus I can't use the code behind to fix this issue.</p>
http://stackoverflow.com/questions/916711/webmethod-receives-null-in-parameters0WebMethod receives null in parametersjhunter2009-05-27T16:23:42Z2009-05-27T18:22:44Z
<p>I have a webservice with a method that has two string parameters. When I'm debugging I can see in my calling method where it passes two string values into the method, but the actualy WebMethod just gets null for both values. Here is some code:</p>
<p>WebMethod</p>
<pre><code>[WebMethod(Description = "Set username and password for validation purposes.")]
public void Login(string uname, string pword)
{
username = uname;
password = pword;
}
</code></pre>
<p>Calling Method</p>
<pre><code>NewsletterEmailSubscribers nes = new NewsletterEmailSubscribers();
nes.Login("Username", "Password");
</code></pre>
<p>What am I doing wrong here?</p>
<p>--EDIT--</p>
<p>Adding more code.</p>
<p>The web service:</p>
<pre><code>[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
public class NewsletterEmailSubscribers : WebService
{
private static string username, password;
public NewsletterEmailSubscribers()
{
}
/// <summary>
/// Logins the specified username.
/// </summary>
/// <param name="username">The username.</param>
/// <param name="password">The password.</param>
[WebMethod(Description = "Set username and password for validation purposes.")]
public void Login(string uname, string pword)
{
username = uname;
password = pword;
}
/// <summary>
/// Adds subscriber email account.
/// </summary>
/// <param name="emailAddress">The email address</param>
/// <param name="newsletterType">The newsletter they have signed up to receive</param>
/// <param name="validationCode">The validation code</param>
[WebMethod(Description = "Initial add of subscriber email address and newsletter signing up for.")]
public void AddSubscriber(
string emailAddress,
string newsletterType,
string validationCode)
{
// Check some values
//Authenticate user, will throw exception if the user is invalid
using (SOAValidation validation = new SOAValidation())
{
validation.ValidateConnection(validationCode, username, password, "Full");
}
OracleParameterCollection parameters = new OracleParameterCollection();
parameters.AddWithValue("subscriber_email", emailAddress);
parameters.AddWithValue("newsletter_type", newsletterType);
Database.ExecuteQuery("dw.newsletter_pkg.newsletter_subscriber_add", parameters);
}
}
</code></pre>
<p>Webpage using the service (NewsletterEmailSubscribers)</p>
<pre><code>private void SubmitEmail(string email)
{
if (ValidateEmail(email))
{
try
{
NewsletterEmailSubscribers nes = new NewsletterEmailSubscribers();
nes.Login("Username", "Password");
string validationCode;
using (Cokesbury.RemoteValidation.Validator validator = new Cokesbury.RemoteValidation.Validator())
{
validationCode = validator.ValidationCode(System.Configuration.ConfigurationManager.AppSettings["PasswordSalt"].ToString());
}
// submit to db
nes.AddSubscriber(email, "FICT", validationCode);
// Switch to confirm message
mvPage.SetActiveView(vwThankYou);
}
catch (Exception ex)
{
mvPage.SetActiveView(vwFail);
bool rethrow = ExceptionPolicy.HandleException(ex, "Presentation Services Exception Policy");
if (rethrow)
{
throw (ex);
}
}
}
else
lblEmailError.Visible = true;
}
</code></pre>
http://stackoverflow.com/questions/848679/reading-a-binary-file-and-using-response-binarywrite2Reading a binary file and using Response.BinaryWrite()jhunter2009-05-11T15:35:11Z2009-05-11T18:15:44Z
<p>I have an app that needs to read a PDF file from the file system and then write it out to the user. The PDF is 183KB and seems to work perfectly. When I use the code at the bottom the browser gets a file 224KB and I get a message from Acrobat Reader saying the file is damaged and cannot be repaired.</p>
<p>Here is my code (I've also tried using File.ReadAllBytes(), but I get the same thing):</p>
<pre><code>using (FileStream fs = File.OpenRead(path))
{
int length = (int)fs.Length;
byte[] buffer;
using (BinaryReader br = new BinaryReader(fs))
{
buffer = br.ReadBytes(length);
}
Response.Clear();
Response.Buffer = true;
Response.AddHeader("content-disposition", String.Format("attachment;filename={0}", Path.GetFileName(path)));
Response.ContentType = "application/" + Path.GetExtension(path).Substring(1);
Response.BinaryWrite(buffer);
}
</code></pre>
http://stackoverflow.com/questions/774761/writing-out-a-zip-file-doesnt-work-in-ie71Writing out a zip file doesn't work in IE7jhunter2009-04-21T21:42:47Z2009-04-21T21:51:57Z
<p>I have inherited an old application that stores a zip file in a database and needs to retrieve this file. In Firefox is works fine, I can open the zip and each file inside it is fine. When I run it in IE7 I get the following error.</p>
<blockquote>
<p>Internet Explorer cannot download ProductContentFormImage.aspx from localhost.</p>
<p>Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later.</p>
</blockquote>
<p>I am using the code below.</p>
<pre><code>byte[] content = (byte[])Session["contentBinary"];
Response.ClearContent();
Response.ClearHeaders();
Response.Clear();
Response.Buffer = true;
Response.Expires = 0;
Response.ContentType = "application/zip";
Response.AddHeader("Content-Length", content.Length.ToString());
Response.AddHeader("Content-Disposition", "attachment; filename=content.zip");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.BinaryWrite(content);
Response.End();
</code></pre>
http://stackoverflow.com/questions/630682/aspx-page-response-binarywrite-image-on-ie7/723090#7230900Answer by jhunter for .aspx page Response.BinaryWrite image on IE7jhunter2009-04-06T20:30:47Z2009-04-06T20:30:47Z<p>The image was corrupted in a way that IE7 could not display it, but Firefox could. The image was large it wouldn't fit on the screen and I didn't see where it was cut off.</p>
<p>Thanks for all your suggestions.</p>
http://stackoverflow.com/questions/630682/aspx-page-response-binarywrite-image-on-ie70.aspx page Response.BinaryWrite image on IE7jhunter2009-03-10T15:04:43Z2009-04-06T20:30:47Z
<p>I maintain an application that has a .aspx page that loads on image from the database and uses Response.BinaryWrite() to write it back to the client. This worked perfectly not long ago. Two things have changed, we upgraded the application to .NET 3.5 and they upgraded all the computers at work to IE7.</p>
<p>Everything works fine on Firefox, but all I get in IE7 is a red X. So I assume this issue is related to IE7? Is there a security setting somewhere that would stop it from loading images from a .aspx form? It's already set to display based on the content type and not the extension.</p>
<p>Here is some of the code. Like I said, I just maintain this app and didn't write it. I know using Session is not a great way of doing it, but it's what I have and the switch statement is just a "wtf?".</p>
<pre><code><asp:image id="imgContent" runat="server" Visible="true" ImageUrl="ProductContentFormImage.aspx"></asp:image>
protected void Page_Load(object sender, System.EventArgs e)
{
Hashtable hshContentBinary = (Hashtable)Session["hshContentBinary"];
byte[] content = (byte[]) hshContentBinary["content"];
string extension = (string) hshContentBinary["extension"];
string contentTypePrefix = "application";
switch(extension.ToLower())
{
case "gif":
case "jpg":
case "bmp":
contentTypePrefix = "image";
break;
case "tif":
contentTypePrefix = "image";
break;
case "tiff":
contentTypePrefix = "image";
break;
case "eps":
contentTypePrefix = "image";
break;
default:
Response.AppendHeader(
"Content-disposition",
"attachment; filename=content." + extension );
break;
}
Response.ContentType = contentTypePrefix + "/" + extension;
Response.BinaryWrite(content);
}
</code></pre>
<p>EDIT:</p>
<p>OK, I followed your suggestions and through a little more research I have changed the method to the following, but it still doesn't work.</p>
<pre><code>protected void Page_Load(object sender, System.EventArgs e)
{
Hashtable hshContentBinary = (Hashtable)Session["hshContentBinary"];
byte[] content = (byte[]) hshContentBinary["content"];
string extension = (string) hshContentBinary["extension"];
string contentType;
string contentDisposition = "inline; filename=content." + extension;
Response.ClearContent();
Response.ClearHeaders();
Response.Clear();
switch(extension.ToLower())
{
case "gif":
contentType = "image/gif";
break;
case "jpg":
case "jpe":
case "jpeg":
contentType = "image/jpeg";
break;
case "bmp":
contentType = "image/bmp";
break;
case "tif":
case "tiff":
contentType = "image/tiff";
break;
case "eps":
contentType = "application/postscript";
break;
default:
contentDisposition = "attachment; filename=content." + extension;
contentType = "application/" + extension.ToLower();
break;
}
Response.Buffer = true;
Response.Expires = 0;
Response.ContentType = contentType;
Response.AddHeader("Content-Length", content.Length.ToString());
Response.AddHeader("Content-disposition", contentDisposition);
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.BinaryWrite(content);
Response.End();
}
</code></pre>
http://stackoverflow.com/questions/558592/ajax-net-and-listboxes0AJAX.NET and ListBoxesjhunter2009-02-17T20:32:05Z2009-02-17T20:47:20Z
<p>I have an UpdatePanel with two ListBoxes in them. What I want to happen is that when the page loads the first ListBox fills with some data. When the user selects and item the second ListBox should be populated with the pertinent data.</p>
<p>Here is what happens, the first ListBox is filled with data, the user selects an item and the SelectedIndexChanged event fires, but the selection gets cleared before method can see which item was selected?</p>
<pre><code><asp:UpdatePanel ID="UpdatePanel2" runat="server">
<ContentTemplate>
<table class="listBoxTable">
<thead>
<tr>
<th>
Please select a magazine to add articles to.</th>
</tr>
</thead>
<tr>
<td>
<asp:ListBox ID="lbMagazines" runat="server" Height="300px" Width="250px"
onselectedindexchanged="lbMagazines_SelectedIndexChanged" DataTextField="Title"
DataValueField="Id" AutoPostBack="True">
</asp:ListBox>
</td>
<td>
<asp:ListBox ID="lbIssues" runat="server" Height="300px" Width="250px"
Enabled="False" DataTextField="Title" DataValueField="Id">
</asp:ListBox>
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>
</code></pre>
http://stackoverflow.com/questions/547457/when-i-add-an-option-to-a-select-the-select-gets-narrower/554219#5542190Answer by jhunter for When I add an option to a select the select gets narrower.jhunter2009-02-16T19:08:00Z2009-02-16T19:08:00Z<p>The issue was where the Option was being added to the Select I changed it to the following and it works perfectly:</p>
<pre><code>function addValueClick()
{
var newValue = prompt("Please enter a new value.","");
if (newValue != null && newValue != "")
{
var lst = document.getElementById("lstValues");
var opt = document.createElement("option");
opt.text = newValue;
opt.value = newValue;
try {
lst.add(opt, null); // real browsers
}
catch (ex) {
lst.add(opt); // IE
}
updateBtns();
copyValues();
}
}
</code></pre>
http://stackoverflow.com/questions/547457/when-i-add-an-option-to-a-select-the-select-gets-narrower1When I add an option to a select the select gets narrower.jhunter2009-02-13T20:03:16Z2009-02-16T19:08:00Z
<p>Inherited an app with a page that has a link that calls the javascript function addValueClick(), when I do this a dialog box pops up, I type in some text, and then the text gets put in the select box. Every time a new option is added to the select it gets about 5 pixels narrower. I can't figure out why this is happening, but it only happens in IE7</p>
<p>Here is the javascript:</p>
<pre><code>function addValueClick()
{
var newValue = prompt("Please enter a new value.","");
if (newValue != null && newValue != "")
{
var lst = document.getElementById("lstValues");
var opt = document.createElement("option");
opt.setAttribute("selected", "true");
opt.appendChild(document.createTextNode(newValue));
lst.appendChild(opt);
updateBtns();
copyValues();
}
}
function copyValues()
{
var frm = document.forms[0];
var lst = frm.elements["lstValues"];
var hid = frm.elements["hidValues"];
var xml = "<root>";
for (var i = 0; i < lst.options.length; i++)
{
xml += "<value seq_num=\"" + (i + 1) + "\">" +
lst.options[i].text + "</value>";
}
xml += "</root>";
hid.value = xml;
}
function updateBtns()
{
var lst = document.getElementById("lstValues");
var iSelected = lst.selectedIndex;
var lnkEdit = document.getElementById("lnkEditValue");
var lnkDelete = document.getElementById("lnkDeleteValue");
var lnkUp = document.getElementById("lnkValueUp");
var lnkDown = document.getElementById("lnkValueDown");
if (iSelected == -1)
{
lnkEdit.style.visibility = "hidden";
lnkDelete.style.visibility = "hidden";
lnkUp.style.visibility = "hidden";
lnkDown.style.visibility = "hidden";
}
else
{
lnkEdit.style.visibility = "visible";
lnkDelete.style.visibility = "visible";
if (iSelected == 0)
lnkUp.style.visibility = "hidden";
else
lnkUp.style.visibility = "visible";
if (iSelected == lst.options.length - 1)
lnkDown.style.visibility = "hidden";
else
lnkDown.style.visibility = "visible";
}
}
</code></pre>
<p>EDIT:
The HTML, it's actually ASP.NET. All the listValueChanged() method does is call updateButtons() above.</p>
<pre><code><tr>
<TD class=body vAlign=top noWrap align=right><b>Values:</TD>
<TD class=body vAlign=top noWrap align=left><asp:ListBox id="lstValues" runat="server" onchange="lstValuesChange();" Rows="9" onselectedindexchanged="lstValues_SelectedIndexChanged"></asp:ListBox></TD>
<TD class=body vAlign=top noWrap align=left>
<TABLE id="Table2" cellSpacing="2" cellPadding="2" border="0">
<TR>
<TD noWrap>
<asp:HyperLink id="lnkAddValue" runat="server" NavigateUrl="javascript:addValueClick();">Add</asp:HyperLink></TD>
</TR>
<TR>
<TD noWrap>
<asp:HyperLink id="lnkEditValue" runat="server" NavigateUrl="javascript:editValueClick();">Edit</asp:HyperLink></TD>
</TR>
<TR>
<TD noWrap>
<asp:HyperLink id="lnkDeleteValue" runat="server" NavigateUrl="javascript:deleteValueClick();">Delete</asp:HyperLink></TD>
</TR>
<TR>
<TD noWrap>&nbsp;</TD>
</TR>
<TR>
<TD noWrap>
<asp:HyperLink id="lnkValueUp" runat="server" NavigateUrl="javascript:valueUpClick();">Up</asp:HyperLink></TD>
</TR>
<TR>
<TD noWrap>
<asp:HyperLink id="lnkValueDown" runat="server" NavigateUrl="javascript:valueDownClick();">Down</asp:HyperLink></TD>
</TR>
</TABLE>
</TD>
</TR>
</code></pre>
http://stackoverflow.com/questions/547430/c-string-wont-concatenate/547435#5474355Answer by jhunter for C# string won't concatenatejhunter2009-02-13T19:56:03Z2009-02-13T19:56:03Z<p>Are you assigning it to a string or back to itself?</p>
<pre><code>returndata = string.Concat(returndata, "test");
returndata += "test";
</code></pre>
http://stackoverflow.com/questions/503651/object-architecture-design-question/503701#503701-1Answer by jhunter for Object Architecture Design Questionjhunter2009-02-02T15:58:07Z2009-02-02T15:58:07Z<p>I would make group a property of Section. Then you can add properties for group1, group2, etc on Parent using LINQ to query the collection an return only those in each group (if you need to be able to do that).</p>
http://stackoverflow.com/questions/482381/why-c-get-so-related-with-net-framework/482386#4823863Answer by jhunter for Why C# get so related with .NET framework?jhunter2009-01-27T05:21:08Z2009-01-27T05:21:08Z<p>It's the most popular language used with .NET.</p>
http://stackoverflow.com/questions/448293/just-out-of-school-plenty-of-opportunities-but-no-actual-bites/448385#4483850Answer by jhunter for Just out of school, plenty of opportunities but no actual bitesjhunter2009-01-15T20:42:02Z2009-01-15T20:42:02Z<p>It took me over a year to get a real computer job. The first one is tough, but after that it is usually pretty easy to get a new job in the field.</p>
http://stackoverflow.com/questions/429202/why-are-children-of-my-custom-user-control-not-being-initialized/429311#4293110Answer by jhunter for Why are children of my custom user-control not being initialized?jhunter2009-01-09T19:13:46Z2009-01-09T19:13:46Z<p>Are you setting the HRef on the Page's OnInit method? If so try moving the assignment out to Page_Load.</p>
<p>The controls Init from the outermost to the inner most. This means if you do assign the value on the Page's OnInit the controls haven't initialized yet.</p>
<p>Here is a decent document on page lifecycle:
<a href="http://www.codeproject.com/KB/aspnet/lifecycle.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/lifecycle.aspx</a></p>
http://stackoverflow.com/questions/428924/winforms-unceremoniously-quits-with-unhandled-exception0Winforms unceremoniously quits with "unhandled exception"jhunter2009-01-09T17:22:15Z2009-01-09T17:34:34Z
<p>The program spits up one of those boxes saying an unhandled exception has occurred and the application must quit. The only clue I get to solve the problem is this in the event log:</p>
<blockquote>
<p>Event Type: Error
Event Source: .NET Runtime 2.0 Error Reporting
Event Category: None
Event ID: 5000
Date: 1/9/2009
Time: 8:47:44 AM
User: N/A
Computer: DADIEHL
Description:
EventType clr20r3, P1 crm.client.exe, P2 1.0.1.0, P3 49667f61, P4 mscorlib, P5 2.0.0.0, P6 471ebc5b, P7 c35, P8 59, P9 system.formatexception, P10 NIL.</p>
</blockquote>
<p>So I added the following code to program.cs:</p>
<pre><code>try
{
Application.Run(new WindowContainer());
}
catch (Exception exc)
{
new DialogException(exc).ShowDialog();
}
</code></pre>
<p>Just so I could catch any exception, but the users are still getting the same message that says the app has to quit. I cannot reproduce this on my computer and thus can't use the debugger to narrow it down. Does anyone know of a way to collect more information or have any ideas what the issue is?</p>
http://stackoverflow.com/questions/419774/how-can-you-stop-a-winforms-panel-from-scrolling/421094#4210941Answer by jhunter for How can you stop a Winforms Panel from scrolling?jhunter2009-01-07T16:54:26Z2009-01-07T16:54:26Z<p>I understand your pain, this has gotten me more than once.</p>
<p>If your DataGridView is the only thing in the panel, just set the Dock to Fill and let the DGV handle scrolling on it's own. I don't think it will do the jumping thing anymore. Otherwise, I guess you could just size it so it's less than the panel and let it do the scrolling on it's own.</p>
http://stackoverflow.com/questions/417677/capitalizing-word-in-a-string/417686#4176860Answer by jhunter for Capitalizing word in a stringjhunter2009-01-06T18:49:50Z2009-01-06T18:49:50Z<p>Use string.Split(' ') to break up the sentence into a bunch of words than use the code you have to capitalize each word... then put it all back together.</p>
http://stackoverflow.com/questions/417087/c-how-do-i-run-some-code-for-the-selected-item-in-a-listbox/417120#4171201Answer by jhunter for C# How do I run some code for the selected item in a listbox?jhunter2009-01-06T16:09:13Z2009-01-06T16:09:13Z<p>The listbox isn't very intuitive because it contains objects instead of something like ListItem, but if you just want the text you can do this:</p>
<pre><code>string selectedText = listbox1.SelectedItem.ToString();
</code></pre>
http://stackoverflow.com/questions/414109/should-a-net-generic-dictionary-be-initialised-with-a-capacity-equal-to-the-numb/414155#4141554Answer by jhunter for Should a .NET generic dictionary be initialised with a capacity equal to the number of items it will contain?jhunter2009-01-05T19:10:21Z2009-01-05T19:10:21Z<p>I did a quick test, probably not scientific, but if I set the size it took 1.2207780 seconds to add one million items and it took 1.5024960 seconds to add if I didn't give the Dictionary a size... this seems negligible to me.</p>
<p>Here is my test code, maybe someone can do a more rigorous test but I doubt it matters.</p>
<pre><code>static void Main(string[] args)
{
DateTime start1 = DateTime.Now;
var dict1 = new Dictionary<string, string>(1000000);
for (int i = 0; i < 1000000; i++)
dict1.Add(i.ToString(), i.ToString());
DateTime stop1 = DateTime.Now;
DateTime start2 = DateTime.Now;
var dict2 = new Dictionary<string, string>();
for (int i = 0; i < 1000000; i++)
dict2.Add(i.ToString(), i.ToString());
DateTime stop2 = DateTime.Now;
Console.WriteLine("Time with size initialized: " + (stop1.Subtract(start1)) + "\nTime without size initialized: " + (stop2.Subtract(start2)));
Console.ReadLine();
}
</code></pre>
http://stackoverflow.com/questions/413653/why-does-150-150-not-equal-300-in-browsers/413660#41366021Answer by jhunter for Why does 150 + 150 not equal 300 in browsers?jhunter2009-01-05T16:23:49Z2009-01-05T16:23:49Z<p>There is a border on a textbox that isn't included in the width.</p>
http://stackoverflow.com/questions/413623/is-possible-to-obtain-the-csv-separator-from-thread-currentthread-currentculture/413634#4136347Answer by jhunter for Is possible to obtain the CSV separator from Thread.CurrentThread.CurrentCulture? (.NET)jhunter2009-01-05T16:15:16Z2009-01-05T16:15:16Z<p>System.Globalization.CultureInfo.CurrentCulture.TextInfo.ListSeparator</p>
<p>Is the only way I know how.</p>
http://stackoverflow.com/questions/1670004/webservice-with-security-headers/1670021#1670021Comment by jhunter on Webservice with security headersjhunter2009-11-03T20:56:31Z2009-11-03T20:56:31ZNone of the above as far as I know. I added a web reference in Visual Studio 2008 (.NET 3.5).http://stackoverflow.com/questions/1369323/webservice-returning-text-plain-whern-text-xml-is-expected/1369406#1369406Comment by jhunter on Webservice returning text/plain whern text/xml is expected?jhunter2009-09-02T19:12:51Z2009-09-02T19:12:51ZThanks for the suggestion, Fiddler will definitely be useful here (and in the future). I have updated question text with what fiddler has shown me.http://stackoverflow.com/questions/1074958/wrong-type-returned-by-peoplesoft-component-interface/1075587#1075587Comment by jhunter on Wrong type returned by Peoplesoft Component Interfacejhunter2009-07-21T18:18:40Z2009-07-21T18:18:40ZHow do I set .NET to use Http-Get?t I just clicked on add webrefernce to add it to the project then used the objects like normal.http://stackoverflow.com/questions/916711/webmethod-receives-null-in-parameters/917272#917272Comment by jhunter on WebMethod receives null in parametersjhunter2009-05-27T19:32:56Z2009-05-27T19:32:56ZThat was it, thanks a bunch.http://stackoverflow.com/questions/848679/reading-a-binary-file-and-using-response-binarywriteComment by jhunter on Reading a binary file and using Response.BinaryWrite()jhunter2009-05-12T19:35:18Z2009-05-12T19:35:18ZAfter I get the file back I checked the size, I was forgetting to put a Response.End() on there as pointed out by BarneyHDog.http://stackoverflow.com/questions/558592/ajax-net-and-listboxes/558633#558633Comment by jhunter on AJAX.NET and ListBoxesjhunter2009-02-17T20:55:06Z2009-02-17T20:55:06ZWow, what a newbie mistake. I didn't think the Page_load event would fire on AJAX call backs. Thanks a bunch.http://stackoverflow.com/questions/547457/when-i-add-an-option-to-a-select-the-select-gets-narrowerComment by jhunter on When I add an option to a select the select gets narrower.jhunter2009-02-13T21:31:18Z2009-02-13T21:31:18ZNo, this is an old application written by someone else, there is very little in the way of CSS.http://stackoverflow.com/questions/547457/when-i-add-an-option-to-a-select-the-select-gets-narrower/547578#547578Comment by jhunter on When I add an option to a select the select gets narrower.jhunter2009-02-13T21:30:05Z2009-02-13T21:30:05ZIt's in a table, I included it above.