User Max Schmeling - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T08:32:24Zhttp://stackoverflow.com/feeds/user/3226http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1794878/how-do-i-use-open-id-in-ruby-on-rails0How do I use open id in ruby on rails?Max Schmeling2009-11-25T05:36:24Z2009-11-26T12:28:39Z
<p>There doesn't appear to be any recent information about using Open ID in Ruby on Rails... the only walkthroughs that I can find do not work anymore. Does anyone know of a walkthrough or documentation that will actually work with modern versions of ruby on rails and required software?</p>
<p>I've been struggling with this for days and cannot make anything work. </p>
http://stackoverflow.com/questions/591901/how-to-determine-time-on-site-in-javascript0How to determine Time On Site in Javascript?Max Schmeling2009-02-26T18:46:36Z2009-11-24T17:48:54Z
<p>Google Analytics tracks 'Time On Site'. How would you do that effectively? Does it actually track when the user closes the browser or navigates away?</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/1776851/how-do-i-get-my-openidcontroller-working-in-ruby-on-rails0How do I get my OpenidController working in Ruby on Rails?Max Schmeling2009-11-21T21:26:16Z2009-11-23T16:02:34Z
<p>I'm getting this error:</p>
<blockquote>
<p>uninitialized constant OpenidsController</p>
</blockquote>
<p>I can't figure out why. I'm following this guide: <a href="http://www.danwebb.net/2007/2/27/the-no-shit-guide-to-supporting-openid-in-your-applications" rel="nofollow">http://www.danwebb.net/2007/2/27/the-no-shit-guide-to-supporting-openid-in-your-applications</a> </p>
<p>I used the following command to generate the controller:</p>
<pre><code>script/generate controller Openid new create complete
</code></pre>
<p>And I have put the following line in my routes file as the guide says to do: </p>
<pre><code>map.resource :openid, :member => { :complete => :get }
</code></pre>
<p>Any ideas? I'm new to RoR so hopefully this is easy for someone else.</p>
http://stackoverflow.com/questions/1763893/how-to-send-a-message-from-server-a-to-server-b-using-msmq0How to send a message from Server A to Server B using MSMQ?Max Schmeling2009-11-19T15:01:06Z2009-11-20T18:16:05Z
<p>How do I setup a message queue that automatically sends all it's messages to another server?</p>
<p>I'm working on a proof of concept for a system that needs to run on multiple servers, writing to local message queues, then have a central service on another server running that reads its local queue to pick up all the messages from the other servers.</p>
<p>From what I've read I believe this is possible, but I'm not seeing how to set it up...</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1269572/how-do-i-get-an-asp-net-mvc-application-running-on-my-host2How do I get an ASP.Net MVC application running on my host?Max Schmeling2009-08-13T01:25:26Z2009-11-16T14:40:38Z
<p>Is there something special you usually have to do? I have a DailyRazor .Net Starter account, but it won't run my MVC app. Any ideas?</p>
<p>I have contacted support but they said it should work, but it's not... Thought maybe someone here could help me faster.</p>
http://stackoverflow.com/questions/1578873/how-can-i-programmatically-asign-a-role-to-a-scope-in-microsoft-azman0How can I programmatically asign a role to a scope in Microsoft AzMan?Max Schmeling2009-10-16T15:43:18Z2009-11-12T18:06:43Z
<p>I'm using AzMan on Windows Server 2003, and I've written a management application that completely hides AzMan and the MMC from the security team. However, I'm having a hard time implementing one of the features in the MMC. </p>
<p>I have a role called User, and a role called Branch User which contains nothing but the User role. I want to assign the User role at the all data (Role Assignments) level, and the Branch User role at the scope level. However, I can't find a way to programmatically assign the Branch User role to a scope without it losing its definition. I can assign the role (by calling CreateRole on the scope) but it seems to just create a new blank role. When I right click it in the MMC, click on properties, and then Show Definition, it doesn't have anything.</p>
<p>Also, if I try to then call AddTask on that IAzRole object to add "User" to it, it doesn't quite work as expected. It will add all the tasks in the User role to my Branch User role, but not the role itself.</p>
<p>Is there a way to do this? I can't figure it out.</p>
http://stackoverflow.com/questions/607810/use-windows-authentication-with-asp-net-ajax1Use windows authentication with ASP.Net AJAXMax Schmeling2009-03-03T19:36:44Z2009-11-12T18:03:05Z
<p>I'm working on my first application using ASP.Net with web services and I'm having an authentication issue. At least I think that's the issue.</p>
<p>When I run the application locally in debug mode it works fine. It even works when I run it out of debug mode (through IIS) in IE 7. But when I have a coworker run it (from my IIS) on their box, it doesn't work. When querying active directory to look up users it gives this error:</p>
<p>Sys.Net.WebServiceFailedException: The server method 'GetCurrentUser' failed with the following error: System.Runtime.InteropServices.COMException - An operations error has occurred.</p>
<p>What do I need to do to get this working remotely?</p>
http://stackoverflow.com/questions/1718623/is-there-any-way-to-use-an-updatepanel-inside-of-a-facebox-popup1Is there any way to use an UpdatePanel inside of a Facebox popup?Max Schmeling2009-11-11T22:47:09Z2009-11-11T23:18:50Z
<p>I'm using <a href="http://famspam.com/facebox" rel="nofollow">Facebox</a> for pretty facebook style popups and I was wondering if there is any way to use it with an update panel inside of it?</p>
<p>I have a div in a page with two drop downs, and the second drop down depends on the selected value of the first drop down. I put these dropdowns inside an UpdatePanel, and I would like to be able to show it as a popup with Facebox, but it doesn't work. It simply won't do anything.</p>
<p>Any ideas on how to make it work? Is it at all possible?</p>
<p>**note: there are several ways to use Facebox, what I'm doing right now is putting a div (display:none) on the page around what I want to show in the popup, and then hooking it up to a link using the facebox() method from the jquery extension.</p>
http://stackoverflow.com/questions/1674991/how-do-you-collaboratively-write-specs2How do you collaboratively write specs?Max Schmeling2009-11-04T16:29:55Z2009-11-05T01:22:30Z
<p>I am working with a small team (2 others) of developers that are geographically dispersed, and I'm looking for good ways for us to collaborate on specs... We're thinking we might use Google Docs to write the spec in so we can all have access to modify it in a central location.</p>
<p>What have you done? What good ideas do you have?</p>
http://stackoverflow.com/questions/1381004/what-is-the-most-efficient-way-to-load-a-users-directoryentry0What is the most efficient way to load a user's DirectoryEntry?Max Schmeling2009-09-04T19:06:02Z2009-11-02T18:50:20Z
<p>I have the following code that loads a user's Active Directory DirectoryEntry object from the user's SID:</p>
<pre><code>public static DirectoryEntry GetUserDirectoryEntry(SecurityIdentifier sid)
{
return new DirectoryEntry(string.Format("LDAP://<SID={0}>", sid.Value));
}
</code></pre>
<p>Is there a more efficient way to do this? I'm having to optimize my code because of performance issues, and I need to squeeze down to the absolute fastest code that I can. It doesn't necessarily have to load from an SID. I just need to know the most efficient way to get the users DirectoryEntry.</p>
<p>EDIT: I'm restricted to using .Net 2.0.</p>
http://stackoverflow.com/questions/1659377/how-do-i-render-a-blog-feed-inside-of-another-page0How do I render a blog feed inside of another page?Max Schmeling2009-11-02T04:04:40Z2009-11-02T07:39:53Z
<p>I'm doing a fairly small project for a friend/client who wants a website with some information on it, a couple of simple pages, and a blog. I want the blog to be integrated into the site really well, and not have to build the site around Wordpress or other software (and I don't want to have a page with two links for "Enter Site" or "Enter Blog")... what's my best option?</p>
<p>I've been thinking I could use XSLT to translate the rss feed into HTML and display it within the page, but that would leave out any commenting functionality.</p>
<p>Thoughts? Is there a good solution out there without having to do a lot of work to make wordpress fit in to the site?</p>
http://stackoverflow.com/questions/1645091/how-can-i-debug-ajax-functionality-with-web-services-in-visual-studio-20050How can I debug ajax functionality with web services in Visual Studio 2005?Max Schmeling2009-10-29T16:53:11Z2009-10-29T16:53:11Z
<p>I have a web application project and a web service project in the same solution, and I want to be able to use Javascript (jquery) to make calls back to the web services. How can I do this in a way that wont require me to change the code for production, since it debugs on a different port so I can't just use a normal path to it.</p>
<p>Thoughts? Ideas? Surely somebody else has solved this problem.</p>
<p>I don't want to debug with IIS. Hopefully that's not the only way.</p>
http://stackoverflow.com/questions/1223730/is-there-any-service-that-allows-you-to-send-letters-via-snail-mail1Is there any service that allows you to send letters via snail mail?Max Schmeling2009-08-03T18:01:02Z2009-10-26T19:33:06Z
<p>I'm working on some software that needs to send emails to users, and occasionally letters through USPS. Is there any service with an API that allows you to do this and pay x amount of money per letter or something, or does this have to be a manual in house print, package, and mail process?</p>
http://stackoverflow.com/questions/1618631/how-do-i-get-a-custom-action-to-go-to-the-right-place0How do I get a custom action to go to the right place?Max Schmeling2009-10-24T17:58:31Z2009-10-25T18:30:00Z
<p>I'm new to Ruby on Rails, and I'm sure I'm just missing something simple and stupid, but I can't figure out how to get my 'account/signup' action working.</p>
<p>This is what I have in my routs file:</p>
<pre><code>map.connect ':controller/:action'
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'
map.root :controller => "home"
</code></pre>
<p>I've added this to my accounts controller:</p>
<pre><code>def signup
@account = Account.new
respond_to do |format|
format.html # signup.html.erb
format.xml { @account }
end
end
</code></pre>
<p>And I've added signup.html.erb to the accounts views folder.</p>
<p>Yet when I go to it in the browser I get this error:</p>
<p><strong>ActiveRecord::RecordNotFound in AccountsController#show</strong>
<em>Couldn't find Account with ID=signup</em></p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1614451/is-there-some-sort-of-master-page-functionality-in-ruby-on-rails3Is there some sort of Master Page functionality in Ruby on Rails?Max Schmeling2009-10-23T16:05:53Z2009-10-23T19:13:11Z
<p>I've been a .Net developer for the past seven years or so, and been working with ASP.Net for the last couple of years. I'm now using Ruby on Rails for some projects, and I'm wanting to know if there is something in Ruby on Rails that lets you do master page type stuff?</p>
<p>Basically, I want a way to provide a consistent look and feel for the site with a header and footer and so on, and then just have each page put its content inside of that. How do you accomplish this?</p>
http://stackoverflow.com/questions/1608751/how-do-i-add-a-field-in-ruby-on-rails1How do I add a field in Ruby on Rails?Max Schmeling2009-10-22T17:31:31Z2009-10-23T10:14:29Z
<p>I'm new to RoR, and I've just used scaffold to generate a table and create the pages for CRUD operations. Now I want to add a new field to this. One place I found tells me how to do that in the database, but is there a way to do it where it will add the field to all the pages too, or is that just a manual operation and I need to make sure I know all my fields up front?</p>
http://stackoverflow.com/questions/1601923/is-it-possible-to-write-offline-gps-navigation-software-as-a-hobbyist0Is it possible to write offline GPS navigation software as a hobbyist?Max Schmeling2009-10-21T16:17:42Z2009-10-21T16:25:28Z
<p>Basically I'm wanting to create a GPS system for my car that works offline, but I'm just a hobbyist and doing this for fun, so I don't have a ton of money to invest. Are there open databases I can use for the data (roads, speed limits, etc), or is it just impossible to do?</p>
http://stackoverflow.com/questions/344774/windowsidentity-token-in-legacy-asp1WindowsIdentity Token in Legacy ASPMax Schmeling2008-12-05T18:44:24Z2009-10-13T10:00:04Z
<p>I've created a .Net library at work that is used by all of our developers. The security part of it uses Microsoft AzMan for the security backend. In order to create a security (AzMan) ClientContext I have to pass it a token value (as a uint). This is all fine an dandy until I needed to make a COM wrapper for our common library so some of our legacy pages could take advantage of it without being rewritten for now.</p>
<p>I cannot figure out how to get the token value to pass to AzMan from legacy ASP. The COM wrapper is setup to run as a COM Server and runs as a specific user that we use here for all COM objects, therefor the common library can't just pull the identity using .Net.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1555086/how-do-i-trigger-a-postback-with-arguments-from-javascript1How do I trigger a PostBack with arguments from Javascript?Max Schmeling2009-10-12T15:00:08Z2009-10-13T02:11:08Z
<p>This is what I'm doing: Using jquery, I'm popping up a "form" over the page that lets the user search for branches of the company and select the one they want. When the form pops up, they can type in a textbox, and it will do AJAX requests back to the server to return the top n results for what they've entered, and those results will be put into a list for them. I want the user to be able to select one by clicking a link that says "select" or something, and at that point I want it to do a PostBack have the Branch Selector control that this is in change it's SelectedBranch property to the newly selected branch. I've got this all working right now with a hard coded list of LinkButtons, but how do I do the same thing with a dynamic list of links inserted with jquery?</p>
http://stackoverflow.com/questions/1527072/how-should-i-go-about-moving-component-services-to-a-new-server0How should I go about moving Component Services to a new server?Max Schmeling2009-10-06T17:49:38Z2009-10-09T22:01:03Z
<p>We're moving our test server onto a new box, and I need to migrate all of our components that are in Component Services to the new box. We have all of the COM dll files located in sub folders in a COM directory on the server, and we want to copy that entire directory and register all the applications in Component Services just like they are. They will need to have the same credentials and everything.</p>
<p>I can use the COMAdminCatalog stuff and automate Exporting and Installing the applications (exports a CAB file), but that will copy the dlls and everything, and we don't want that, because it won't put them back in the right spot. Although if I could pull the directory they were in, and then specify that directory on the install, that would be okay. I can't figure out how to get the directory of the dll though. And what if there are two dlls, how would that work?</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1529215/why-wont-my-site-load-from-one-computer-but-it-will-another0Why won't my site load from one computer, but it will another?Max Schmeling2009-10-07T02:36:23Z2009-10-07T03:24:28Z
<p>Pretty vague title, but basically I can only get "my site" to load from one computer. I've purchased hosting and a domain name, set it all up, and there's nothing there yet, but the default directory browser thing shows up when I go to the url on my work computer, but from my home computer and a virtual machine it doesn't... what should I look at to troubleshoot? Everything else works fine from home, so I wouldn't think it would be a router issue or anything like that.</p>
<p>Thoughts?</p>
<p>UPDATE: It works from my work computer, and a friend of mine's computer at her house, but not on my PC or laptop... I've tried rebooting, unplugging cable modem and router and plugging them back in, dnsflush, turning windows firewall off, and everything i can think of... i don't have any idea what to do now</p>
<p>UPDATE: This is interesting... when I tracert from my computer it stops and gives Request Time Out one hop before getting to the actual web server. When I do the tracert using dnsstuff.com, it makes the hop just fine and shows the web server on there... I don't get it.</p>
http://stackoverflow.com/questions/174570/how-to-set-property-to-guid-in-aspx-page0How to set property to Guid in aspx pageMax Schmeling2008-10-06T14:42:59Z2009-10-06T19:07:38Z
<p>I have the following code in one of my aspx pages:</p>
<pre><code><% foreach (Dependency dep in this.Common.GetDependencies(this.Request.QueryString["Name"]))
{ %>
<ctl:DependencyEditor DependencyKey='<%= dep.Key %>' runat="server" />
<% } %>
</code></pre>
<p>When I run it, I get the following error: <pre><strong>Parser Error Message:</strong> Cannot create an object of type 'System.Guid' from its string representation '<%= dep.Key %>' for the 'DependencyKey' property.</pre></p>
<p>Is there any way that I can create a control and pass in a Guid in the aspx page? I'd really hate to have to loop through and create these controls in the code behind just because of that...</p>
<p>NOTE: The Key property on the Dependency object <em>is</em> a Guid.</p>
http://stackoverflow.com/questions/1521400/is-it-possible-to-store-database-connection-string-information-in-active-director/1521415#15214152Answer by Max Schmeling for Is it possible to store database connection string information in Active Directory?Max Schmeling2009-10-05T17:42:24Z2009-10-05T17:42:24Z<p>Technically speaking, you can't store the information in <a href="http://en.wikipedia.org/wiki/Lightweight%5FDirectory%5FAccess%5FProtocol" rel="nofollow">LDAP</a> since it is a protocol, not a storage mechanism. However, there is no reason (that I know of) that you couldn't store the information in Active Directory or other directory services type engine, and retrieve them with a query from the application. You would just need to come up with some organizational scheme and I would suggest some common code in a library or something that allows you to access the information.</p>
<p>I'm not saying that storing it in Active Directory is the best option, but I believe you should be able to do it without a problem.</p>
http://stackoverflow.com/questions/1510749/is-there-any-way-to-use-the-cellular-network-from-a-custom-device0Is there any way to use the cellular network from a custom device?Max Schmeling2009-10-02T17:02:41Z2009-10-02T17:20:06Z
<p>The title is pretty vague, I know, but I wasn't sure how to word it. Here's what I'm getting at: I am working on developing a product that requires a device to be deployed to "the field" that could report on some data that it gathers and send it back to a central server. These devices could be deployed anywhere in the country, or the world even. One way for me to do this is to put a port where a Cat5 cable could be plugged in with internet access, but this is less than ideal because a lot of locations would not have a network connection.</p>
<p>Is there any way for a small company (without the bargaining and negotiating power of companies like GM with Onstar and things like that) to utitlize the cellular network through an embedded cell chip and a contract with a cellular service provider (like Verizon or something) to send small amounts of data over the internet?</p>
<p>Any advice on what hardware is out there to do this, linux compatible software that does this type of thing, or tips, thoughts, and advice would be helpful. </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1505904/how-can-i-load-a-tab-on-demand-using-the-ajax-control-toolkit0How can I load a tab on demand using the Ajax Control Toolkit?Max Schmeling2009-10-01T19:15:52Z2009-10-01T19:15:52Z
<p>The Ajax Control Toolkit's tab control loads all tabs on page load and displays the currently selected one to the user. Is there a way to make it load the tabs only when the user activates the tab by clicking on the tab button for it? I'm wanting to improve load time because there is quite a bit of stuff on each tab, and each of them requires multiple databases calls and security queries.</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/582696/installaware-database-rollback1InstallAware database rollbackMax Schmeling2009-02-24T17:31:34Z2009-09-13T19:59:59Z
<p>Does anyone know how to make InstallAware do a rollback of a database when the user clicks 'Cancel'? Unlike InstallShield I'm not seeing any way to specify when individual scripts run.</p>
http://stackoverflow.com/questions/1406738/can-you-integrate-a-custom-help-desk-application-into-sharepoint1Can you integrate a custom help desk application into SharePoint?Max Schmeling2009-09-10T17:52:09Z2009-09-10T18:58:16Z
<p>I know next to nothing about SharePoint, so maybe this isn't something you can/should do, or maybe it's something completely trivial, I don't know, but we have a custom in-house help desk application at work, and I'm wondering if it can be integrated into our help desk SharePoint site somehow?</p>
<p>I really don't know what's possible with SharePoint, so any ideas or thoughts on this matter would be appreciated.</p>
http://stackoverflow.com/questions/1395847/progressive-enhancement-with-silverlight1Progressive enhancement with Silverlight.Max Schmeling2009-09-08T19:25:03Z2009-09-08T19:32:44Z
<p>Can I detect with Javascript if the client has the needed runtime to run a Silverlight section in a page, and load if if they do, otherwise leave a static image or something in that area?</p>
<p>I would like to add some Silverlight to a page, but it's not an <em>important</em> part of the page so I would rather just silently fall back to pure web standard stuff if they don't have it installed rather than putting up something that asks them to install it.</p>
http://stackoverflow.com/questions/815781/why-do-i-get-a-timeout-expired-error-running-this-query0Why do I get a Timeout Expired error running this query?Max Schmeling2009-05-02T22:32:09Z2009-09-07T12:00:21Z
<p>I'm running this query on SQL Server 2008 using ODBC. If I take out the last part (OR li.DATEGENERATED >= (...))) then I don't get the error... but I can run it in SSMS just fine.</p>
<pre><code>SELECT COUNT(*) FROM dbo.POITEMST li
WHERE (? IS NULL OR li.DATEGENERATED >= ?)
AND (? IS NULL OR (li.DATEGENERATED >= (
SELECT MAX(t.DATEGENERATED) FROM dbo.POITEMST t WHERE t.PONUM = ?)))
</code></pre>
<p>Here is how I'm setting up parameters</p>
<pre><code>DbParameter startDateParam = cmd.CreateParameter();
startDateParam.ParameterName = "StartDate";
startDateParam.Value = (StartDate.HasValue ? (object)StartDate.Value : (object)(new DateTime(1753, 2, 2)));
cmd.Parameters.Add(startDateParam);
startDateParam = cmd.CreateParameter();
startDateParam.ParameterName = "StartDate";
startDateParam.Value = (StartDate.HasValue ? (object)StartDate.Value : (object)(new DateTime(1753, 2, 2)));
cmd.Parameters.Add(startDateParam);
DbParameter startPoParam = cmd.CreateParameter();
startPoParam.ParameterName = "StartPO";
startPoParam.DbType = DbType.String;
startPoParam.Value = (string.IsNullOrEmpty(StartPurchaseOrder) ? (object)DBNull.Value : (object)StartPurchaseOrder);
cmd.Parameters.Add(startPoParam);
startPoParam = cmd.CreateParameter();
startPoParam.ParameterName = "StartPO";
startPoParam.DbType = DbType.String;
startPoParam.Value = (string.IsNullOrEmpty(StartPurchaseOrder) ? (object)DBNull.Value : (object)StartPurchaseOrder);
cmd.Parameters.Add(startPoParam);
</code></pre>
<p>EDIT: Those dates are only in there because I was trying to figure this out... it was passing in DBNull before if there wasn't a start date.</p>
http://stackoverflow.com/questions/1363668/any-way-to-detect-browser-running-through-terminal-services1Any way to detect browser running through Terminal Services?Max Schmeling2009-09-01T17:30:21Z2009-09-01T17:45:47Z
<p>I am working on a site that has some jquery based animation, and I was wondering if there is any way to detect if the site is running in browser that is being run in a terminal services (remote desktop) session so I can disable the animation?</p>
<p>I run through remote desktop quite often from remote locations and animations always annoy me, but I really like them when I'm not running through remote desktop. Is there any way to ease the pain without getting rid of animations all together?</p>
<p>I guess I could allow the user to turn them off, and have it store a cookie... but is there any way to do it automatically?</p>
http://stackoverflow.com/questions/1776851/how-do-i-get-my-openidcontroller-working-in-ruby-on-rails/1777230#1777230Comment by Max Schmeling on How do I get my OpenidController working in Ruby on Rails?Max Schmeling2009-11-23T22:35:21Z2009-11-23T22:35:21ZYeah, I'd like to find something that's more recent... there just doesn't seem to be information out there that's as up to date as the stuff we have in the .net world... guess that's to be expected thoughhttp://stackoverflow.com/questions/1773028/how-to-find-a-function-by-function-nameComment by Max Schmeling on How to find a function by function nameMax Schmeling2009-11-20T20:29:35Z2009-11-20T20:29:35Z<a href="http://lmgtfy.com/?q=site%3Astackoverflow.com+javascript+function+name+string" rel="nofollow">lmgtfy.com/?q=site%3Astackoverflow.com+javascript…</a>http://stackoverflow.com/questions/1763893/how-to-send-a-message-from-server-a-to-server-b-using-msmq/1766364#1766364Comment by Max Schmeling on How to send a message from Server A to Server B using MSMQ?Max Schmeling2009-11-20T16:58:05Z2009-11-20T16:58:05ZOkay, so it's automatic? I just create the queue "ComputerName\QueueName" and then write to it, and it sends through the local queue and guarantees that it gets there?http://stackoverflow.com/questions/1725619/can-you-recommend-a-go-language-web-framework/1725630#1725630Comment by Max Schmeling on Can you recommend a go-language web framework? Max Schmeling2009-11-12T21:46:47Z2009-11-12T21:46:47ZA server, not a web framework of any kind.http://stackoverflow.com/questions/607810/use-windows-authentication-with-asp-net-ajax/1724211#1724211Comment by Max Schmeling on Use windows authentication with ASP.Net AJAXMax Schmeling2009-11-12T21:44:02Z2009-11-12T21:44:02ZIf I recall correctly, it has to do with impersonation and the double-hop issue. You probably need to enable Kerberos so the servers can pass users credentials.http://stackoverflow.com/questions/1703097/group-by-named-column/1703134#1703134Comment by Max Schmeling on Group by named columnMax Schmeling2009-11-09T19:18:50Z2009-11-09T19:18:50ZThis is one of those things that every developer wished would work how you think it should. I don't understand why it doesn't work... I can't imagine it would cause any real problems...http://stackoverflow.com/questions/1674991/how-do-you-collaboratively-write-specsComment by Max Schmeling on How do you collaboratively write specs?Max Schmeling2009-11-04T16:31:44Z2009-11-04T16:31:44Zi thought maybe it was closely related enough to pass... http://stackoverflow.com/questions/1614451/is-there-some-sort-of-master-page-functionality-in-ruby-on-railsComment by Max Schmeling on Is there some sort of Master Page functionality in Ruby on Rails?Max Schmeling2009-10-23T16:13:35Z2009-10-23T16:13:35ZThanks @Mauricio, if you put that on as an answer I'll accept it.http://stackoverflow.com/questions/1614451/is-there-some-sort-of-master-page-functionality-in-ruby-on-railsComment by Max Schmeling on Is there some sort of Master Page functionality in Ruby on Rails?Max Schmeling2009-10-23T16:12:56Z2009-10-23T16:12:56Z@NSD I've searched and didn't find anything on master pages... now that I know they're called layouts outside of the .net environment, I'll go read about it... don't try to stereotype .net developers, there are a lot of very good oneshttp://stackoverflow.com/questions/1602466/funny-clever-computer-acronyms/1602699#1602699Comment by Max Schmeling on Funny/Clever computer acronymsMax Schmeling2009-10-21T18:36:43Z2009-10-21T18:36:43ZI don't know why ETLA cracked me up so much, but it didhttp://stackoverflow.com/questions/1578873/how-can-i-programmatically-asign-a-role-to-a-scope-in-microsoft-azmanComment by Max Schmeling on How can I programmatically asign a role to a scope in Microsoft AzMan?Max Schmeling2009-10-16T15:51:13Z2009-10-16T15:51:13ZSo I just had an "oh duh" moment. I programmatically call CreateRole("Branch User", null) and then on that IAzRole object, call AddTask("Branch User", null) and it does what I want. I'm still experimenting to see if there are any undesirable side effects to this... I'm not sure if it's the right way, but it kind of makes sense now that I think about it with the AzMan model. Anyone know for sure if this is how I'm supposed to do it?http://stackoverflow.com/questions/1529215/why-wont-my-site-load-from-one-computer-but-it-will-anotherComment by Max Schmeling on Why won't my site load from one computer, but it will another?Max Schmeling2009-10-07T14:35:57Z2009-10-07T14:35:57ZEveryone seems to get a directory listing except me... This is retardedhttp://stackoverflow.com/questions/1529215/why-wont-my-site-load-from-one-computer-but-it-will-anotherComment by Max Schmeling on Why won't my site load from one computer, but it will another?Max Schmeling2009-10-07T14:34:39Z2009-10-07T14:34:39Z@JRL, sorry i mixed up my words.... doesn't work from all of those thingshttp://stackoverflow.com/questions/1529215/why-wont-my-site-load-from-one-computer-but-it-will-anotherComment by Max Schmeling on Why won't my site load from one computer, but it will another?Max Schmeling2009-10-07T03:33:23Z2009-10-07T03:33:23ZAlso, it works from both my PC, my laptop over wireless, and my virtual ubuntu instance running on my pc.http://stackoverflow.com/questions/1529215/why-wont-my-site-load-from-one-computer-but-it-will-anotherComment by Max Schmeling on Why won't my site load from one computer, but it will another?Max Schmeling2009-10-07T03:31:10Z2009-10-07T03:31:10ZOh, I thought I had put that in the question. I get a timeout. In firefox it says this:
The connection has timed out
The server at www.bickfordtools.com is taking too long to respond.