active questions tagged webapp - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T05:14:36Zhttp://stackoverflow.com/feeds/tag/webapphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1831734/iphone-web-app-disable-cache1iPhone Web App disable cacheBenoit2009-12-02T09:29:29Z2009-12-02T18:38:51Z
<p>Hi,</p>
<p>I have an built an iPhone webapp using PHP. The main (and only) page includes the <em>apple-mobile-web-app-capable</em> and <em>apple-touch-fullscreen</em> meta tags so that it can run fullscreen once added the the homescreen. However, it seems every time I launch the app from the homescreen, the cache version of the page is used instead of refreshing the page (and of course, I need the page to be updated on startup, and cannot use Ajax here - need to dynamically authenticate the user with SSO phpCAS). I did not use any manifest file and tried adding meta tags about cache without success. Does anybody know how to fix this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1380882/how-to-embed-hsql-in-file-with-spring-to-a-webapp1How to embed HSQL in file with Spring to a WebApp atoms2009-09-04T18:41:11Z2009-12-02T13:52:36Z
<p>I have a webApp whit Spring and works correctly when I use hsql in server mode but in file mode it only passes the unit test. This is my data source:</p>
<pre><code><bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="org.hsqldb.jdbcDriver" />
<property name="url" value="jdbc:hsqldb:hsql://localhost/images" />
<property name="username" value="sa" />
<property name="password" value="" />
</bean>
</code></pre>
<p>I just change this line</p>
<pre><code> <property name="url" value="jdbc:hsqldb:hsql://localhost/images" />
( -- Server mode)
</code></pre>
<p>for this</p>
<pre><code> <property name="url" value="jdbc:hsqldb:file:data/images" />
(-- In file)
</code></pre>
<p>And it just pass the unit test, and fail in the web appp.</p>
<p>I suposse that in in file mode when I run the webapp Hsql doesn't find the file of the database.</p>
<p>I allready try to put the data of the database in the root of the webapp and inside the web-inf and doesn't work.</p>
http://stackoverflow.com/questions/1824099/tomcat-per-webapp-memory-settings1Tomcat per webapp memory settings Ganesh2009-12-01T05:05:34Z2009-12-01T21:08:30Z
<p>I am having two webapplication running inside tomcat. Java Heap space is allocated for Tomcat and it is shared for both appliaction. In that one application consumes more and other is getting OUT_OF_MEMORY. </p>
<p>Is there any way to set memory settings per web application. Say 70% for one webapp and 30% for other from the overall memory allocated to Tomcat.</p>
<p>Regards
Ganesh</p>
http://stackoverflow.com/questions/1816433/tomcat6-application-deployment-error0tomcat6 application deployment errorunknown (yahoo)2009-11-29T19:04:40Z2009-11-29T19:33:16Z
<p>Hi,</p>
<p>I am new to tomcat and servlets and am trying to deploy my first web application in tomcat and the index.jsp page is showing up blank.</p>
<p>It works fine in eclipse. I have the web.xml for the application setup to have the index.jsp as the default page. I am able to run the application and debug it in eclipse but when I export it as a WAR file and deploy it in tomcat and try to access it through a regular browser I get a blank page.</p>
<p>What am I missing here? Any help is greatly appreciated.</p>
<p>Thanks,
- Vas</p>
http://stackoverflow.com/questions/1782475/persisting-persistence-or-moving-legacy-webapp-to-non-relational-store0persisting persistence; or moving legacy webapp to non-relational store hkernel2009-11-23T11:11:25Z2009-11-25T10:03:50Z
<p>Suppose you have a huge app with a data access layer bound to SQL
You want to provide other non-sql DAL, for instance a GoogleAppEngine instance or XML-based backup.
How would you approach this migration to a different storage paradigm but with limited flexibility, since it is legacy.</p>
<p>I might be missing info here, but One solution I have in mind is to first rewrite the current legacy DAL into a standard API base, for instance JDO; from there, interfacing with any storage would be a matter of time based on the technology-specific learning curve.</p>
<p>AND OR NAND?</p>
http://stackoverflow.com/questions/1784414/how-should-i-handle-uploads-centrally-and-sanely-in-my-web-app0How should I handle uploads centrally and sanely in my web app?Adam Taylor2009-11-23T16:46:51Z2009-11-24T23:31:27Z
<p>Hi,</p>
<p>I am creating a web application, which is basically a very specialised CMS. It's written in PHP with Codeigniter (though the specifics are not important) and is structure according to the MVC pattern.</p>
<p>Many entities in this webapp require the ability to have uploads, e.g pages, articles etc.</p>
<p>I have an upload controller which works fine on its own. How it functions is that we have a media table which records meta data about an upload, and then a number of other tables which map a specific media item to an article/page etc so <code>articles_media</code>, <code>pages_media</code> etc. These tables just contain a <code>media_id</code> and an <code>article/page/etc_id</code> </p>
<p>I clearly don't want to copy and paste the upload code throughout the app so when you are on an article_create view, for example, there is a link to the upload controller which opens in a pop up allowing you to upload an image. </p>
<p>The problem with this is that at the point at which you want to upload an image you haven't actually created the article/page etc. so there is no ID that can be passed to the upload controller to map the uploaded media to the specific article/page etc.</p>
<p>My "solution" which feels completely insane, is to add an <code>is_published</code> field to the models that require uploads and when you get to the create page to instantly create it with all blank values except <code>is_published = 0</code> and then I have an ID I can pass to the uploader.</p>
<p>This does work but it feels sub-optimal, for starters I'm going to [potentially] end up with many blank rows in the database.</p>
<p>How do sensible people normally do handle this? I don't require any specific implementation help, I'll figure out the required PHP myself but my brain cannot seem to come up with a logical solution to the overall problem.</p>
<p>I thought my mapping between media, articles_media and articles was neat but maybe this is also part of the problem...?</p>
<p>In theory I'd like a user to be able to upload an arbitrary number of media files, though in practice this is actually meant to be quite limited, as in you can only have one upload with one article etc.</p>
<p>I would appreciate informed opinions - I'm assuming there is a [relatively] straightforward "best practice" to this problem that I just can't seem to come up with myself.</p>
http://stackoverflow.com/questions/1788605/can-iphone-safari-be-prevented-from-showing-the-navigation-bar-during-an-ajax-cal0Can iPhone Safari be prevented from showing the navigation bar during an AJAX call?Michael T.2009-11-24T08:14:52Z2009-11-24T20:36:48Z
<p>I've got an iPhone web-app which I'd like to look as native as possible. I've used the scrolling trick to get rid of Safari's navigation, and taken away scrolling to prevent it from coming back; however, every time my app pulls an XHR, it shows the navigation again. Because users will need to use external links to get into the app, I cannot use a standalone bookmark. Is there any way to do the AJAX calls on the sneak?</p>
<p><hr></p>
<p>Edit: I found that it was actually the fact that I'm using the hash method for AJAX history. It makes sense that the nav slides out temporarily, since I'm updating the URL. Thanks for your responses.</p>
http://stackoverflow.com/questions/1781431/python-for-web-scripting1Python for web scriptingNimbuz2009-11-23T06:28:45Z2009-11-23T17:53:51Z
<p>I'm just starting out with Python and have practiced so far in the IDLE interface. Now I'd like to configure Python with MAMP so I can start creating really basic webapps — using Python inside HTML, or well, vice-versa. (I'm assuming HTML is allowed in Python, just like PHP? If not, are there any modules/template engines for that?)</p>
<p>What modules do I need to install to run .py from my localhost? Googling a bit, it seems there're various methods — mod_python, FastCGI etc.. which one should I use and how to install it with MAMP Pro 1.8.2?</p>
<p>Many thanks</p>
http://stackoverflow.com/questions/1763102/switched-to-snow-leopard-http-requests-stopped-working-in-simulator-webapp0Switched to Snow Leopard: HTTP-Requests stopped working in simulator (WebApp)Jonas2009-11-19T12:55:49Z2009-11-20T23:26:02Z
<p>Hi!</p>
<p>I've created a web app in Mac OS 10.5 which receives data by sending http requests like this:</p>
<pre><code>var http = new XMLHttpRequest();
var url = "http://www.test1234.com/data.php?param1=" + param1 + "&param2=" + param2 + "&param3=" + param3;
http.onreadystatechange= function()
{
var result= null;
switch(http.readyState)
{
case 4:
if(http.status==200)
{
result = eval('(' + http.responseText + ')');
result = result[0];
if (result.status == "OK") {
alert("Success!");
return;
}
alert("Error!");
}else{
alert("Error
}
break;
default:
break;
}
}
http.open("GET", url, true);
http.setRequestHeader("Content-type", "text/xml; charset=utf-8");
http.send(null);
</code></pre>
<p>It worked fine in the 10.5 iPhone simulator (Xcode 3.1.4), it still works fine on my devices (when it's deployed to the server) - but it doesn't work in the 10.6.2 simulator (Xcode 3.2.1). It never reaches the http.onreadystatechange method.</p>
<p>Any ideas?</p>
<p>Regards,
Jonas</p>
http://stackoverflow.com/questions/1760815/tomcat-parent-webapp-shared-by-configurable-children-webapps1Tomcat parent webapp shared by configurable children webappsmiltonh262009-11-19T04:04:52Z2009-11-20T01:27:26Z
<p>Currently, we support many clients using the same web app, but each client has a different configuration for accessing their database, setting files etc. As the client list grows, updating the web apps is becoming increasingly arduous, and the duplication of resources is a waste of memory, file space, etc.. </p>
<p>What we'd like to do is have a parent web app which is shared by all children web apps. Then have each child web app carry only files specific to them. When the child web app starts up, Tomcat loads the web app from the parent web app and then overrides any files defined in the child web app following an identical package structure. </p>
<p>We've been googling around and haven't found a ready or complete solution. Solutions we've looked at:</p>
<ol>
<li>Tomcat common/share - could handle class and JAR files, but we don't see a way to handle static and JSP resources residing above the WEB-INF dir.</li>
<li>CATALINA_BASE appears to be more suited for running multiple instances of Tomcat which we'd rather avoid</li>
<li>A Maven possible solution, but we are not big fans of Maven, so would rather avoid it also.</li>
</ol>
<p>Anybody have suggestions or ideas on how to solve this? If Tomcat configuration is not possible, what about a different application server (such as Glassfish) or a tool for doing dynamic file updated (such as OSGi, rsync). Would like to remove the resource duplication if possible. </p>
<p>Thank you. </p>
http://stackoverflow.com/questions/1760458/should-i-implement-a-custom-properties-file-based-authorization-tag-to-go-with-au0Should I implement a custom properties file based authorization tag to go with authz from Acegi Security?LES22009-11-19T02:04:38Z2009-11-19T14:49:24Z
<p>I'm searching for the <em>best</em> way to handle view-level authorization (where you hide markup based on a user's roles).</p>
<p>The typical way to do this is with the Acegi Security authz tag, as follows:</p>
<pre><code><authz:authorize ifAnyGranted="ROLE_FOO, ROLE_BAR, ROLE_BLAH">
<!-- protected content here -->
</authz:authorize>
</code></pre>
<p>The problem with that approach is that it quickly gets messy. For one, you either hard code the user roles as above or you create a constants file that duplicates them all. Second, there's no way with the current scheme to group roles logically. I suppose one solution is to define a separate role for each UI element, <strike>but then the declarative method level security on the business methods would need to be updated for each UI element (would that be a good thing?).</strike> This would <strike>also</strike> cause a proliferation of user roles! The use cases for my application actually mandate very few, e.g., Manager, Manager Supervisor, Super User (can do everything), Read Only, etc.</p>
<p>The solution that comes to mind is to treat the authorizable UI elements similar to message resources. That is, define a series of "authorization points" in a properties file similar to a MessageResources file. My initial thoughts are as follows:</p>
<pre><code>com.lingoswap.home.editUserNameButton.ifAnyGranted=ROLE_FOO, ROLE_BAR, ROLE_BLAH
com.lingoswap.home.deleteAccountButton.ifNotGranted=ROLE_NOOB
com.lingoswap.home.deleteAccountButton.ifAnyGranted=ROLE_ADMIN
...
</code></pre>
<p>To protect content on the home page, we would then use a different protected tag (one that borrowed heavily from the original authz, possibly a sub class):</p>
<pre><code><security:protect component="com.lingoswap.home.editUserNameButton">
<!-- edit user name button -->
</security:protect>
<security:protect component="com.lingoswap.deleteAccountButton">
<!-- show the awesome delete account button that's not for nincompoops -->
</security:protect>
</code></pre>
<p>The advantages to this approach are the following:</p>
<ol>
<li>Easy to test - we can write unit tests that verify the user-role-to-ui-element mappings (of course, it still has to be used on JSPs)</li>
<li>Error checking at runtime (and test time) - if a user role is misspelled in the .properties file, we can throw an Exception</li>
<li>Easy to tweak user roles - the requirements team continually refines the user roles; it'd be nice to change them all in one central location</li>
<li>Easy to understand - we can at a glance view the user role permissions for the entire application</li>
<li>Can be done DRYly (using property Spring placeholders to group related roles, e.g., ${readOnlyGroup} can be used in the properties file instead of the actual role names</li>
</ol>
<p>The disadvantages seem to be:</p>
<ol>
<li>Moderate complexity</li>
<li>Others??</li>
</ol>
<p>Thanks for your advice.</p>
<p>Regards,
LES2</p>
http://stackoverflow.com/questions/1729566/derby-log-etc-control-in-a-webapp0derby.log (etc) control in a webappbmargulies2009-11-13T14:31:45Z2009-11-18T14:07:07Z
<p>Derby has a series of configuration options that are controlled by system properties. It's quite painful to arrange system property settings in a webapp. Has anyone come up with a solution?</p>
<p>In addition, I have been unable to make them work in a webapp.</p>
<p>Here is the code of a servlet context listener. derby.log is still created in the cwd of the container, rather than calls being made to my logging procedure.</p>
<pre><code>/**
* Listener to try to get Derby to behave better.
*/
public class ContextListener implements ServletContextListener {
private static final String TEMP_DIR_ATTRIBUTE = "javax.servlet.context.tempdir";
private static ServletContext context;
private static Writer logWriter;
private class LogWriter extends Writer {
@Override
public void close() throws IOException {
}
@Override
public void flush() throws IOException {
}
@Override
public void write(char[] cbuf, int off, int len) throws IOException {
context.log(new String(cbuf, off, len));
}
}
/** {@inheritDoc}*/
public void contextDestroyed(ServletContextEvent sce) {
}
public static Writer getLogSteam() {
return logWriter;
}
/** {@inheritDoc}*/
public void contextInitialized(ServletContextEvent sce) {
logWriter = new LogWriter();
File tempDirFile = (File)sce.getServletContext().getAttribute(TEMP_DIR_ATTRIBUTE);
context = sce.getServletContext();
System.setProperty("derby.system.home", tempDirFile.getAbsolutePath());
System.setProperty("derby.stream.error.method", "com.basistech.vws.ContextListener.getLogStream");
}
}
</code></pre>
http://stackoverflow.com/questions/1744522/best-way-to-synchronize-local-html5-db-storage-with-a-server0Best way to synchronize local HTML5 DB (Storage) with a serverSamuel Michelot2009-11-16T20:02:47Z2009-11-18T11:25:58Z
<p>I am developping a mobile web application (for iPhone) with a local database (using html5 webstorage) so my app is still usable when the user is offline.</p>
<p>This is working perfectly, but I want to save the local data on a server.
So I need to synchronize the local DB with a DB on a server. The synchronisation can only be one way, but in the future, I would like to synchronize it in the both way (server <-> local DB).</p>
<p>This requierement looks very common (or will be common in the future for mobile web app), but I can't find a library doing that.</p>
<p>I know google is doing that in their mobile web app (ex. gmail), and I found the <a href="http://ajaxian.com/archives/web-storage-portability-layer-abstract-on-top-of-html5-and-gears-storage" rel="nofollow">WSPL project</a> a google project but without source to download.</p>
<p>There is also [PersistJS] : a library to abstract HTML storage and gears DB, but it doesn't implement database sync.</p>
<p>If i can't find a solution, I will create a library to do that, as one way sync doesn't look difficult, but I wonder if there are other solutions.</p>
http://stackoverflow.com/questions/1395862/how-to-prompt-a-numpad-in-an-iphone-web-app1how to prompt a numpad in an iphone web app?SimpleCode2009-09-08T19:28:12Z2009-11-16T21:14:19Z
<p>I'm developing a web app for iphone using dashcode. I'm stuck where user needs to enter zip code or phone number and the app doesn't show the numpads but the regular keyboard.</p>
<p>any help would be appreciated.</p>
<p>thanks</p>
http://stackoverflow.com/questions/1731642/is-it-possible-to-use-a-jsp-as-a-template-for-a-servlet1Is it possible to use a JSP as a template for a servlet?Sean Lynch2009-11-13T20:19:05Z2009-11-14T07:44:55Z
<p>I've been intermixing JSPs and Servlets in the web app I'm building and I'm starting to find that my more complex JSPs end up containing a lot of code, which flies in the face of all the MVC lessons that have been pounded into me. I know I can do this by just forwarding to the JSP, but this seems like a stupid hack.</p>
<p>What I'd like to do is use a servlet to do processing and then send a set of values to the JSP to render the HTML and return the response. Something along the lines of:</p>
<pre><code>public class MyServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
// ... Do some processing
resp.getWriter.print(renderJSP("mypage.jsp", values));
}
}
</code></pre>
<p>I've been poking around Sun's documentation and found this: <a href="http://java.sun.com/developer/technicalArticles/javaserverpages/servlets%5Fjsp/" rel="nofollow">http://java.sun.com/developer/technicalArticles/javaserverpages/servlets_jsp/</a>
It seems like the JSP Model 2 architecture is exactly what I want to implement, but I cannot find an example of how one can set that up. For technical reasons, I cannot use one of the more advanced template frameworks like Struts. </p>
<p>Is this possible or a lost cause?</p>
http://stackoverflow.com/questions/8756/iphone-web-applications-templates-frameworks10iPhone web applications, templates, frameworks?Lasse V. Karlsen2008-08-12T12:29:32Z2009-11-14T02:05:26Z
<p>Does anyone have any good starting points for me when looking at making web pages/sites/applications specifically for viewing on the iPhone?</p>
<p>I've looked at templates like the one <a href="http://blog.wired.com/monkeybites/2007/07/meet-joe-hewitt.html" rel="nofollow">Joe Hewitt</a> has made, and also seen some templates I can purchase, which I haven't done yet.</p>
<p>I figured someone else had already started on this track and decided that I could probably leech on their newfound knowledge :)</p>
<p>So, does anyone have any pointers? I'm well aware of the problem that the more such a template/framework makes a web app look like a native iPhone app, the more likely I'm going to get into trouble because it just isn't, but for now I want a framework I can start building on, and then in the process figure out how to make it distinctive enough to be perceived as a web app as well as looking like a native iPhone application.</p>
<p>Specifically I'm looking for features like:</p>
<ul>
<li>stylesheets set up, or pointers to how to do them for iPhone</li>
<li>page flipping animation, ie. pick an item in a list, list scrolls out of view to the left and information for item scrolls in from the right</li>
<li>the animation part would have to work with dynamic pages, ie. not just one big page that has divs set up for each sub-item, which at least one such framework had as a sort of quick fix, I would need to have list item picking load the <em>page</em> for that item, and then when loaded, scroll to it</li>
</ul>
<p><hr /></p>
<p><strong>Edit</strong>: To avoid people reading only the question and answering, before reading my other reply, I'll add my clarification for GPL licensing and similar issues here.</p>
<p>The framework I need to use can not be distributed under a license which would require me to license my own project out under a similar license. The GPL family of licenses allows for exceptions regarding library usage, but this won't apply to this since by necessity, the kind of framework I would need to use would be all source code.</p>
<p>The project can easily accomodate commercial libraries.</p>
<p>Also, I don't need a <em>library</em> or a <em>framework</em> as such, example files that look good and aren't overly obfuscated would be welcome as well.</p>
http://stackoverflow.com/questions/1727359/current-request-global-variable-in-c-on-asp-net0Current request global variable in C# on ASP.NETGuy2009-11-13T05:46:38Z2009-11-13T10:17:56Z
<p>I'm familiar with the Application and Session Key/Value object stores in ASP.NET. I'm looking for a global store that I can put a value into when a request is made that is valid only for the duration of the request but is also accessible to the DLL's in the business layer. I've been told that there's an HttpRequest object that does this but haven't been able to find further info on it.</p>
<p>The use case would be the click of a button on a web page causing a POST to the server and I would then create a value that I would want to stuff into memory just for the duration of the request until I returned the HTML to the client.</p>
http://stackoverflow.com/questions/1710834/iphone-html5s-cache-manifest-common-to-many-webapps0iPhone - HTML5's "cache manifest" Common to many webapps??unknown (google)2009-11-10T20:07:46Z2009-11-12T16:52:10Z
<p>Sorry for the cryptic title.</p>
<p>I would like to know if the cached files from one iPhone webapp using HTML5's manifest capability, can be made available to another webapp from same domain; as in shared libs of javascript code or common image logos. Anyone?</p>
<p>Thanks,</p>
<p>Greg</p>
http://stackoverflow.com/questions/1670658/how-can-i-clean-svn-folders-files-from-src-main-webapp-folder-when-maven2-buil1How can I clean _svn folders/files from 'src/main/webapp' folder when maven2 builds webapp project in netbeans 6.7?unknown (google)2009-11-03T22:48:12Z2009-11-06T02:47:33Z
<p>I have created a webapp using maven2 archetype in netbeans 6.7.</p>
<p>when I do plain build(removing all the plugin configuration), it copies all the required files including the '_svn' folders. But I don't want those files, how can I clean _svn folders/files from the *.war file and from the exploded target folder which contains the 'src/main/webapp' folder's content?</p>
<pre><code> T E S T S
-------------------------------------------------------
Running com.project.project.taglib.SSTest
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Results :
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
[war:war]
Packaging webapp
Assembling webapp[project-servlets] in
[C:\ROOT\1utils\project\project-servlets\trunk\target\project-servlets]
Processing war project
Copying webapp resources[C:\ROOT\1utils\project\project-servlets\trunk\src\main\webapp]
Webapp assembled in[735 msecs]
Building war: C:\ROOT\1utils\project\project-servlets\trunk\target\project-servlets.war
[install:install]
Installing C:\ROOT\1utils\project\project-servlets\trunk\target\project-servlets.war
to C:\LOCALREPO\.m2\com\project\project-servlets\1.0.0\project-servlets-1.0.0.war
</code></pre>
<p>I have managed to use resource filtering in pom.xml to filter out the _svn files, all that works perfectly if I am creating a jar file. But with war, after TEST-phase it copies the 'src/main/webapp' folder's content([war:war]), I can't seem to find a way to locate which config/command does this? is this netbeans? it is any of the plug-ins i am using?
Here is the build section of my pom.xml, help will be much appreciated!!</p>
<pre><code><project>
.. ...
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>_svn/**/*</exclude>
</excludes>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>_svn/**/*</exclude>
</excludes>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/project-servlets/WEB-INF</outputDirectory>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>_svn/**/*</exclude>
</excludes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<verbose>true</verbose>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
<finalName>project-servlets</finalName>
</build>
..
..
</project>
</code></pre>
<p>@Pascal Thivent - thanks a lot for the response.
I added 'maven-war-plugin' configuration and it started to do the packaging twice!!</p>
<pre><code>[war:war] Packaging webapp
Assembling webapp[project-servlets] in [C:\ROOT\1utils\frg\project-servlets\trunk\target\project-servlets]
Processing war project
Copying webapp resources[C:\ROOT\1utils\frg\project-servlets\trunk\src\main\webapp]
Webapp assembled in[391 msecs]
Building war: C:\ROOT\1utils\frg\project-servlets\trunk\target\project-servlets.war [war:war]
Packaging webapp
Assembling webapp[project-servlets] in [C:\ROOT\1utils\frg\project-servlets\trunk\target\project-servlets]
Dependency[Dependency {groupId=log4j, artifactId=log4j, version=1.2.8, type=jar}] has changed (was Dependency {groupId=log4j, artifactId=log4j, version=1.2.8, type=jar}).
Dependency[Dependency {groupId=com.frg, artifactId=project, version=1.1.7, type=jar}] has changed (was Dependency {groupId=com.frg, artifactId=project, version=1.1.7, type=jar}).
Dependency[Dependency {groupId=com.frg, artifactId=commons, version=1.0.3, type=jar}] has changed (was Dependency {groupId=com.frg, artifactId=commons, version=1.0.3, type=jar}).
Dependency[Dependency {groupId=net.sourceforge.jtds, artifactId=jtds, version=1.2.2, type=jar}] has changed (was Dependency {groupId=net.sourceforge.jtds, artifactId=jtds, version=1.2.2, type=jar}).
Processing war project
</code></pre>
<p>The pom file now has following configuration..</p>
<pre><code><plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<executions>
<execution>
<id>war</id>
<phase>package</phase>
<goals><goal>war</goal></goals>
<configuration>
<webResources>
<resource>
<directory>src/main/webapp</directory>
<excludes>
<exclude>_svn/**/*</exclude>
<exclude>**/_svn/**</exclude>
</excludes>
</resource>
</webResources>
</configuration>
</execution>
</executions>
</plugin>
</code></pre>
<p>And I still see the _ svn folders in the war files!! However, after I have changed the _ svn folders to .svn folders, I didn't even need any resource filtering!!
It automatically ignores the '.svn' folders.
I would think there should be a settings somewhere to set the preference from '.svn' to '_svn'. Anyway, this does solve my initial problem, but introduces a backward incompatibility problem with my old .NET versioned projects.. :)</p>
http://stackoverflow.com/questions/1667867/how-to-deploy-a-spring-integration-app-in-tomcat1How to deploy a Spring Integration app in Tomcat?Cuga2009-11-03T15:01:27Z2009-11-05T17:02:52Z
<p>I've gone through the "<a href="http://blog.springsource.com/2009/02/13/982/" rel="nofollow">Spring Integration in 10 minutes</a>" tutorial for setting up a basic Spring Integration application. I'd like to deploy this application in Tomcat and have the input channel live on the server and send the output back to a client, but I'm having a difficult time finding any examples of this. </p>
<p>Could anyone provide me with either some links to a tutorial for how to do this or any other kind of guidance? All help is much appreciated!</p>
http://stackoverflow.com/questions/417515/quick-and-dirty-vs-good-design4quick-and-dirty vs. good designfrustrated2009-01-06T17:51:42Z2009-11-01T11:33:22Z
<p>What do you do when your manager wants you to implement something in a quick and dirty way and you just know it's going to backfire?</p>
<p>My manager wants me to develop a web app for a client and to do it as quickly as possible. This is the first web app we're building for this client, and I think it's important that we do it right so that we will be able to build upon it when they inevitably ask us to enhance it or create a new one. </p>
<p>I'd like to spend some time setting up a framework (even if it's just something simple like <a href="http://www.stripesframework.org/display/stripes/Home" rel="nofollow">Stripes</a>), and configuring tomcat to use DBCP. I also think we should be using css templates, and giving at least a minimum amount of thought to the presentation and design of the app as, in my opinion, nothing looks quite as unprofessional as a poorly designed web page (unless it's an email with really bad grammar).</p>
<p>The problem is not so much that we're under pressure to get this done, but more that my manager does not feel he can justify billing extra hours for something he himself does not consider a necessity. His "just get it done ASAP" approach has already backfired a few times - once, for example, he told me not to design the code to handle a certain error situation as it was very unlikely to occur, and then when it did occur it was a big mess (that I had to clean up).</p>
<p>So what do I do? Do I really do it "quick and dirty"? Do I decide that the quickest way is to do it right and deal with the fallout if it takes me longer than he had hoped? Part of the issue here is that while I have done web development in the past, it's always been within an existing framework, so setting up a framework from scratch involves a learning curve for me.</p>
http://stackoverflow.com/questions/1649234/using-nsuserdefaults-from-javascript-webapp0Using NSUserDefaults from javascript webappN. Benzini2009-10-30T11:17:22Z2009-10-30T13:06:17Z
<p>Hi!
I need to store and access preferences (like colour, etc.) from a javascript webapp.. Is there some webkit access to the NSUserDefaults? (or maybe CFPreferences ?)</p>
http://stackoverflow.com/questions/1623865/best-practices-in-modelling-user-constraints-in-a-webapp3Best practices in modelling user constraints in a webapp?dvd2009-10-26T09:28:21Z2009-10-27T09:27:40Z
<p>I'm building a webapp with role based access control using Acegi (Spring) security. So i have different users with roles: <code>ROLE_ADMIN</code>, <code>ROLE_USER</code> and etc.<br />
However, i need to implement various user constraints. </p>
<p>Let's consider an example:</p>
<blockquote>
<p>Suppose, there is a site where users can watch movies online. There are users with roles <code>ROLE_STANDARD_USER</code> and <code>ROLE_VIP_USER</code>. Standard users can watch 3 movies a week and vip users can watch 10 movies a week plus have some other privileges. And there is one user in standard user group to whom i want to give additional 2 movies per week. The number of allowed movies may sometimes change.<br />
Also, there are various categories of movies: fantasy, comedy, classic, new movies and etc. And i want that some users, regardless of their role, have access only to certain categories. The categories can be created and removed dynamicaly.</p>
</blockquote>
<p>Are there any standard practices for implementing such type of user constraints?<br />
Can/should it be done using Spring Security roles and permissions?<br />
Or i need to consider adding a rule based engine to my app?</p>
<p>Thank you.</p>
<p><strong>Edit:</strong><br />
The example above is fictional, my project is concerned with granting remote access to various networking (and other) equipment for students. However, the types of user constrains are likely to be the same.<br />
Unfortunately, the Model for user access & constraints is not complete and stable. In the near future i might be told to implement various additional constraints for users, that are not known now.<br />
So i would like to select a path now that will ease addition or change of new user constraints in future and would not require significant overhaul of internal model or database structure. If that at all possible.</p>
<p><strong>Edit 2</strong></p>
<p>Currently, basic user constraints are hardcoded (leftover from prototyping system). I guess i'll try refactoring it first to some kind of parametrized business services objects first and then think where can i go from there. I will also consider using Spring Security Authorization Decision Managers.</p>
<p>Thank you for all suggestions!</p>
http://stackoverflow.com/questions/1628278/webkit-on-th-iphone-is-it-possible-to-copy-text-to-the-clipboad-with-javascript0WebKit on th iPhone: is it possible to copy text to the clipboad with JavaScript Alessandro Vernet2009-10-27T01:23:28Z2009-10-27T03:33:28Z
<p>The iPhone 3.0 software added copy/paste, and native application can programmatically copy content to the clipboard. Is it possible to do the same, i.e. copy text to the clipboard, from JavaScript code running inside Safari on the iPhone?</p>
http://stackoverflow.com/questions/1621430/how-do-i-display-real-time-python-script-output-on-a-website1How do I display real-time python script output on a website?Lin2009-10-25T17:10:53Z2009-10-26T03:35:52Z
<p>I have a Python script that outputs something every second or two, but takes a long while to finish completely. I want to set up a website such that someone can directly invoke the script, and the output is sent to the screen while the script is running. </p>
<p>I don't want the user to wait until the script finishes completely, because then all the output is displayed at once. I also tried that, and the connection always times out.</p>
<p>I don't know what this process is called, what terms I'm looking for, and what I need to use. CGI? Ajax? Need some serious guidance here, thanks!</p>
<p>If it matters, I plan to use Nginx as the webserver.</p>
http://stackoverflow.com/questions/1584294/are-there-any-web-apps-that-do-user-stories-cards1Are there any web apps that do user stories cards?nc2009-10-18T07:51:09Z2009-10-24T14:13:05Z
<p>We do distributed agile development and could really us a solution like story cards on a wall/board, only on a webpage where you could easily drag and drop them. Any suggestions? Thanks. </p>
http://stackoverflow.com/questions/1592124/is-it-ok-to-return-application-octet-stream-from-a-rest-interface1Is it ok to return application/octet-stream from a REST interface ?Jacques René Mesrine2009-10-20T02:13:35Z2009-10-22T03:00:35Z
<p>Am I breaking any laws in the REST bible by returning application/octet-stream for my responses ? The REST endpoint receives 5 image urls.</p>
<pre><code>{ "image1": "http://ww.o.com/1.gif",
"image2": "http://www.foo.be/2.gif" }
</code></pre>
<p>and it will download these and return them as application/octet-stream.</p>
<p><strong>CLARIFICATION</strong>: The client that invokes this REST interface is a mobile app. Every additional network connections made will reduce battery life by a few milliamps. I am forced to use REST because it is a company standard. If not, I will do my own binary protocol.</p>
http://stackoverflow.com/questions/1584524/webapp-vs-cms-the-same-or-not0webapp vs. CMS - the same or notChris2009-10-18T10:09:04Z2009-10-18T10:19:40Z
<p>I understand the classical definition of a CMS: it's a "webapp" the main purpose of which is to handle "content", probably that's generated by its users (kind of like all of us here at SO and the content we provide is text and code).</p>
<p>I also always got the impression that creating a CMS is supposed to be a Really Tough Thing. But how so? Isn't a CMS just a webapp like any other. I would guess that many webapps are tougher to code than a traditional CMS.</p>
<p>If I were to think of creating a CMS like creating any other webapp, would I be wrong?</p>
http://stackoverflow.com/questions/1565723/listen-to-another-port-in-a-tomcat-web-application0Listen to another port in a tomcat web applicationJigar Shah2009-10-14T11:33:04Z2009-10-14T11:33:04Z
<p>Hi. I know this is sort of very basic question and as far as i know, there is no built in way to do this. </p>
<p>I have a web app running on tomcat. It exposes web service as well as web application on another port.</p>
<p>Now i want to listen to another port in same application (Actually i want radius client to communicate to my web app). Is there a way to do this ?</p>
http://stackoverflow.com/questions/1524487/browser-download-complete-event2Browser download complete eventlaura2009-10-06T09:16:51Z2009-10-14T08:35:53Z
<p>We've been looking for a while for an answer to this, but haven't found a solution. </p>
<p>We have a web server, which allows the user to download files (pdfs), which are dynamically-generated and served from servlets. We'd like to know when a download has completed (and how: was it successful, did it fail, did the user cancel?).</p>
<p>Is there a way to know this without user input? These files are relatively small so no progress-bar functionality is needed, but we need some sort of "end-hook" which reports back when the download has finished. Is this possible? </p>
<p>[edit] What capability would there be on the browser-side that can detect end-of-download and report back to the server via ajax?</p>