active questions tagged web-applications - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T23:17:25Z http://stackoverflow.com/feeds/tag/web-applications http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1936740/how-to-execute-a-java-program-24-x-7-on-linux 1 How to execute a Java program 24 x 7 on linux leftbrainlogic 2009-12-20T19:36:55Z 2009-12-20T20:38:26Z <p>Hello<br/> I have a developed two small Java applications - a vanilla Java app and a Java Web application (i.e. Spring MVC, Servlets, JSP, etc.).<br/> The vanilla application consists of serveral threads which read data continously at varying rates (from once a second to twice a minute) from several websites, process the data and write it to a database.<br/> The Web Application reads the data from the database and presents it using JSPs, etc.<br/></p> <p>I'd now like to deploy the applications to a Linux machine and have them run 24 x 7.<br/> If the applications crash I would like them to be restarted.<br/> What's the best way of doing this?<br/> Thanks<br/></p> http://stackoverflow.com/questions/494120/how-can-i-upload-a-document-to-sharepoint-with-perl 2 How can I upload a document to SharePoint with Perl? Ville M 2009-01-30T01:01:48Z 2009-12-20T14:47:50Z <p>I have a Perl app that runs some perforce operations, in the end I would like it to upload the results to SharePoint website. </p> <p>What is the simplest Perl script that can accomplish a task of adding a document to SharePoint? </p> <p>The script would need to run on Solaris and use as few as possible external libraries as possible (definetely pure classic Perl) getting anything additional installed on these unix boxes is a pain and would have to be done by remote team.</p> <p>If this can uploading document can easily be done with wget, that would be of interest too. Anyways, I am looking for 1 or a couple liner that's easy to understand.</p> <p>Thanks in advance for anything.</p> <p>UPDATES based on comments:</p> <ul> <li><p>Perl Mechanize sounded like a good idea, but for some reason I am not able to authenticate, Error GETing <a href="http://sharepoint" rel="nofollow">http://sharepoint</a> Unauthorized .... I had this: </p></li> </ul> <p><em>my $m = WWW::Mechanize->new();</em> </p> <p><em>$m->credentials($user => $pass);</em> </p> <p><em>$m->get($url);</em> </p> <p>But mechanize won't authenticate against sharepoint for some reason.</p> <ul> <li><p>Does anybody have a link or a sample on how to use sharepoint webdav from unix via perl? I installed and tried <a href="http://www.webdav.org/perldav" rel="nofollow">http://www.webdav.org/perldav</a> tried to open my typical sharepoint site via "dave" webdav browser, but I get ** Unauthorized. ** error. Anybody having luck with the webdav approach with perl on unix? </p></li> </ul> http://stackoverflow.com/questions/1935429/considerations-for-choosing-a-web-application-approach 0 considerations for choosing a web application approach? Avi Y 2009-12-20T10:07:33Z 2009-12-20T13:41:50Z <p>Hi, I am a long time Java web applications developer, and in my experience there are 2 major approaches for building web applications.</p> <p>The first approach, is to use technologies which go back and forth from the client to server like Struts, SpringMVC, JSF and so on. </p> <p>The second is to use technologies which run mostly on the client like Flex, Swing (web start), JavaFX and so on.</p> <p>I know these two approaches are going to stay here for a long time, and I know each has it's advantages and disadvantages.</p> <p>I would really like to know when do you prefer to use each of them? What should I consider when choosing the one over the other?</p> <p>Say whatever comes to your mind in terms of Security, application type, Stateless/Statefull, DB calls, or anything else. </p> <p>It would be interesting to see what are the different aspects.</p> http://stackoverflow.com/questions/1327231/is-it-possible-to-run-c-binded-with-sdlopengl-code-on-a-web-browser 0 Is it possible to run C++ binded with SDL+OpenGL code on a web browser? unknownthreat 2009-08-25T09:57:29Z 2009-12-20T07:52:00Z <p>My client wants her website to have an application that renders 3D (light 3D stuff, we are drawing only flat squares in 3D world) but web programming is not my thing. So I am looking for something that can run a C++ program from a web browser. But I think, if this is the case, then the client side must download the program first, and that's not what I want. The client should only be able to use this application only on the website. </p> <p>I came across Google Native Client, which claims that it can run x86 native code in web applications. I haven't decide whether it is worth it or not and I don't know whether this is what I want or not, so I decided to ask experienced people about this. </p> <p>If I want to have something like this, is what I said above possible? Or I completely need other languages like Flex because it does not worth the trouble? Or is Google Native Client suitable for doing something like this?</p> http://stackoverflow.com/questions/1923151/strategies-for-dealing-with-uris-when-building-an-application-that-sits-behind-a 0 Strategies for dealing with URIs when building an application that sits behind a reverse proxy friedo 2009-12-17T17:01:44Z 2009-12-20T04:52:18Z <p>I'm building an application with a self-contained HTTP server which can be either accessed directly, or put behind a reverse proxy (like Apache <code>mod_proxy</code>). </p> <p>So, let's say my application is running on port 8080 and you set up your Apache like this:</p> <pre><code>ProxyPass /myapp http://localhost:8080 ProxyPassReverse /myapp http://localhost:8080 </code></pre> <p>This will cause HTTP requests coming into the main Apache server that go to <code>/myapp/*</code> to be proxied to my application. If a request comes in like <code>GET /myapp/bar</code>, my application will see <code>GET /bar</code>. This is as it should be.</p> <p>The problem that arises is in generating URIs that have to be translated from my application's URI-space in order to work correctly via the proxy (i.e. prepending <code>/myapp/</code>). </p> <p>The <code>ProxyPassReverse</code> directive takes care of handling this for URIs in HTTP headers (redirects and so forth.) But that doesn't handle URIs in the HTML generated by my application. I'm aware of filters like <code>mod_proxy_html</code>, but this is a non-standard Apache module, and in any case, such filters may not be available for other front-end web servers which are capable of acting as a reverse proxy.</p> <p>So I've come up with a few possible strategies:</p> <ol> <li><p>Require an environment variable be set somewhere that contains the proxy path, and prepend this to all generated URIs. This seems inelegant; it breaks the encapsulation provided by the reverse proxy.</p></li> <li><p>Put the proxy path in a configuration file for my application. Same objection as above.</p></li> <li><p>Use only relative URIs in my application. This can get somewhat tricky; I would have to calculate the path difference between the current resource and where the link is going and add the appropriate number of <code>../</code>'es. Seems messy. Another problem is that some things must generate absolute URIs, like RSS feeds and generated emails.</p></li> <li><p>Use some hacky Javascript on the front-end to mungle URIs in the document text. This seems like a really horrible idea from an interoperability standpoint.</p></li> </ol> <p>This must be a fairly common problem. How have you approached it in the past? What has worked and what has made things more difficult? </p> http://stackoverflow.com/questions/1922993/how-can-i-implement-generating-please-wait-info-for-a-web-app-with-and-with 0 How can I implement "Generating... please wait" info for a web app (with and without JavaScript) Jakub Narębski 2009-12-17T16:37:19Z 2009-12-19T20:48:47Z <p>How can I implement showing "Generating data... please wait" information to a web browser from a web application (if data is not cached it can take some time to generate response), with and without JavaScript (AJAX)? </p> <p>I am interested both in solution using AJAX (where I can replace loading message using JavaScript), and in solution using only server process, without JavaScript (if possible).</p> <p>I'd like to replace loading message with response as soon as it is available.</p> http://stackoverflow.com/questions/1929729/how-would-ning-database-structure-be 1 How would ning database structure be? Masade 2009-12-18T17:48:26Z 2009-12-19T19:52:32Z <p>I was just wondering how woudl the database structure of NING would be.</p> <p>would it be creating seperate tables for each of the site created in it? </p> <p>or would it be using same table for different modules with a website id column in each table?</p> <p>if i would need to search about this kind of database stucture? and reference to read about?</p> http://stackoverflow.com/questions/1930745/looking-for-free-web-based-map-api-recommendations-for-a-future-webapp 2 Looking for free, web-based map API recommendations for a future webapp Bears will eat you 2009-12-18T21:19:57Z 2009-12-19T12:05:39Z <p>I'm doing some research for a Maps project I'll be starting soon, and I'm trying to evaluate which of the Map APIs will be best-suited to this project. I've worked pretty extensively with the Google Maps Javascript API, but no others. My basic requirements are, in no particular order:</p> <ul> <li>Free: as in beer, not necessarily as in speech.</li> <li>Web-based: Javascript, Flash/Flex, Silverlight, etc. are all okay.</li> <li>Long-running and stable: the map needs to be able to live in a browser for days/weeks/months without gradually consuming too much memory or other system resources.</li> <li>Fast: The map absolutely must be able to plot thousands of points (upwards of 10k points) with ease. Every few seconds I need to be able to update a small number of these (say, changing their color).</li> </ul> <p>Other things I'd like to see:</p> <ul> <li>Flexible: the Google Maps JS API is a good example of this. Basically this leads to lots of good things like numerous third-party plugins/extensions, and puts a lot of power in the devs' hands.</li> <li>Well-documented and supported: again, the GMap JS API is a good example. If I'm going to start working with a new, rich API, I'm going to need to be able to find answers.</li> </ul> <p>As of now, I'm inclined to use the Google Map Javascript API since I am familiar with it. However, the question of whether or not the Flash API might be able to handle many points more efficiently and gracefully prompted this SO question.</p> <p>So, what have you had good or bad experiences with? Based on my criteria, which API would you recommend? I'm sure there are good ones out there that I just don't know about.</p> http://stackoverflow.com/questions/1918670/a-way-to-work-on-web-projects-with-others-without-over-writing-files-etc 0 A way to work on web projects with others without over writing files.. etc. Roeland 2009-12-17T00:04:37Z 2009-12-19T01:30:14Z <p>Hey guys, </p> <p>I am a web freelancer and had been doing all coding by myself using netbeans (set up to use a remote server (ftp)).</p> <p>Recently, I started working with 2 other guys. They help me with php and css. The problem is that sometimes we want to work at the same time. Obviously one can immediately see the problems were having. Files being over writting / lost. </p> <p>What do you recommend we do? Is there something like netbeans that allows checking in and out of files. I like netbeans as my editor and would prefer to keep it.</p> <p>To give you a little extra information on our workflow. Usually I set up a dev site (generally a subdomain, dev.site.com) and a live site (site.com). All work is done on the dev site which I then move to live site once all is finished. I never use localhost sites.</p> <p>Also</p> http://stackoverflow.com/questions/1926475/iphone-native-app-with-locally-stored-webapp 0 iPhone: Native App with Locally Stored Webapp? Jordan 2009-12-18T05:30:17Z 2009-12-18T15:16:52Z <p>Is it possible to write a webapp, then embed it in a native app so it can be launched without data and sold through the app store? </p> <p>The Pre makes it easy to reference files in the local file structure, so it's very easy to build a webapp (HTML, CSS and Javascript) and embed it into a native app. </p> <p>Is it possible to take the same plain HTML, CSS and Javascript (no Mojo/Webos-specific code) and embed it in the same way into a native iPhone app? This would make it seem to the user as if the icon in the home menu launches a webapp, but the app can be accessed without any data and can be sold through the app store. </p> <p>Thanks, ~J</p> http://stackoverflow.com/questions/1924116/application-gui-template-vs-website-template 2 Application GUI Template vs Website Template Joe 2009-12-17T19:48:53Z 2009-12-17T20:21:11Z <p>I've searched and search and searched, for application design GUI ideas. But everytime I search all I seem to find are website templates, I never seem to find templates for building an application gui. Does anyone know of any sites that have or show examples of good application gui designs either web or client. Id like to see different examples showing layout options for different controls, tabs, buttons, data lists, menus, images, and so on. If the site also has all the graphic elements (for sale or free) that would be a plus.</p> <p>Thanks</p> http://stackoverflow.com/questions/1137995/uploading-files-with-webservices-hosted-on-iis-best-practises 0 Uploading Files with WebServices hosted on IIS--> Best Practises DEE 2009-07-16T14:27:17Z 2009-12-17T19:00:03Z <p>hi There,</p> <p>We have an application for which UI is built on Flex, and its consuming webservieces built on Dotnet hosted on IIS. we are trying to upload files which are around 100/200 megs , this works like a charm on LAN , if we try to do the same with web service hosted on public ip machines , then this would fail very often(obviously bcoz of lesser bandwidth ) . we have tried increasing executionTimeout(up to 10 minutes) maxRequestLength (up to 200 megs) , this didn't help . so we were thinking what would be the best way to approach this problem , and also what are the best practices which are used in this space.</p> <p>Thanks for your inputs.</p> <p>Regards Deepak</p> http://stackoverflow.com/questions/1918093/best-way-to-seamlessly-silently-authenticate-with-a-second-webapp-while-logged 1 Best way to seamlessly & silently authenticate with a second webapp while logged in to a first? Keith Humm 2009-12-16T21:59:56Z 2009-12-17T17:46:50Z <p>Guys and girls:</p> <p>Third party app (A) needs to link users to our app (B) and log them in behind the scenes.</p> <p>Both apps work independently with their own auth systems. Users share a common unique ID, but have different authentication tokens (username/password/key etc) at each app.</p> <p>The two complicating factors are as follows:</p> <ol> <li>One app B user may associate with two app A users (e.g. both accounts at app B would redirect and login to the same app A account)</li> <li>The app B user may not actually have any existing auth tokens, only their personal record and user ID, but we still want to be able to log them in if they are coming from app A.</li> </ol> <p>My first thoughts were OAuth - but I don't think it will work as some users don't have app B accounts and thus won't be able to log in to grant app A access (see point 2 above). </p> <p>The simplest way I have come up with is:</p> <ol> <li>Each app has a pre-shared key e.g. "LOLS"</li> <li>Common hash algo generates indepentent identical tokens e.g. hash(PSK + UID)</li> <li>App B stores hashed tokens for each user</li> <li>App A sends POST with UID and hashed token to App B, which uses it to identify and auth against a user</li> </ol> <p>The problem with this is that it's hideously insecure. Anyone with knowledge of the pre-shared key (any system admin) and a user's ID (once again, any system admin) would be able to authenticate as ANY user, which is unacceptable.</p> <p>Does anyone have any solutions? I'd prefer existing standards but am open to customised implementations. We can't really do much to app B other than to get them to use whatever API we provide.</p> http://stackoverflow.com/questions/326467/gwt-without-java-script 0 GWT without Java Script? Loki 2008-11-28T19:10:26Z 2009-12-17T06:33:00Z <p>I was looking into GWT. It seems nice, but our software have the must work without JS requirement. Is it possible?</p> http://stackoverflow.com/questions/1253683/websocket-for-html5 2 WebSocket for HTML5 Sareuon 2009-08-10T08:19:53Z 2009-12-17T02:48:49Z <p>Introduction: I am going to develop the instance messaging that is run on the browser.</p> <p>Problem: Unfortunately I can not find and no idea what are the browser that is support with web-socket.</p> <p>Question: What are the browser that support web-socket?</p> http://stackoverflow.com/questions/1839198/what-java-web-framework-to-use-if-jsf-is-oversized 1 What Java-Web-Framework to use if JSF is oversized? Mulmoth 2009-12-03T10:56:37Z 2009-12-16T21:54:53Z <p>Hi, we think about to move a project from PHP to Java. It's a small web application with about 5 pages. We have JSF-experience, but i think JSF will be oversized and too cumbersome (we will massivly make use of JS). What can you recommend? GWT?</p> http://stackoverflow.com/questions/1917454/busy-time-for-scheduled-events 0 "Busy" time for scheduled events Patrick J. Anderson 2009-12-16T20:28:49Z 2009-12-16T21:14:59Z <p>I'm writing a "signout" web application in Python and have been mulling over how to prevent users from reserving a resource during time when that specific resource is being used. I'd like to exclude those times when users fill out a reservation form?</p> <p>The duration of a reservation might span multiple days and weeks.</p> <p>Any ideas on how to achieve this?</p> http://stackoverflow.com/questions/893767/oracle-forms-applications-in-internet-explorer-8-using-jinitator 0 Oracle Forms/Applications in Internet Explorer 8 using JInitator Xap 2009-05-21T16:19:30Z 2009-12-16T18:29:42Z <p>Has anyone been able to get Oracle Forms running JInitator to loan in Internet Explorer 8 yet? I have tried removing all add-ons, various version of Java, add the domain to the trusted sites using wildcards, and using compatibility mode to no avail. I am looking to get our Oracle guys to kick there Internet Explorer 6 habit. This is related to Oracle E-Business.</p> http://stackoverflow.com/questions/1913048/adding-a-link-to-a-trshowdetail-disclosuretext 0 Adding a link to a tr:showDetail DisclosureText ndle 2009-12-16T08:01:38Z 2009-12-16T08:01:38Z <p>I wonder if it is possible to add a link next to and in the same line as the disclosureText of a tr:showDetail component. I know that we could use the f:facet tag to set the discloseText, but then the discloseText won't be clickable to open/close the details of the component.</p> <p>Another issue I have for this component is that its PPR does not work. I am using it within a h:form and a html body (this is in the template). It does a full page refresh every time I clicked on it to open/close the component. I tried to use the trh:body in my template instead of html body to support PPR (I think tr:showDetail needs to be in trh:body or a tr:form, please let me know if this is right), then my tr:showDetail component won't work at all. it rendered, but could not open/close it.</p> <p>Please let me know how should I support PPR and put the link next to and in the same line as the discloseText. thanks.</p> http://stackoverflow.com/questions/147164/sms-web-app-providers-of-sms-long-codes-for-use-by-u-s-carrier-subscribers 6 SMS + Web app: Providers of SMS "Long codes" for use by U.S. carrier subscribers within U.S.? fourh 2008-09-29T01:16:04Z 2009-12-16T01:39:20Z <p>Q.: How to get a cellular phone SMS "Long code" for use by U.S. carrier subscribers within U.S.?</p> <p>Background: I'm building a web app that receives queries from/sends answers to cell phones. The app design (and business model) expects to communicate with cell devices via SMS, addressing the web app via an SMS "Long code" (VMN or MSISDN). The mobile phone subscribers will be sending/receiving within the U.S. and using U.S. carriers. Long codes are not available within the U.S. cellular services.</p> http://stackoverflow.com/questions/1909087/back-behavior-in-rich-web-apps-true-user-assumption 2 "Back" behavior in rich web apps, true user assumption? marshall g 2009-12-15T17:35:23Z 2009-12-15T23:34:13Z <p>Hello Community,</p> <p>Many client side code libraries &amp; tool kits, for example Yahoo's YUI and Google's GWT support managing state history for the user experience. When implemented it allows a user to revert to a previous app state on the same page when they click the Back button or Backspace key. </p> <p>In <a href="http://code.google.com/events/io/2009/sessions/GoogleWebToolkitBestPractices.html" rel="nofollow">this video</a> from Google IO the implementation of this type of history management is strongly recommended and in fact assumed to be a part of rich web apps.</p> <p>I see the value in such an approach but I'm not convinced it really supports the average user's expectations. In researching for this question on StackOverflow I found many rants from people about the evil of overriding "Back" functionality, couldn't it be argued that this approach falls into that category? </p> <p>Personally I have been frustrated many times when "Back" merely changed the page state, when what I really wanted was to exit to my last browse location. <em>For my usage the 99% use case for Back is not a state change, but a page change</em>.</p> <p>Finally, my real question is: <strong>How can we support history management for rich web apps without overriding "Back"?</strong></p> <p><strong>Edit (best practice roundup):</strong></p> <ul> <li><p>After reading Michael's blog post, I'm thinking now that for undo on non-link user control (dropdown, text fields etc.) i would rely on Control-Z and/or a button - a UI pattern that is widely supported.</p></li> <li><p>Back should revert <strong>at most</strong> the most coarse grained view changes the rich web app offers. It should emulate browser history by remembering only a single branch in the navigation tree: repeating back always leads to the root, and then the last page visited.</p></li> </ul> http://stackoverflow.com/questions/1910454/websphere-classloading 0 Websphere Classloading Barun 2009-12-15T21:16:40Z 2009-12-15T22:07:23Z <p>We have an application deployed in Websphere application server 7. Its deployed and functioning in various environments. But it gave a method not found exception in one new env. On digging deeper we found that a particular class was present in 2 jars and the class from the "wrong" jar was getting loaded in the new env. i went through the detailed class loader view and the sequence of the loading of jars were different in it.</p> <p>On further investigation there seemed to be random variance in the order in which the jar files were loaded in each env.</p> <p>2 questions:</p> <p>1) On which factor does the WAS class loading policy depend &amp; any suggestion for rectifying the problem?</p> <p>2) More generally when we specify supposing *.jar in the classpath for any java program how does any JVM load the jars? Like is it alphabetical or according to time modified or any such file property?</p> http://stackoverflow.com/questions/1849330/what-to-do-about-storing-user-uploaded-files-in-a-zend-framework-application 2 What to do about storing user uploaded files in a Zend Framework application? Andrew 2009-12-04T20:04:30Z 2009-12-15T21:57:56Z <p>I'm creating a web application that will involve habitual file uploading and retrieval (PDFs, Word Documents, etc).</p> <p>Here are the requirements:</p> <ul> <li>need to be able to link to them in my view script so a user can download the files.</li> <li>files should not be accessible to users who are not logged in.</li> </ul> <p><strong>Question #1: Where should I store these files?</strong></p> <ol> <li><p>On the file system?</p> <ul> <li>Does this mean an <code>uploads</code> directory in my <code>public</code> directory?</li> <li>I also want it to be easy for me to deploy a new version of my application when changes are made to the code. Currently I have a process where I upload my application in a directory titled with the current date (i.e. <code>2009-12-01</code>) and create a sym link to it titled <code>current</code>. This would mean that the <code>uploads</code> directory would need to be outside of this directory so it could be shared among all the different versions of the application, regardless of which one is being used at the time.</li> </ul></li> <li><p>In the database?</p> <ul> <li>I could store the file contents in the database and serve them up when a user requests to download them. This would keep the files in my application secure from non-authorized users, but I could achieve the same result once I create a controller to do this work.</li> <li>This would solve the issue of having to sym link.</li> <li>However, this might be bad practice (storing file contents in a database in addition to information).</li> </ul></li> </ol> <p>What do you think I should do?</p> <h2>Solution:</h2> <p>Here's what I ended up doing:</p> <p>I deploy a new version of my application, and create a symlink to the version I would like to use:</p> <pre><code>/server/myapp/releases/2009-12-15 /server/myapp/current -&gt; /server/myapp/releases/2009-12-15 </code></pre> <p>I created a directory above my application directory, and a symlink to that directory in my application:</p> <pre><code>/server/uploads /server/myapp/current/application/data/uploads -&gt; /server/uploads </code></pre> <p>I defined an <code>APPLICATION_UPLOADS_DIR</code> variable in my <code>/public/index.php</code> file:</p> <pre><code>// Define path to uploads directory defined('APPLICATION_UPLOADS_DIR') || define('APPLICATION_UPLOADS_DIR', realpath(dirname(__FILE__) . '/../data/uploads')); </code></pre> <p>And used this variable in my upload form to set the directory to upload to:</p> <pre><code>&lt;?php class Default_Form_UploadFile extends Zend_Form { public function init() { //excerpt $file = new Zend_Form_Element_File('file'); $file-&gt;setLabel('File to upload:') -&gt;setRequired(true) -&gt;setDestination(APPLICATION_UPLOADS_DIR); } } </code></pre> <p>In my controller, I rename the file to something unique so it can't be overwritten by a file with the same name. I save the unique filename, original filename, and mime-type in the database so I can use it later:</p> <pre><code>public function uploadAction() { //...excerpt...form has already been validated $originalFilename = pathinfo($form-&gt;file-&gt;getFileName()); $newFilename = 'file-' . uniqid() . '.' . $originalFilename['extension']; $form-&gt;file-&gt;addFilter('Rename', $newFilename); try { $form-&gt;file-&gt;receive(); //upload complete! $file = new Default_Model_File(); $file-&gt;setDisplayFilename($originalFilename['basename']) -&gt;setActualFilename($newFilename) -&gt;setMimeType($form-&gt;file-&gt;getMimeType()) -&gt;setDescription($form-&gt;description-&gt;getValue()); $file-&gt;save(); return $this-&gt;_helper-&gt;FlashMessenger(array('success'=&gt;'The file has been uploaded.')); } catch (Exception $exception) { //error } } </code></pre> <p>To download the files, I created a download action which retrieves the file and sends it to the user with the help of <a href="http://www.noginn.com/2009/03/08/sending-files-with-the-zend-framework/" rel="nofollow">Noginn's SendFile Action Helper</a>.</p> <pre><code>public function downloadAction() { //user already has permission to download the file $this-&gt;_helper-&gt;layout()-&gt;disableLayout(); //won't work if you don't do this $file = $this-&gt;_getFileFromRequest(); $location = APPLICATION_UPLOADS_DIR . '/' . $file-&gt;getActualFilename(); $mimeType = $file-&gt;getMimeType(); $filename = $file-&gt;getDisplayFilename(); $this-&gt;_helper-&gt;sendFile($location, $mimeType, array( 'disposition' =&gt; 'attachment', 'filename' =&gt; $filename )); } </code></pre> <p>To offer a download link in the view script, I point them to the download action with the file id param:</p> <pre><code>&lt;a href="&lt;?php echo $this-&gt;url(array( 'controller'=&gt;'files', 'action'=&gt;'download', 'file'=&gt;$file-&gt;id)); ?&gt;"&gt;&lt;?php echo $file-&gt;displayFilename; ?&gt;&lt;/a&gt; </code></pre> <p>That's it! If you have any other advice or criticisms of this method, please post your answers/comments.</p> http://stackoverflow.com/questions/1909572/is-icalendar-ics-the-only-way-to-push-calendar-data 3 Is iCalendar (.ics) the only way to push calendar data? Jason Rhodes 2009-12-15T18:55:32Z 2009-12-15T19:47:44Z <p>If you were building an application that tracked event data, how would you push that event data out so it could be on people's personal calendars and smartphones?</p> <p>My thought was to create an .ics file and subscribe to it via Google Calendar, Outlook, Exchange, etc. But they appear to subscribe to a "snapshot" of the file, and don't consistently check the file for updates. If I want the updates to happen in near real-time, is there a better way to push out that calendar data than the .ics iCalendar format?</p> <p>We use Exchange here at my company, and so when I create an event on any of my calendars (via Outlook, Entourage, or my iPhone, all connected to my Exchange user account), the event appears on all 3 applications in under 1 minute. </p> <p>Is there a way to push event data to the Exchange server from my database in a similar way?</p> http://stackoverflow.com/questions/1888032/override-302-response-in-weblogic 0 Override 302 response in WebLogic Superfilin 2009-12-11T13:20:21Z 2009-12-15T15:53:10Z <p>When I do a redirect inside J2EE web application deployed on WebLogic it sends back to the client the following response:</p> <pre><code>HTTP/1.1 302 Moved Temporarily Cache-Control: no-cache="set-cookie" Date: Sat, 12 Dec 2009 07:37:43 GMT Transfer-Encoding: chunked Location: http://server:port/front/page Set-Cookie: JSESSIONID=CDdjLjLHSLlGxzzBT7dmLCw7JFZyBTxp95gJyxSL8GLS2gpNGKpb!1582307085; path=/ X-Powered-By: Servlet/2.4 JSP/2.0 01d7 &lt;html&gt;&lt;head&gt;&lt;title&gt;302 Moved Temporarily&lt;/title&gt;&lt;/head&gt; &lt;body bgcolor="#FFFFFF"&gt; &lt;p&gt;This document you requested has moved temporarily.&lt;/p&gt; &lt;p&gt;It's now at &lt;a href="http://server:port/front/page"&gt;http://server:port/front/page&lt;/a&gt;.&lt;/p&gt; &lt;/body&gt;&lt;/html&gt; 0000 </code></pre> <p>Is there a way to override that HTML?</p> http://stackoverflow.com/questions/1901448/codeigniter-in-wordpress-page 0 Codeigniter In Wordpress Page unknown (google) 2009-12-14T15:11:37Z 2009-12-15T15:02:00Z <p>Alright, I have a wordpress site, that I want to have a clientportal built with codeigniter in it. For the sake of continued theme, I would like to have the codeigniter program where the page/text would normally be.</p> <p>Here is the site <a href="http://foretruss.com/wordpress/?page%5Fid=8" rel="nofollow">http://foretruss.com/wordpress/?page%5Fid=8</a> you can see the error I get when I have php_exec plugin installed and use the snippet.</p> <p>Any Idea's/help/word of advice?</p> http://stackoverflow.com/questions/1905329/how-to-run-an-asp-net-application-on-another-system 0 How to run an ASP.NET Application on Another System? tibin mathew 2009-12-15T05:22:27Z 2009-12-15T06:38:28Z <p>I have developed an ASP.NET web application in visual studio 2008. I want to run the same application on another system, but Visual Studio is not installed on that system. Is there a way I can run without visual studio?</p> <p>I heard about deploying, but I don't know much about it.</p> http://stackoverflow.com/questions/1904941/multiple-db-platforms-for-a-single-app 0 Multiple DB Platforms For A Single App matt 2009-12-15T03:04:25Z 2009-12-15T03:14:21Z <p>is it generally acceptable to store relational data in an rdbms like mysql, and place, lets say, arbitrary relationship data in a separate graph database system like neo4j? what about primary keys referenced in one db to another? or, another example: using mongodb for log data when mysql is the primary database platform for the application? </p> <p>i would consider a scenario like using the sphinx search engine as a full-text backend populated by mysql to be a solid example of this being viable in practice, but would like to hear what others think.</p> <p>an example implementation would be having entities related to a piece of content stored in mysql, and having deep relationships between entities stored in neo4j.</p> http://stackoverflow.com/questions/1903943/web-application-testing-rig-what-do-you-use-any-suggestions 1 Web Application Testing Rig: What do you use? Any suggestions? Ev 2009-12-14T22:24:48Z 2009-12-14T23:49:17Z <p>Hi guys,</p> <p>I have recently inherited testing responsibility on a web application. A lot of our testing is related to specific operating systems and browsers. </p> <p>Does anyone have suggestions on building a test rig? I am not talking about automated testing (that is a separate issue that I'm working on). This is more for confirming specific bugs. </p> <p>I was thinking of getting a medium powered desktop machine and multi booting several versions of Windows, but that seems like quite a to-do. Is there a better solution? </p> <p>I would be open to multiple Windows Desktop VPS machines, but I can't seem to find anything suitable. </p> <p>Feel free to suggest anything!</p> http://stackoverflow.com/questions/1629587/oc4j-problem-with-ssl-secure-web-site-xml 1 OC4J problem with ssl (secure-web-site.xml) michal 2009-10-27T09:15:15Z 2009-12-14T20:00:11Z <p>I'm working on eclipse and after making some changes in application and redeploying EAR file on OC4J server (i've added ssl support) my application binding in secure-web-site.xml ( i mean: tag) disappears or rather is not adding. What do i have to do to get this done automatically ? </p>