web-development

What percentage of browsers have Google's cached version of JQuery already loaded?

What percentage of browsers would probably have Google's cached version of JQuery already loaded? I am asking this to figure out how fast my page would load on an "average" browser. My page needs both JQuery and JQuery UI. I believe most browsers would probably have JQuery already cached from Google's servers. Is this true? And what are...

[Web Development] - Lua vs PHP/Python/JSP/etc...

I'm about to begin my next web development project and wanted to hear about the merits of Lua within the web-development space. How does Lua compare to PHP/Python/JSP/etc.. for web development? Any reason why Lua would be a poor choice for a web application language vs the others? ...

Why did you stop using Tapestry?

This question goes out to those who have used Tapestry as a web framework and then either gave it up or switched to something else, or even ported their application from Tapestry to something else. The question is why? What led you to make this change? EDIT: Also, what framework (if any) did you change to? ...

What is the difference between Silverlight and XBAP?

What is the difference between Silverlight and XBAP? Where would you use one vs. the other? ...

(javascript) onClick="form.submit(); doesn't work on IE & Opera

Hi. I have a code (see it below). It works perfectly in Firefox: it saves submitted information after clicking __JL_SAVE button and keeps user on same page. But in Internet Explorer & Opera it only redirects to index page (index.php) and doesn't save submitted information. What can I do for solving this problem? Thanks. Here is my code...

DIsable tooltip in project

Is there a method to globally disable the tooltips in a .net project Visual studio 2008. We have implemented tooltip in the web apps, but would like to turn it off for testing. ...

What are your most used generic class you had to write yourself for ZF ?

I just moved from ZF 1.6 to ZF 1.9, there is a lot of changes since i started with it, and i've to refactor some of my libraries. In order to don't forget anything, and to have a great generic library where i can pick up elements, i was wondering what are your most used generic classes you had to write for ZF ? I'm thinking for example...

Keep having to login in Web application

Hi I have written something using the j_security_check. Yet i keep having to login. My web.xml file looks like this: ` FORM /login.jsp /loginFailed.jsp <security-role> <role-name>admin</role-name> </security-role> <security-role> <role-name>user</role-name> </security-...

Apache Tomcat (6.x) SessionID placement

Hey guys, I need to know which class in Tomcat (6.x) is responsible for placing the SessionID either into a cookie or appending it to the request. Is this done after all Filters are passed? I need to modify the SessionID before the response is sent to the browser... ...

Write/get data from joining table in many-many relation

Hi, is there a way to get or write data to/from joining table in many to many relation? I have two tables joined by third. Question one: How can i GET data from the joining(middle) table, when i'm retrieving data in similar query //table1 is "root" table - containing records related to table3 //table2 is joining/cross table //table3 c...

In Smarty-PHP can I cache a registration/sign-up web form ?

I'm using a Smarty template for my web application Registration / Sign-up form. The form is slow to load, can I cache the registration form in order to speed up the loading of the page? On the form page, I use SESSION and do lots of PHP error checking to ensure that the form fields are completely & correctly inputted. If not, I redis...

jBoss 4.0.2 deploying same WAR multiple times causes jBoss to crash because of PermGem/Out-of-Memory Errors

I develop web applications and I use jBoss 4.0.2 and when I have redeployed my WAR several times with eclipse, jBoss will crash because it runs out of memory. And when I have to install new version to production enviroment, it will consume production servers memory, so that means I have to stop jBoss to prevent redeploying eat memory fro...

How to only cache a portion of a page using Smarty Template (PHP) ?

How do I cache everything on a Smarty template page except for a small portion of the content (which is truly dynamic)? ...

How can improve myself in web development?

I am not fully experienced web developer.I am more likely stand alone application guy experienced lots of languages like c,c++,java,c#.I have lots of ideas for web projects wtih knowladge of php and mysql but when i start to develop i give up when i come to design stage.ıt really frustrating , do you have any suggestion for that? ...

Which way to go Web Side ,Mobile Development, Stand alone applications ?

I am currently intern at telecominication company which is major one and also undergraduate student.I have lots of options sitting front.By know i know c,c++,c#,java languages on stand alone application side,on mobile side i trying to get into android world and also know php,mysql,asp.net and also java ee,spring on web side.But i really ...

Performance testing for existing web app - Useful tools?

I'm maintaining a web app that has performance problems. I want to record a series of actions, then play back those actions once I've made changes and compare page load times so that I can quantify the performance improvement. The Selenium IDE does what I need for recording and playing back the actions, but I haven't found an easy way ...

Comparing the uses/applications of java vs. python

We're talking about uses; not static vs. dynamic typing, whitespace indentation, etc. It seems Python and Java are similar in that they are both cross-platform and used in the desktop programming and server programming arts. How is Python being used like Java? Is it another good way to write your cross-platform software? ...

Longtail JW Player not starting properly

I'm trying to get the Longtail JW Player working (for playing .flv files on a website). PROBLEM: when i press play the audio starts but the video does not. if i press it again then the video comes in... but that's no good. CODE: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml...

Server code execution

Hello All, I have some TCL scripts on the server . I am using a client (html/php ) to call them . I want to know if each seperate http request ( to call a TCL script from php script ) executes in separate thread ? i.e can i have multiple instances calling the same TCL script ? Could some one throw some light on this . Regards, Mithun ...

How can I run servlet without user interacting

I want to excute a servlet to get server name,server port and ContextPath from request. But I don't want to invoke servlet by user interacting. I want excute this servlet by Java code. I'm not sure it's possible. Please give me recommendation. ...