User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T04:50:28Zhttp://stackoverflow.com/feeds/user/9498http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1672597/change-in-machine-key-causes-ie-login-cookie-to-stop-working0Change in Machine Key causes IE login cookie to stop workingsajid.nizami2009-11-04T09:20:09Z2009-11-04T09:20:09Z
<p>I just moved to new servers and created a new machine key for all servers in the farm. Since then IE has been giving problems with the login cookies and even if the login username and password are correct, it doesn't let the user login. </p>
<p>The only way you can login is by clearing IE8 cache from the IE8 development tools. Is it possible to enforce browsers to accept the new cookie generate and discard their old cookie. </p>
http://stackoverflow.com/questions/1605947/isa-500-error-detection0ISA 500 Error Detectionsajid.nizami2009-10-22T09:06:35Z2009-10-22T09:06:35Z
<p>I wanted to know if it is possible for ISA to detect if a web server is giving out a 500 error and can stop requests to the server. </p>
<p>I found an option for it to check for port 80 and if it doesn't reply, it would stop but no scenario for when an error happens. </p>
<p>Also, in my case I redirect to a specific page to display the error. Can I filter the requests based on the fact that the server redirects to this error page? </p>
http://stackoverflow.com/questions/397562/search-engine-site-map-asp-net0Search Engine Site Map Asp.Netsajid.nizami2008-12-29T11:36:33Z2009-08-31T01:00:01Z
<p>If possible can anyone tell me how can I implement a search engine sitemap with asp.net. My website has content that expires frequently and new stuff comes in, that's why I wanted it updated whenever the search engine crawler comes to my site. </p>
<p>I came across <a href="http://weblogs.asp.net/bleroy/archive/2005/12/02/432188.aspx" rel="nofollow">http://weblogs.asp.net/bleroy/archive/2005/12/02/432188.aspx</a> which tells me that there was a library released by Microsoft year ago which could do exactly what I need. I cannot find it anywhere. Has it been made part of the ASP.Net 3.5 platform? </p>
<p>Are there any other better frameworks or libraries around which I can use for this same purpose? </p>
http://stackoverflow.com/questions/250671/is-it-possible-to-attach-a-workflow-to-a-task-list-on-moss-20070Is it possible to attach a workflow to a task list on MOSS 2007? sajid.nizami2008-10-30T15:43:53Z2009-06-01T12:02:00Z
<p>I have tried but for some reason the workflow is not triggered. </p>
http://stackoverflow.com/questions/905435/paging-on-a-random-items-data-set2Paging on a Random Items Data Setsajid.nizami2009-05-25T05:26:10Z2009-05-25T06:14:22Z
<p>I have to generate a list of items on a website which are random for the session of the user for that particular list of items. </p>
<p>I am going to add a link to demonstrate the problem.
<a href="http://www.logta.com/en/CategoryListing.aspx?locid=2&catid=2&pagesize=10&pageno=1&sort=DiscountedPrice&order=asc" rel="nofollow">WebSite Link</a> </p>
<p>Scenario:
When a user comes in and clicks on the link, the items on the page should be randomized. As the user clicks on page two, three onwards, it should follow the same random pattern that it generated the first time so that when I go back to the first page the items on that page would be same as when the user first clicked on the link. </p>
<p>I did think of bringing out a dataset of all items randomized once and keeping them in session but that is a last resort. </p>
http://stackoverflow.com/questions/535712/linq-resultset-issue0LINQ Resultset Issue sajid.nizami2009-02-11T06:57:21Z2009-02-11T07:21:19Z
<p>I built a site using LINQ and it has started to show issues with the results it brings up. </p>
<p>The results brought out by the query do not reflect the data in the database, they reflect an older version of the database. </p>
<p>In all the places where the LINQ data context was created it was disposed off properly. The sample code used in the site looks like this</p>
<pre><code> using (DataClassesDataContext context = new DataClassesDataContext())
{
return (<query here>).Distinct().ToList();
}
</code></pre>
http://stackoverflow.com/questions/434761/array-versus-listt-when-to-use-which/434777#4347770Answer by sajid.nizami for Array versus List<T>: When to use which?sajid.nizami2009-01-12T08:16:28Z2009-01-12T08:16:28Z<p>It completely depends on the contexts in which the data structure is needed. For example, if you are creating items to be used by other functions or services using List is the perfect way to accomplish it.</p>
<p>Now if you have a list of items and you just want to display them, say on a web page array is the container you need to use. </p>
http://stackoverflow.com/questions/409616/screencasts-vs-articles-which-do-you-prefer/409689#4096894Answer by sajid.nizami for Screencasts vs Articles - which do you prefer?sajid.nizami2009-01-03T19:42:38Z2009-01-03T19:42:38Z<p>I hate screen casts. The fact that when needed you cannot search inside them bothers me. It basically is a loss of information. </p>
<p>I would prefer a screen cast paired with literature so that it is more accessible. </p>
http://stackoverflow.com/questions/171624/linq-benchmarks-in-multitiered-environment0LINQ Benchmarks in multitiered environmentsajid.nizami2008-10-05T07:21:32Z2008-12-10T09:53:11Z
<p>I am involved in development of a tiered application that uses LINQ2SQL separated from the web server with a NET.TCP Binding on WCF. </p>
<p>My questions are: </p>
<ol>
<li>What sort of measures should I take
to achieve the best performance?</li>
<li>Since the entity objects returned by
the LINQ need to be converted to a
IEnumerable list to be serialized
everytime, is there anyway to remove
this dependency?</li>
</ol>
http://stackoverflow.com/questions/336526/is-there-a-library-for-notification-alert-in-net2Is there a library for notification/alert in .NET?sajid.nizami2008-12-03T08:48:54Z2008-12-03T12:35:42Z
<p>I need to design a notifications framework written solely in .Net. I was wondering is there were some libraries already available to ease in creating rules for the notifications. </p>
<p>PS: Anything other than SQL Server Notifications please. </p>
<p>Note: Notifications as in Emails and SMS notifications. </p>
http://stackoverflow.com/questions/246499/database-guy-asks-object-oriented-design-theory/246509#2465090Answer by sajid.nizami for Database Guy Asks: Object-Oriented Design Theory?sajid.nizami2008-10-29T11:51:01Z2008-10-29T11:51:01Z<p>Start reading about design patters, from say Martin Fowler. :) </p>
<p>They are the most practical use of OOP. </p>
http://stackoverflow.com/questions/208641/sharepoint-statemachine-handling-multiple-responses-to-multiple-created-tasks1Sharepoint StateMachine : Handling multiple responses to multiple created taskssajid.nizami2008-10-16T13:49:54Z2008-10-19T02:30:22Z
<p>Hi,</p>
<p>I created a StateMachine workflow for sharepoint and at one state, I create multiple tasks using a replicator. The number of tasks created is variable. </p>
<p>I need to handle the OnTaskChanged event for all the tasks I created which seems impossible as one event handler can only be associated with one task. </p>
<p>I can use a restrictive number of tasks which can be created and handled by a specific number of handlers but I am considering that as a last resort or create a sequential workflow as a last resort. </p>
<p>Please do let me know if this is even supported or if there are any workarounds. </p>
<p>Reference Link: <a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointworkflow/thread/a174ac5f-03ed-4e27-998b-bbdb7d01d09b/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/sharepointworkflow/thread/a174ac5f-03ed-4e27-998b-bbdb7d01d09b/</a></p>
http://stackoverflow.com/questions/205530/xml-authoring-cms-tool/205560#2055600Answer by sajid.nizami for XML authoring/cms toolsajid.nizami2008-10-15T17:03:56Z2008-10-15T17:03:56Z<p>Best I ever used was XML Spy. </p>
<p>Expensive but worth every penny. </p>
<p><a href="http://en.wikipedia.org/wiki/XMLSpy" rel="nofollow">http://en.wikipedia.org/wiki/XMLSpy</a></p>
http://stackoverflow.com/questions/188422/asp-net-multi-language-website/188438#1884380Answer by sajid.nizami for ASP.NET multi language website?sajid.nizami2008-10-09T18:04:44Z2008-10-09T18:04:44Z<p>Another solution I am using is to create the language folders which contain the aspx pages containing all the required text in that particular language. </p>
<p>The only problem here is how can you inject as little code as possible into those replicating pages. I am using a controller pattern here to do this, and then a object data source to get the data and bind it to the controls in all pages. </p>
<p>In this way I have achieved the goal of getting rid of the resource files and I can keep the code behind in one place without replicating it (unless necessary). </p>
<p>Edit: I would recommend a good CMS framework as well. </p>
http://stackoverflow.com/questions/188346/do-you-personally-identify-with-your-code/188418#1884181Answer by sajid.nizami for Do you personally identify with your code?sajid.nizami2008-10-09T17:59:10Z2008-10-09T17:59:10Z<p>I have been bitten by this.Regardless of the technology I suppose the working deliverable, the final object should be considered. </p>
<p>i used to be a very adamant about using Sharepoint in the enterprise, and the truth is that in some conditions the beast doesn't work. </p>
<p>I would agree to what Bill said. </p>
<p>Right now I believe, rather than having to identify with a set of languages and products, a person should invest and learn how to better implement, how to find good design patterns for common problems. I do not think this will ever go out of fashion. </p>
http://stackoverflow.com/questions/188199/how-to-disable-superfetch/188207#1882070Answer by sajid.nizami for How to disable superfetchsajid.nizami2008-10-09T17:01:28Z2008-10-09T17:01:28Z<p><a href="http://www.howtogeek.com/howto/windows-vista/how-to-disable-superfetch-on-windows-vista/">http://www.howtogeek.com/howto/windows-vista/how-to-disable-superfetch-on-windows-vista/</a></p>
<p>Should help. </p>
http://stackoverflow.com/questions/187989/method-parameters-value-through-reflection/188187#1881870Answer by sajid.nizami for Method parameters value through Reflectionsajid.nizami2008-10-09T16:57:16Z2008-10-09T16:57:16Z<p>@ Sean: This seems promising, Is it possible to intercept and get values like that in WCF? I know the service log already contains that information but it is difficult to dig through it which makes me look for alternative ways to log methods and their parameters. </p>
http://stackoverflow.com/questions/187989/method-parameters-value-through-reflection0Method parameters value through Reflectionsajid.nizami2008-10-09T16:11:18Z2008-10-09T16:57:16Z
<p>I am trying to log a method's parameters by using reflection. I read the <a href="http://stackoverflow.com/questions/168396/capturing-method-state-using-reflection">earlier question</a> posted about this issue on StackOverflow as well which pointed me to CLR API's. </p>
<p>Is it possible, someone can point me to the right direction, as to how will I get the values of parameters passed using API? </p>
http://stackoverflow.com/questions/179264/what-is-the-optimum-limit-for-url-length-100-2004What is the optimum limit for URL length? 100, 200+ sajid.nizami2008-10-07T16:17:52Z2008-10-08T03:50:27Z
<p>I have an ASP.Net 3.5 platform and windows 2003 server with all the updates. </p>
<p>There is a limit with .Net that it cannot handle more than <a href="http://forums.iis.net/p/1105360/1689855.aspx" rel="nofollow">260 characters</a>. Moreover if you look it up on web, you will find that IE 6 fails to work if it is not patched at above 100 charcters. </p>
<p>I want to have the rewrite path module to be supported on maximum number of browsers, so I am looking for an acceptable limit to which I can create verbose URL's.</p>
http://stackoverflow.com/questions/179428/how-do-i-make-a-tag-cloud-in-asp-net/179463#1794630Answer by sajid.nizami for How do I make a tag cloud in ASP.NET?sajid.nizami2008-10-07T17:10:58Z2008-10-07T17:10:58Z<p>I hope this would help. </p>
<p><a href="http://aspnet.4guysfromrolla.com/articles/102506-1.aspx" rel="nofollow">http://aspnet.4guysfromrolla.com/articles/102506-1.aspx</a></p>
http://stackoverflow.com/questions/179368/bad-database-design-is-my-table-too-large/179410#1794100Answer by sajid.nizami for Bad Database Design - Is my table too large?sajid.nizami2008-10-07T16:54:53Z2008-10-07T16:54:53Z<p>If you are talking about SQL Server 2005, look into SQL Server profiler and use Index Tuning wizard. </p>
<p>There is also support in some databases for table pinning to memory if you want additional performance. </p>
http://stackoverflow.com/questions/175649/one-entity-shared-across-two-web-services/175772#1757720Answer by sajid.nizami for One entity shared across two web services?sajid.nizami2008-10-06T19:19:59Z2008-10-06T19:19:59Z<p>Can you check the namespace of the entity? Make sure it is the same in both the web services. </p>
http://stackoverflow.com/questions/81104/net-numerictextbox/81421#814210Answer by sajid.nizami for .NET NumericTextBox sajid.nizami2008-09-17T09:20:37Z2008-09-17T09:20:37Z<p>You can also, derive the TextBox class and grab the keypad event and ensure nothing other than numbers is written. </p>
<p>If it were a Web page, the same would have been done to an html text box using Javascript. </p>
http://stackoverflow.com/questions/67736/wcf-problem-passing-complex-types/81286#812861Answer by sajid.nizami for WCF problem passing complex typessajid.nizami2008-09-17T08:59:39Z2008-09-17T09:11:44Z<p>I hope this would help. I saw a colleague of mine using this code to send complicated data types and to me this is pretty simple. This was used with basicHttpBinding and it works pretty well with MOSS BDC as well as other applications which use the basic binding. </p>
<ol>
<li>Create a data contract based on a generic class</li>
<li><p>Use the data contract when the information needs to be sent</p>
<p>[DataContract(Namespace = "http://Service.DataContracts", Name = "ServiceDataContractBase")]
public class ServiceDataContract
{</p>
<pre><code>public ServiceDataContract() { }
public ServiceDataContract(TValueType Value)
{
this.m_objValue = Value;
}
private TValueType m_objValue;
[DataMember(IsRequired = true, Name = "Value", Order = 1)]
public TValueType Value
{
get { return m_objValue; }
set { m_objValue = value; }
}
</code></pre>
<p>}</p></li>
</ol>
<p>Use this data contract where ever it is needed in the WCF functions that return the complicated data type. For example: </p>
<pre><code>public ServiceDataContract<string[]> GetStrings()
{
string[] temp = new string[10];
return new ServiceDataContract<string[]>(temp);
}
</code></pre>
<p>Update: ServiceDataContract is generic class is using TValueType. It is not appearing because of something wrong with the rendering of the HTML.</p>
http://stackoverflow.com/questions/905435/paging-on-a-random-items-data-set/905547#905547Comment by on Paging on a Random Items Data Set2009-05-25T11:02:55Z2009-05-25T11:02:55ZYes I kept the seed inside the ViewState and reflected it in URL as well. http://stackoverflow.com/questions/905435/paging-on-a-random-items-data-set/905547#905547Comment by on Paging on a Random Items Data Set2009-05-25T07:58:45Z2009-05-25T07:58:45ZNever mind that :) It works superb with LINQ. http://stackoverflow.com/questions/905435/paging-on-a-random-items-data-set/905547#905547Comment by on Paging on a Random Items Data Set2009-05-25T07:51:24Z2009-05-25T07:51:24ZI tried this technique. I did the same thing as you have written. Now what happens is that it works fine on my machine. It generates same set of random numbers with a given seed.
When I put this on a QA server, it returns different values for a given seed which it should technically not do.
Any ideas? http://stackoverflow.com/questions/535712/linq-resultset-issue/535759#535759Comment by on LINQ Resultset Issue 2009-02-11T11:28:55Z2009-02-11T11:28:55ZAlso, here is another symptom. If I use iisreset, the site gets normal data for a while.
Here I would like to say that there is no caching on the server of any sort. http://stackoverflow.com/questions/535712/linq-resultset-issue/535759#535759Comment by on LINQ Resultset Issue 2009-02-11T11:27:47Z2009-02-11T11:27:47ZI have seen this issue reported at places and it has something to do with DataContext not being disposed properly. In my case I have a using construct which should control the lifetime of this data context. Still the results are different http://stackoverflow.com/questions/535712/linq-resultset-issue/535759#535759Comment by on LINQ Resultset Issue 2009-02-11T11:23:46Z2009-02-11T11:23:46ZNo it is pointing to the same DB and I throughly verified this problem.
The LINQ query running on website gives a different result and if I write my own app and run that query it gives me a different result. http://stackoverflow.com/questions/438439/what-was-your-worst-decision-as-programmer-architect/438467#438467Comment by on What was your worst decision as programmer/architect?2009-01-13T10:57:30Z2009-01-13T10:57:30ZHow was that bad? I improved the site performance by converting the layers to singleton... http://stackoverflow.com/questions/438439/what-was-your-worst-decision-as-programmer-architect/438478#438478Comment by on What was your worst decision as programmer/architect?2009-01-13T10:56:33Z2009-01-13T10:56:33ZIsn't that ancient history tech? http://stackoverflow.com/questions/41244/dynamic-linq-orderby/233505#233505Comment by on Dynamic LINQ OrderBy 2008-11-20T09:37:25Z2008-11-20T09:37:25ZBest damn piece of code I have seen :)
Just solved a million problems in my project :) http://stackoverflow.com/questions/217484/single-wcf-service-to-multiple-client-connections/217510#217510Comment by on Single WCF Service to multiple client connections2008-10-20T04:49:41Z2008-10-20T04:49:41ZAre you talking about IIS 6?
I suppose there might be some change to it in IIS 7 but not sure though. Do let me know if this thing is possible with IIS 7. Thanks.http://stackoverflow.com/questions/171624/linq-benchmarks-in-multitiered-environment/193334#193334Comment by on LINQ Benchmarks in multitiered environment2008-10-15T16:34:02Z2008-10-15T16:34:02ZI compared ToArray with ToList in a small test, and I found ToArray slower. So currently I am using ToList but since you mentioned this now I am getting doubts. I will recheck this.
I am not using any anonymous types, and everything is in the form of a LINQ entity or IEnumerable<LINQENTITY>. http://stackoverflow.com/questions/197268/wcf-self-hosted-service-with-transport-security-authentication-failed-because-thComment by on WCF self-hosted service with transport security (Authentication failed because the remote party has closed the transport stream.)2008-10-13T12:46:36Z2008-10-13T12:46:36ZAdd logging to your WCF server and use the Service Trace Viewer from Vista SDK to see what the exact error is!
Do not overlook the probability that the error is in your code.http://stackoverflow.com/questions/188422/asp-net-multi-language-website/188434#188434Comment by on ASP.NET multi language website?2008-10-09T18:08:32Z2008-10-09T18:08:32ZHow will you deal with a language that shift the direction of page rendering? In my opinion you have to write some code to counter that.
My vote is for Resource files for now as there is no other better way of doing it. http://stackoverflow.com/questions/187989/method-parameters-value-through-reflection/188017#188017Comment by on Method parameters value through Reflection2008-10-09T16:59:21Z2008-10-09T16:59:21ZI do not think I can modify much of the code architecture. Is it possible to inject this framework just to get the parameters logged>