User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T09:36:00Zhttp://stackoverflow.com/feeds/user/47633http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1163045/differences-between-msxml2-serverxmlhttp-and-winhttp-winhttprequest2differences between Msxml2.ServerXMLHTTP and WinHttp.WinHttpRequest?opensas2009-07-22T04:19:24Z2009-11-30T07:50:46Z
<p>just when I finally understood the difference between Msxml2.XMLHTTP and Msxml2.ServerXMLHTTP</p>
<p><a href="http://support.microsoft.com/kb/290761" rel="nofollow">http://support.microsoft.com/kb/290761</a></p>
<blockquote>
<p>XMLHTTP is designed for client applications and relies on URLMon, which is built upon Microsoft Win32 Internet (WinInet). ServerXMLHTTP is designed for server applications and relies on a new HTTP client stack, WinHTTP. ServerXMLHTTP offers reliability and security and is server-safe. For more information, see the MSXML Software Development Kit (SDK) documentation.</p>
</blockquote>
<p>suddenly I find WinHttp.WinHttpRequest...</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa382925" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa382925</a>(VS.85).aspx</p>
<blockquote>
<p>Microsoft Windows HTTP Services (WinHTTP) provides developers with a server-supported, high-level interface to the HTTP/1.1 Internet protocol. WinHTTP is designed to be used primarily in server-based scenarios by server applications that communicate with HTTP servers.</p>
</blockquote>
<p>so, how is this different from Msxml2.ServerXMLHTTP</p>
<p>(well, the implicit question is which one should I use...)</p>
http://stackoverflow.com/questions/1786746/php-cms-system-built-with-a-framework-php-framework-and-php-cms1php CMS system built with a framework - php framework AND php CMSopensas2009-11-23T23:17:48Z2009-11-25T11:58:26Z
<p>I have to develop a CMS for a friend of mine, nothing commercial...</p>
<p>I'd like to take this opportunity to learn a php framework, to see if it would be suitable for future (and more complex) developments, or at least to steal some nice ideas...</p>
<p>SO I'd like to easily implement a content management system and at the same time have a look at a modern php framework (one of the rails inspired ones, or at least implementing MVC, which I think covers them all...)</p>
<p>I've heard of <a href="http://www.digitaluscms.com/" rel="nofollow">http://www.digitaluscms.com/</a>, built with zend framework, and <a href="http://radiantcms.org/" rel="nofollow">http://radiantcms.org/</a>, but that is ruby on rails (I'd prefer php for ease of deployment and hosting...)</p>
http://stackoverflow.com/questions/567659/calculate-elapsed-time-in-java-groovy0Calculate elapsed time in Java / Groovyopensas2009-02-19T23:03:39Z2009-11-21T21:01:42Z
<p>I have...</p>
<pre><code>
Date start = new Date()
...
...
...
Date stop = new Date()
</code></pre>
<p>I'd like to get the years, months, days, hours, minutes and seconds ellapsed between these two dates.</p>
<p>--</p>
<p>I'll refine the question.</p>
<p>I just want to get the elapsed time, as an absolute measure, that is without taking into account leap years, the days of each month, etc.</p>
<p>Thus I think it's impossible to get the years and months elapsed, all I can get is days, hours, minutes and seconds.</p>
<p>More specifically I want to tell that a certain task lasted for e.g. </p>
<pre><code>20 sec
13 min, 4 sec
2 h, 10 min, 2 sec
4 d, 4 h, 2 min, 2 sec
</code></pre>
<p>So please forgive my lack of precision.</p>
http://stackoverflow.com/questions/1168526/authenticate-with-ntlm-or-kerberos-using-java-urlconnection0authenticate with ntlm (or kerberos) using java UrlConnectionopensas2009-07-22T21:57:18Z2009-11-16T18:23:56Z
<p>I need to consume a rest web service with java, passing the credentials of a domain user account.</p>
<p>right now I'm doing it with classic asp</p>
<pre><code>
set xmlHttp = server.createObject( "msxml2.serverxmlhttp" )
xmlHttp.open method, url, false, domain & "\" & user, password
xmlHttp.send body
out = xmlHttp.responseText
set xmlHttp = nothing
</code></pre>
<p>and with asp.net</p>
<pre><code>
HttpWebRequest request = (HttpWebRequest) WebRequest.Create( url );
request.Credentials = new NetworkCredential(user, password, domain);
request.Method = WebRequestMethods.Http.Get
HttpWebResponse response = (HttpWebResponse) request.GetResponse();
StreamReader outStream = new StreamReader( response.GetResponseStream(), Encoding.UTF8) ;
output = outStream.ReadToEnd();
</code></pre>
<p>how can I achieve this with java? Take into account that I'm not using the credentials of the currently logged user, I'm specifing the domain account (I have the password)</p>
<p>please tell me it's as easy as with classic asp and asp.net....</p>
http://stackoverflow.com/questions/521382/command-line-tool-to-delete-folder-with-a-specified-name-recursively-in-windows11Command line tool to delete folder with a specified name recursively in Windows?opensas2009-02-06T17:52:18Z2009-11-13T09:29:18Z
<p>I want to delete every "_svn" in every folder and subfolder...</p>
<p>For example</p>
<pre>
c:\
proyect1
_svn
images
_svn
banner
_svn
buttons
_svn
</pre>
<p>Then I run something like </p>
<pre><code>rm-recurse c:\proyect1 _svn
</code></pre>
<p>And I should get:</p>
<pre>
c:\
proyect1
images
banner
buttons
</pre>
<p>The ideal thing would be a tiny stand-alone EXE or something like that.</p>
<p>--
Thanks Grant, as soon as I posted the question I saw <a href="http://en.wikipedia.org/wiki/Subversion%5F%28software%29" rel="nofollow">SVN</a> documentation about the SVN export command, but I also want to delete the _vti_* folders stuff Visual Studio creates, so I'll also explore the <code>for</code> solution.</p>
http://stackoverflow.com/questions/86550/is-there-a-linux-ubuntu-svn-client-that-doesnt-suck/1718234#17182340Answer by opensas for Is there a Linux (Ubuntu) svn client that doesn't suck??opensas2009-11-11T21:32:45Z2009-11-11T21:32:45Z<p>I guess you could have a look at</p>
<p><a href="http://rabbitvcs.org/" rel="nofollow">http://rabbitvcs.org/</a></p>
<blockquote>
<p>RabbitVCS is a set of graphical tools written to provide simple and straightforward access to the version control systems you use. Currently, it is integrated into the Nautilus file manager and only supports Subversion, but our goal is to incorporate other version control systems as well as other file managers.
RabbitVCS is inspired by TortoiseSVN and others.</p>
</blockquote>
<p>I'm just about to give it a try... seems promising...</p>
http://stackoverflow.com/questions/1597086/any-experience-with-play-java-web-development-framework8any experience with "Play" java web development framework?opensas2009-10-20T20:25:51Z2009-11-10T21:31:07Z
<p>I've just stumbled upon the following new java web framework: Play</p>
<p><a href="http://www.playframework.org/" rel="nofollow">http://www.playframework.org/</a></p>
<p><a href="http://www.playframework.org/documentation/1.0/home" rel="nofollow">http://www.playframework.org/documentation/1.0/home</a></p>
<p>with such a stunning list of features, I'm pretty much surprised I haven't heard of it before...</p>
<p>Sounds like the java web development promised land...</p>
<p>has anybody tried it? any real experience with it? do you think it's worth studying it?</p>
http://stackoverflow.com/questions/1060780/i-can-no-longer-debug-classic-asp-code-with-visual-studio-20081I can no longer debug classic asp code with visual studio 2008opensas2009-06-29T21:58:01Z2009-11-10T18:15:37Z
<p>I've finally found a way to debug classic asp code in visual studio 2008 ... but...</p>
<p><a href="http://stackoverflow.com/questions/958968/has-anybody-been-able-to-debug-asp-classic-code-with-visual-studio-2005-or-later">http://stackoverflow.com/questions/958968/has-anybody-been-able-to-debug-asp-classic-code-with-visual-studio-2005-or-later</a></p>
<p>... but ...</p>
<p>it only lasted a few days...</p>
<p>I'm following these steps</p>
<p><a href="http://www.codeproject.com/KB/debug/DebugVBScriptVS2008.aspx" rel="nofollow">http://www.codeproject.com/KB/debug/DebugVBScriptVS2008.aspx</a></p>
<p><a href="http://codepagoda.com/2009/04/30/debugging-classic-asp-with-visual-studio-2008-sp1-and-35-framework/" rel="nofollow">http://codepagoda.com/2009/04/30/debugging-classic-asp-with-visual-studio-2008-sp1-and-35-framework/</a></p>
<p>but now, when I do "attach process" I can no longer see the "Script, x86" process anymore...</p>
<p>so I can not debug classic asp code...</p>
<p>I tried restarting the machine, creating a new project, startgin from scrath, the only thing I haven't tried so far is to reinstall IIS...</p>
<p>any idea???</p>
<p>PLEASE HELP!!!!</p>
<p>edit: some info about my environment</p>
<p>Windows XP 2002 SP 3, IIS 5.1, Visual Studio 2008 9.0.30729.1 SP</p>
http://stackoverflow.com/questions/947964/open-source-alternative-to-create-reports-in-classic-asp0open source alternative to create reports in classic asp?opensas2009-06-04T00:14:19Z2009-10-31T10:00:04Z
<p>I'm looking for some open source alternative to create reports from classic asp</p>
<p>they don't have to be something awfully elaborated, we rather find some simple product that allows us to generate pdf files from a data set.</p>
<p>we were thinking about developing some kind of service that took an xml as input and returned a pdf, probably with jasperreports or any other free tool...</p>
<p>we also looked for a component that could convert plain html to pdf, adding some special tags to handle pagination and layout...</p>
<p>any idea? </p>
http://stackoverflow.com/questions/1649339/how-to-debug-a-gsp-page-no-grails-just-gsp0how to debug a gsp page? (no grails, just gsp)opensas2009-10-30T11:46:17Z2009-10-30T16:21:53Z
<p>I've tried with netbeans and eclipse, with no luck... (coudn't try IntelliJ idea)</p>
<p>I gave a quick look ant the code</p>
<p><a href="http://kickjava.com/src/groovy/servlet/TemplateServlet.java.htm" rel="nofollow">http://kickjava.com/src/groovy/servlet/TemplateServlet.java.htm</a></p>
<p>and it gives me the impression that .gsp pages are translated to .groovy servlets (groovlets) in memory (I might be wrong)...</p>
<p>so perhaps it's not so easy to debug gsp as I though...</p>
<p>so, can anybody tell me how to do it?</p>
<p>pd: By debugging I mean things like browsing the code step-by-step, inspecting variables, adding watches, and all those sort of things, obviously. Not the (not so) good old printf approach...</p>
http://stackoverflow.com/questions/1621708/recommendation-for-choosing-a-new-web-development-stack2recommendation for choosing a new web development stackopensas2009-10-25T18:53:13Z2009-10-29T17:36:03Z
<p>I work in a medium to small team ( 10 people ) developing and supporting several web enterprise applications. </p>
<p>We have a dozen of them built with a house-made framework with asp-classic working against ms-sql server.</p>
<p>We are evaluating the migration to a new development stack. </p>
<p>We'd like it to be open (free) and simple.</p>
<p>I've been looking around the java web frameworks, but all of them seem to be extremely overbloated for our needs (with the possible exception of <a href="http://www.playframework.org/" rel="nofollow">http://www.playframework.org/</a>, which I couldn't study yet...)</p>
<p>We are thinking about porting our own framework to this new stack, rather than adopting a whole new stack that we are unaware of ...</p>
<p>so far now, we though about the following possibilities</p>
<ul>
<li><p>plain java - jsp - jsf</p></li>
<li><p>groovy - gsp (no grails at all)</p></li>
<li><p>jruby (no rails at all)</p></li>
</ul>
<p>we feel really comfortable working with dynamic languages (well, as dynamic as classic asp can be) and with a lean and understandable framework...</p>
<p>I see no small and simple web frameworks for java, like there are for php or ruby...</p>
<p>I really like groovy, but I see no web implementations outside of grails... Besides the language documentation doesn't seem to be quite complete (I might be looking in the wrong place, perhaps)</p>
<p>php could be an option, but I think it would be hard to advocate for it in my current work...</p>
<p>any otrer option, advice, pros and cons?</p>
<p>thanks a lot</p>
<p>--
edit</p>
<p>some related link <a href="http://stackoverflow.com/questions/116978/can-anyone-recommend-a-simple-java-web-app-framework">http://stackoverflow.com/questions/116978/can-anyone-recommend-a-simple-java-web-app-framework</a></p>
http://stackoverflow.com/questions/1632295/how-do-you-diagram-relations-between-several-services0how do you diagram relations between several services?opensas2009-10-27T17:09:23Z2009-10-27T17:31:52Z
<p>not necessary an UML diagram, just a simple way to graphically document the relations between several systems...</p>
<p>the systems can be linked through web services, linked-servers, text files, batch processes, com+ components etc...</p>
<p>I was thinking about a high level map, showing which system is consumming, exposing, resources and by which means...</p>
<p>perhaps a deployment diagram would do, or a completely custom diagram...</p>
<p>what do you use to document this kind of relations?</p>
http://stackoverflow.com/questions/116978/can-anyone-recommend-a-simple-java-web-app-framework/1621768#16217680Answer by opensas for Can anyone recommend a simple Java web-app framework?opensas2009-10-25T19:15:57Z2009-10-25T19:15:57Z<p>Haven't tried it myself, but I think</p>
<p><a href="http://www.playframework.org/" rel="nofollow">http://www.playframework.org/</a></p>
<p>has a lot of potential...</p>
<p>coming from php and classic asp, it's the first java web framework that sound promising to me....</p>
http://stackoverflow.com/questions/24596/what-web-application-framework-for-java-is-recommended/1621746#16217461Answer by opensas for What Web Application Framework for Java is Recommended?opensas2009-10-25T19:08:36Z2009-10-25T19:08:36Z<p>Haven't tried it myself, but I think</p>
<p><a href="http://www.playframework.org/" rel="nofollow">http://www.playframework.org/</a></p>
<p>has a lot of potential...</p>
<p>coming from php and classic asp, it's the first java web framework that sound promising to me....</p>
http://stackoverflow.com/questions/1619662/where-can-i-get-the-latest-jre-jdk-as-a-zip-file-i-mean-no-exe-installer1where can I get the latest JRE / JDK as a zip file, I mean, no exe installeropensas2009-10-25T01:12:31Z2009-10-25T09:31:07Z
<p>You may call me a maniac, but I like to be sure that just by copying the contents of the java folder and setting the environment variables, everything will work fine.</p>
<p>So I usually run the installer in a virtual machine, zip the \java folder contents, go back to a snapshot of the virtual machine, and then unzip the compressed file.</p>
<p>I couldn't find a place where the latest jre / jdk is available as a zip file...</p>
<p><a href="http://java.sun.com/javase/downloads/index.jsp" rel="nofollow">http://java.sun.com/javase/downloads/index.jsp</a></p>
<p><a href="http://download.java.net/jdk6/" rel="nofollow">http://download.java.net/jdk6/</a></p>
<p>any idea?</p>
<p>--</p>
<p>or is it safe to assume that exe installer from sun just will just unzip the whole thing, without messing around with the registry, environment variables, etc...?</p>
<p>--</p>
<p>edit: found this related question</p>
<p><a href="http://stackoverflow.com/questions/930265/installing-java-manually-on-windows">http://stackoverflow.com/questions/930265/installing-java-manually-on-windows</a></p>
http://stackoverflow.com/questions/1597992/how-to-pass-a-null-value-to-a-rdoquery-rdoparameter-in-visualbasic-50how to pass a null value to a rdoQuery.rdoParameter in VisualBasic 5opensas2009-10-20T23:57:40Z2009-10-22T22:54:20Z
<p>I have a visual basic 5 project, using Microsfot Remote Data Object 2.0</p>
<p>I have the following code:</p>
<pre>
Set ps = grdoCon.CreateQuery("Resolucion_ValidaCorrelatividad", SQL)
ps(0).Direction = rdParamReturnValue
ps(1).Direction = rdParamInput
ps.rdoParameters(1) = vbNull
ps.Execute
</pre>
<p>it gives me the following error:</p>
<p>(40002) 22005: [Microsoft][ODBC SQL Server Driver] Valor de carácter no válido para especificación cast</p>
<p>something like</p>
<p>Invalid character value for cast specificaction...</p>
<p>I've already tried passing "null", vbEmpty, 0, false... but I had no luck...</p>
<p>any idea</p>
http://stackoverflow.com/questions/1597992/how-to-pass-a-null-value-to-a-rdoquery-rdoparameter-in-visualbasic-5/1610470#16104700Answer by opensas for how to pass a null value to a rdoQuery.rdoParameter in VisualBasic 5opensas2009-10-22T22:54:20Z2009-10-22T22:54:20Z<p>oops, silly me, it was easier than I thought...</p>
<p>just </p>
<p>ps.rdoParameters(1) = Null</p>
<p>...</p>
http://stackoverflow.com/questions/380011/browsing-olap-cubes2browsing olap cubesopensas2008-12-19T03:16:30Z2009-10-07T16:50:08Z
<p>dows anybody know any fine open source cube browser???</p>
<p>ideally it would be something built with plain javascript...</p>
<p>does it even exists???</p>
<p>I'm planing to use it with classic asp agains a sql database...</p>
<p>thanks a lot</p>
http://stackoverflow.com/questions/800904/java-impersonation-to-connect-to-sql-server-using-windows-authentication0java impersonation to connect to sql server using windows authenticationopensas2009-04-29T04:40:19Z2009-10-01T12:00:01Z
<p>right now I have the following architecture built with classic asp and visual basic 6</p>
<p>I have a COM+ component developed in VB6 which connects to the dabatase. I set the DB conf thru an .udl file configured with integrated security.</p>
<p>At the web server (IIS) I register the componente with the com+ manager, and configure it to be run under an account name, something like mydomain\appAccount...</p>
<p>in sql 2005 I give the appropiate permissions the mydomain\appAccount</p>
<p>from asp, I just use the component with server.createobject...</p>
<p>I'd like to develop a similar solution with java, the question(s) is(are) the following:</p>
<p>is it possible?</p>
<p>how can I configure a domain account to connect to a sql server 2005 db?</p>
<p>where should I store the db conf? and where should I configure the domain account? in tomcat / jetty configuration?</p>
<p>I'd like the solution to be as simple and straight forward as possible (I'm trying to avoid things like glassfish or jboss)</p>
<p>well, thanks a lot...</p>
http://stackoverflow.com/questions/1493669/difference-between-server-createobject-and-createobject-in-asp-classic1difference between server.createObject and createobject in asp classicopensas2009-09-29T16:37:59Z2009-10-01T06:42:44Z
<p>according to</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms524620.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms524620.aspx</a></p>
<p>you should use server.createObject</p>
<blockquote>
<p>If you are already familiar with VBScript or JScript, note that you do not use the scripting language's function for creating a new object instance (CreateObject in VBScript or New in JScript). You must use the ASP Server.CreateObject method; otherwise, ASP cannot track your use of the object in your scripts.</p>
</blockquote>
<p>but some other folks think that server.createObject implies an overhead that most times could be avoided</p>
<p><a href="http://classicasp.aspfaq.com/components/should-i-use-createobject-or-server-createobject.html" rel="nofollow">http://classicasp.aspfaq.com/components/should-i-use-createobject-or-server-createobject.html</a></p>
<blockquote>
<p>CreateObject has less overhead than Server.CreateObject, because the latter uses MTS — causing significant overhead. <br /><br />
You will also suffer performance hits when the component encounters errors, because with Server.CreateObject, these errors are written to the event log (which, admittedly, can be useful during debugging). </p>
</blockquote>
<p>or</p>
<p><a href="http://www.4guysfromrolla.com/webtech/043099-1.shtml" rel="nofollow">http://www.4guysfromrolla.com/webtech/043099-1.shtml</a></p>
<blockquote>
<p>This can become significant if you are writing a component that deals with transactions, as it would be a good safety net to pass it through MTS, because you will be using MTS commands. However, if you are not using MTS, you could create processor and memory over head by passing it through Server.CreateObject. This makes it a better idea to use CreateObject, because it goes straight through.</p>
</blockquote>
<p>so if I'm not using mts and need no access to the builtins asp's objects (like set d = createObject("scripting.dictionary") ) is it ok to just forget about the server.createObject and go with createobject ) ???</p>
<p>thanks a lot...</p>
http://stackoverflow.com/questions/1447822/whats-the-difference-between-and-script-languagevbscript-runatserver1what's the difference between <% %> and <script language="vbscript" runat="server"> in classic asp?opensas2009-09-19T05:16:48Z2009-09-20T07:54:27Z
<p>I couldn't find much documentation on the web</p>
<p>so far now, the obvious difference seems to be that you cant mix html and vbscript using the "script" tag</p>
<p>for example, this is ok</p>
<pre>
<% public sub display_literal() %>
literal
<% end sub %>
</pre>
<p>but with the script tag you should</p>
<pre>
<script language="vbscript" runat="server">
public sub display_literal2()
response.write "literal2</br>"
end sub
</script>
</pre>
<p>on this page </p>
<p><a href="http://www.newobjects.com/pages/ndl/alp/asp-structure.htm" rel="nofollow">http://www.newobjects.com/pages/ndl/alp/asp-structure.htm</a></p>
<p>it says that</p>
<blockquote>
<p>In classic ASP the script written in the default script language for the page (i.e. the language assumed for the <% %> tags) is executed second - e.g. all the script code in <% %> tags is initialized after all the <SCRIPT RUNAT=SERVER ...> scripts. </p>
</blockquote>
<p>but I made a couple of tests and couldn't verify it...</p>
<p>I'm asking because I had a script (I don't have it at hand right now) that using <% %> gave me an error, changing it to the <script> tag solved the problem, but I'd like to know why....</p>
<p>anyway, I guess that we hsould use the <script> tag for functions and procedures that are to be called from <% %> tags... right?</p>
http://stackoverflow.com/questions/578146/best-examples-of-crud-web-form-design/1447536#1447536-1Answer by opensas for Best examples of CRUD Web Form Designopensas2009-09-19T02:21:57Z2009-09-19T02:21:57Z<p>I've just stumbled onto this one</p>
<p>there you will find a couple of REALLY GREAT templates!!!</p>
<p><a href="http://www.webappers.com/2009/09/18/20-professional-web-admin-templates-on-themeforest/" rel="nofollow">http://www.webappers.com/2009/09/18/20-professional-web-admin-templates-on-themeforest/</a></p>
http://stackoverflow.com/questions/1191703/free-javascript-widget-to-show-an-organigram-chart1free javascript widget to show an organigram chart...opensas2009-07-28T02:51:16Z2009-09-18T14:20:44Z
<p>I'm looking for a javascript widget to show some fairly complex graphes...</p>
<p>Ideally, it would be interactive, that is the user should be able to move around the nodes, select one or many, zoom in, click on a node to see more info, etc...</p>
<p>If it could have printing support, that would be marvelous...</p>
<p>The idea is to let the user browse the organization structure, and select one or more departments to create reports...</p>
<p>what I've found so far is the following</p>
<p><a href="http://ondras.zarovi.cz/sql/demo/?keyword=default" rel="nofollow">http://ondras.zarovi.cz/sql/demo/?keyword=default</a>
(wow!!!)</p>
<p>(it uses <a href="http://code.google.com/p/oz-js/" rel="nofollow">http://code.google.com/p/oz-js/</a> just unzip the file and it works!)</p>
<p><a href="http://thejit.org/" rel="nofollow">http://thejit.org/</a>
<a href="http://thejit.org/Jit/Examples/Spacetree/example1.html" rel="nofollow">http://thejit.org/Jit/Examples/Spacetree/example1.html</a></p>
<p><a href="http://javascript.neyric.com/wireit/" rel="nofollow">http://javascript.neyric.com/wireit/</a>
(very impresive!)
<a href="http://javascript.neyric.com/wireit/examples/jsBox/jsBox.html" rel="nofollow">http://javascript.neyric.com/wireit/examples/jsBox/jsBox.html</a></p>
<p>do you know any other???</p>
http://stackoverflow.com/questions/1436796/strategies-patterns-for-handling-complex-web-crud-forms0strategies / patterns for handling complex web crud forms?opensas2009-09-17T05:05:17Z2009-09-17T05:34:21Z
<p>using classic asp, over the years we have developed a framework to handle some fairly complex web crud pages.</p>
<p>the crud class is designed as some kind of "finite-state machine"</p>
<p>the state is preserved between posts using hidden fields, and every event on the pages raises a post with a certain action. according to the action triggered, and the previous state, the crud class performs certain operation (like running a query, saving a record, edit a record, etc...) an goes to another state.</p>
<p>these are some of the states we are handling so far</p>
<p>query: lets the user enter query criteria to filter data. </p>
<p>browse: shows the data in a table form. with pagination, ordering, etc...</p>
<p>new, edit, delete: well, pretty obvious</p>
<p>browse-single: like edit but read-only</p>
<p>etc...</p>
<p>in order to achieve the desired functionality we keep in hidden texts info like:
actual action, actual mode, previous action, previous mode, id of the selected record, order criteria, etc...</p>
<p>now we have implemented some master-detail functionality but this approach is getting a bit too complex.</p>
<p>we have to keep in hidden fields the id of the parent record, the parent field, the mode of the parent, the mode of the child, the current tab, the previous tab (we divided the info among several tabs)...</p>
<p>things get even more complicated when you have to handle "custom" actions (like approving an invoice), or warnings, errors, custom "workflows" and thing like that...</p>
<p>on the end we see that with this approach things get too complicated as soon as we deviate from the standard crud case...</p>
<p>what do you think of this approach?</p>
<p>how do you handle these kind of things? </p>
<p>any pattern you can advice me to look?</p>
<p>how do you keep tracks of the form's state?</p>
http://stackoverflow.com/questions/1436747/how-can-you-find-the-rows-with-equal-columns/1436810#14368100Answer by opensas for How can you find the rows with equal columns?opensas2009-09-17T05:15:57Z2009-09-17T05:15:57Z<p>here's another approach</p>
<pre>
select * from foo f1 where exists(
select * from foo f2 where
f1.id != f2.id and
f1.a = f2.a and
f1.b = f2.b )
</pre>
<p>anyway, even though I find it a bit more readable, if you have such a huge table, you should check the execution plan, subqueries have a bad reputation involving performance...</p>
<p>you should also consider creating the index (without the unique clause, obviously) to speed up the query... for huge operations, sometimes it's better to spend the time creating the index, perform the update and then drop the index... in this case, I guess an index on (a, b) should certainly help a lot...</p>
http://stackoverflow.com/questions/1428144/sql-what-does-mean/1428179#14281790Answer by opensas for SQL: What does =* mean?opensas2009-09-15T16:21:28Z2009-09-15T16:21:28Z<p>yeap, it's another syntax for a left outer join</p>
<pre>
from
table1 left outer join table2 on table1.yr = table2.yr - 1
</pre>
http://stackoverflow.com/questions/895773/high-volume-scanning-and-ocr-automatic-solution1high volume scanning and ocr automatic solution?opensas2009-05-21T23:26:17Z2009-09-10T22:29:20Z
<p>We need a high volume scanning and ocr solution</p>
<p>we are talkin about digitalizing about 4000 documents a day, and saving them as pdf file with ocr (with hidden text)...</p>
<p>the solution should let the operators scan a document and automatically save the files to a specific network resource, to be taken by an app that uploads it to a DB...</p>
<p>we are evaluating an enterprise solution from kofax <a href="http://www.kofax.com/" rel="nofollow">http://www.kofax.com/</a></p>
<p>what other products are you aware of? </p>
<p>any experience with similar requirements? </p>
<p>any open source (or at least accesible) solution? </p>
<p>com, activex api support?</p>
http://stackoverflow.com/questions/794710/what-is-asps-request-servervariablesauthuser-jsp-equivalent1what is asp's Request.ServerVariables("AUTH_USER") jsp equivalent?opensas2009-04-27T18:34:13Z2009-08-28T15:00:03Z
<p>well, on a IIS web site with integrated windows authentication and no anonymous access, I can retrieve the logon username of the user, something like like domain\user...</p>
<p>is it possible to achieve this with jsp on tomcat? (or any other container)</p>
<p>I've tried with request.getHeaderNames (on tomcat) but I only get </p>
<p>host, user-agent, accept, accept-language, accept-encoding, accept-charset, keep-alive, connection, cookie, pragma, cache-control</p>
<p>Hey, in asp and in php I get a lot more info!!! is there some way to enable that???</p>
<p>thanks a lot...</p>
http://stackoverflow.com/questions/833148/free-utility-to-script-db-objects-in-ms-sql4free utility to script DB objects in ms sqlopensas2009-05-07T06:25:17Z2009-08-18T13:11:58Z
<p>I'm trying to implement database source control.</p>
<p>the tool I need should create a separate file for each object in the database, preferably arranged in folders, like </p>
<p>stored procedures
functions
views
tables</p>
<p>and it would be great being able to also dump the results of certain queries, in order to keep track of the data changes in several configuration tables...</p>
<p>I wonder if there's is already a tool that can handle this kind of stuff...</p>
<p>--</p>
<p>just to clear a few things...</p>
<p>I'm already using sql delta to handle the update scripts...</p>
<p>I'd like to have scripts of the DB in order to use with subversion, so I can trace what objects where changed with each commit, without having to study the update scripts...</p>
<p>I'm developing a nice vb script with SQL Distributed Management Objects (SQL-DMO), I'll tell how it goes...</p>
<p>What's good about having my own solution, is that I can also include the outputs of queries or stored procedure execution, to trace the changes in certain tables, server configuration, the growth of the database, well, whatever I can dump to a text file...</p>
http://stackoverflow.com/questions/489785/is-it-possible-to-work-with-gsp-groovy-server-pages-without-the-whole-grails-st3Is it possible to work with GSP (groovy server pages) without the whole grails stuff?opensas2009-01-28T22:52:23Z2009-08-08T01:19:08Z
<p>I'd just like to play a little bit with groovy</p>
<p>I was thinking about developing my own-tiny web framework, something very simple and manageable...</p>
<p>So i'd like tou use GSP pages whtout having to install the whole grails stuff, with all its dependencies and behind-the-scenes frameworks...</p>
<p>can anyone provide me detailed instructions on what to download, where to install, how to configure tomcat, etc...</p>
<p><hr /></p>
<p>some info I've found so far</p>
<blockquote>
<p><a href="http://groovy.codehaus.org/Groovlets" rel="nofollow">Groovy Servlets</a></p>
<p><a href="http://www.grails.org/GSP+Tag+Reference" rel="nofollow">GSP Tag Reference</a></p>
</blockquote>
<p>this is pretty close to what I'm looking for, but still don't know what to download, where to save it, etc...</p>
<blockquote>
<p><a href="http://groovy.codehaus.org/GSP" rel="nofollow">http://groovy.codehaus.org/GSP</a></p>
</blockquote>
<p>And look what it says here...</p>
<blockquote>
<p>GSP are not maintained as a standalone module. But it has been forked and reintegrated in Grails.</p>
</blockquote>
<p>?</p>
http://stackoverflow.com/questions/1786746/php-cms-system-built-with-a-framework-php-framework-and-php-cms/1786810#1786810Comment by on php CMS system built with a framework - php framework AND php CMS2009-11-24T00:41:29Z2009-11-24T00:41:29Zwho's denigrating what????http://stackoverflow.com/questions/1786746/php-cms-system-built-with-a-framework-php-framework-and-php-cms/1786810#1786810Comment by on php CMS system built with a framework - php framework AND php CMS2009-11-23T23:49:11Z2009-11-23T23:49:11Zthanks, that's exactly what I'm looking for... symphony was certainly on the list of frameworks I'd like to peak at...http://stackoverflow.com/questions/1786746/php-cms-system-built-with-a-framework-php-framework-and-php-cms/1786783#1786783Comment by on php CMS system built with a framework - php framework AND php CMS2009-11-23T23:31:22Z2009-11-23T23:31:22Zyeap, I've heard lots of great things about django, I'm just concerned about the hosting availability...http://stackoverflow.com/questions/1152340/why-are-developers-generally-opposed-to-purchasing-software-tools/1152344#1152344Comment by on Why are developers generally opposed to purchasing software tools?2009-11-21T18:24:17Z2009-11-21T18:24:17Zthat's exactly the point, you are paying for the time that someone else spent developing something... It has nothing to do with your are able or not to do it by yourself...http://stackoverflow.com/questions/1649339/how-to-debug-a-gsp-page-no-grails-just-gsp/1650855#1650855Comment by on how to debug a gsp page? (no grails, just gsp)2009-10-31T03:27:30Z2009-10-31T03:27:30Zgood point about the tag libs, had no idea they could be debugged...http://stackoverflow.com/questions/1597086/any-experience-with-play-java-web-development-framework/1649131#1649131Comment by on any experience with "Play" java web development framework?2009-10-30T11:12:21Z2009-10-30T11:12:21ZThanks a lot for sharing your experience with grails. I'm also pretty impressed with Play's documentation...http://stackoverflow.com/questions/1597086/any-experience-with-play-java-web-development-framework/1642258#1642258Comment by on any experience with "Play" java web development framework?2009-10-30T11:10:54Z2009-10-30T11:10:54ZI think that their argument is that controller are just behaviour, that's is no data at all, something like a function library, so they aren't really objects... but anyway I see your point regarding mocking...http://stackoverflow.com/questions/1621708/recommendation-for-choosing-a-new-web-development-stack/1645372#1645372Comment by on recommendation for choosing a new web development stack2009-10-29T23:21:03Z2009-10-29T23:21:03Zthanks for the advice, I'll definetely give grails a try... totally out of topic, is it possible to dbug gsp pages??? I still couldn't find a way to do it?http://stackoverflow.com/questions/1597086/any-experience-with-play-java-web-development-framework/1622660#1622660Comment by on any experience with "Play" java web development framework?2009-10-26T01:30:23Z2009-10-26T01:30:23ZI wonder if it's possible to use groovy all the way... I guess so... Anyway, i think it might be worth giving scala a shot...http://stackoverflow.com/questions/1621708/recommendation-for-choosing-a-new-web-development-stack/1621961#1621961Comment by on recommendation for choosing a new web development stack2009-10-25T21:00:17Z2009-10-25T21:00:17ZEther: I also agree with you, lamp is free and simple, I had a couple of personal projects I developed with php, and I have almost rewritten the whole framework in php, but php is not an option where I work, perhaps I should modify the question the let it be clear... http://stackoverflow.com/questions/1621708/recommendation-for-choosing-a-new-web-development-stack/1621961#1621961Comment by on recommendation for choosing a new web development stack2009-10-25T20:57:34Z2009-10-25T20:57:34Zsorry, I should have been more categoric about it... I agree with you, lamp (or wamp in this case) stack is less bloated far more deployment friendly than .net or java... I don't think I can convince the IT staff about it...http://stackoverflow.com/questions/1621708/recommendation-for-choosing-a-new-web-development-stack/1621961#1621961Comment by on recommendation for choosing a new web development stack2009-10-25T20:24:34Z2009-10-25T20:24:34ZYou are absolutely right, in fact I feel pretty comfortable working with php, but as I said, lamp (nor ruby, nor python) is not an option where I work, it's either .net or java...http://stackoverflow.com/questions/1621708/recommendation-for-choosing-a-new-web-development-stack/1621910#1621910Comment by on recommendation for choosing a new web development stack2009-10-25T20:14:41Z2009-10-25T20:14:41ZYES! you are reading my mind...
so... which one???
http://stackoverflow.com/questions/1621708/recommendation-for-choosing-a-new-web-development-stack/1621743#1621743Comment by on recommendation for choosing a new web development stack2009-10-25T19:17:33Z2009-10-25T19:17:33Zmmm... I think I'll give it a try...http://stackoverflow.com/questions/1621708/recommendation-for-choosing-a-new-web-development-stackComment by on recommendation for choosing a new web development stack2009-10-25T19:01:54Z2009-10-25T19:01:54ZWe really like grails, but we are afraid of all the underneath frameworks (hibernate, spring, etc.) that we have no experience with. I've read that grails is ideal for teams with experience building java web apps the hard way...