|
[Ant] Build .WAR files in Eclipse for Web Applications
2009-07-28 15:17:00 Eclipse JEE versions support Java Web Application projects, but other Eclipse versions do not. Java developers need to build WAR (web archive) files for deployments (yes, Exploded deployments are also possible). However Eclipse does not provide a direct way to create war files; developers write ant...
[Tomcat] validateJarFile(servlet-api.jar) - jar not loaded. Offending class
2009-07-09 15:28:00 org.apache.catalina.loader.Weba-ppClassLoader validateJarFile INFO: validateJarFile(<APP_PATH>-;WEB-INFlibservlet-api.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class. We are using Apache Tomcat to deploy web applications, and getting...
Web-application project specification by startive
2009-06-28 14:41:00 We require a qualified technical writer to take a very high-level project description and write a detailed project specification for a highly-scalable web application/website. The specification will describe... (Budget: $750-1500, Jobs: Copywriting, PHP, Project Management, Website Design)
What is Web Application Testing? Explain the different phases in Web Applic
2009-04-16 03:48:00 Web Application Testing is done on a website to check its load, performance, Security, Functionality, Interface, compatibility and other usability related issues. In Web application testing, three phases of testing is done, they are, Web Tier TestingIn Web tier testing, the browser compatibility of the application will be tested for IE, FireFox and other web browsers. Middle Tier TestingIn Middle tier testing, the functionality and security issues were tested. Database Tier TestingIn Database tier testing, the database integrity and the contents of the database were tested and verified.
web Application Development
2009-03-18 10:49:00 Some people consider web application development as path for future technologies. Many web development companies follow three-tier model for software development:* User services : User services is the basic. The consumers can easily attract with the applications and make use of them depending on their work. This includes anything from HTML to Complex COM components and Java applets.* Business services: Once the user understands the business needs, then the software professionals can grab business logics. This includes web scripting, and programming, which allows user to perform complex action with the help of web interface.* Data services: With the help of this feature, the developers can store, retrieve, add and update all the information in systematic way. For more information on web development, web application development, custom application web development, visit a Website Development Company in India now.
Manage HTTP headers with Java Servlets: Quick Notes
2008-10-15 13:43:00 In Java Servlets API, both HttpServletRequest and HttpServletResponse interfaces (in javax.servlet.http package) provide methods to programatically manipulate HTTP headers. There are a number of standard HTTP headers exchanged between a web server and a client (eg: a browser). "Content-Type" is a commonly used header (which is used to specify MIME type) in Servlets. In this article we are discussing how headers are read/written with Servlet classes.Reading HeadersA servlet can read HTTP headers sent by a client request using HttpServletRequest interface. This interface has two methods for this.String getHeader(String headerName)int getintHeader(String headerName)Both these methods are similar except getIntHeader() method is used to return value of headers with int type values. Below code shows how value of "User-Agent" header is read from the user request. (HttpServlet.doGet() method is used in the example).import javax.servlet.http.*;import java.io.*;public class MyServlet extends ...
Manage HTTP headers with Java Servlets: Quick Notes
2008-10-15 13:43:00 In Java Servlets API, both HttpServletRequest and HttpServletResponse interfaces (in javax.servlet.http package) provide methods to programatically manipulate HTTP headers. There are a number of standard HTTP headers exchanged between a web server and a client (eg: a browser). "Content-Type" is a commonly used header (which is used to specify MIME type) in Servlets. In this article we are discussing how headers are read/written with Servlet classes.Reading HeadersA servlet can read HTTP headers sent by a client request using HttpServletRequest interface. This interface has two methods for this.String getHeader(String headerName)int getintHeader(String headerName)Both these methods are similar except getIntHeader() method is used to return value of headers with int type values. Below code shows how value of "User-Agent" header is read from the user request. (HttpServlet.doGet() method is used in the example).import javax.servlet.http.*;import java.io.*;public class MyServlet extends ...
Manage HTTP headers with Java Servlets: Quick Notes
2008-10-15 13:43:00 In Java Servlets API, both HttpServletRequest and HttpServletResponse interfaces (in javax.servlet.http package) provide methods to programatically manipulate HTTP headers. There are a number of standard HTTP headers exchanged between a web server and a client (eg: a browser). "Content-Type" is a commonly used header (which is used to specify MIME type) in Servlets. In this article we are discussing how headers are read/written with Servlet classes.Reading HeadersA servlet can read HTTP headers sent by a client request using HttpServletRequest interface. This interface has two methods for this.String getHeader(String headerName)int getintHeader(String headerName)Both these methods are similar except getIntHeader() method is used to return value of headers with int type values. Below code shows how value of "User-Agent" header is read from the user request. (HttpServlet.doGet() method is used in the example).import javax.servlet.http.*;import java.io.*;public class MyServlet extends ...
Manage HTTP headers with Java Servlets: Quick Notes
2008-10-15 13:43:00 In Java Servlets API, both HttpServletRequest and HttpServletResponse interfaces (in javax.servlet.http package) provide methods to programatically manipulate HTTP headers. There are a number of standard HTTP headers exchanged between a web server and a client (eg: a browser). "Content-Type" is a commonly used header (which is used to specify MIME type) in Servlets. In this article we are discussing how headers are read/written with Servlet classes.Reading HeadersA servlet can read HTTP headers sent by a client request using HttpServletRequest interface. This interface has two methods for this.String getHeader(String headerName)int getintHeader(String headerName)Both these methods are similar except getIntHeader() method is used to return value of headers with int type values. Below code shows how value of "User-Agent" header is read from the user request. (HttpServlet.doGet() method is used in the example).import javax.servlet.http.*;import java.io.*;public class MyServlet extends ...
Manage HTTP headers with Java Servlets: Quick Notes
2008-10-15 13:43:00 In Java Servlets API, both HttpServletRequest and HttpServletResponse interfaces (in javax.servlet.http package) provide methods to programatically manipulate HTTP headers. There are a number of standard HTTP headers exchanged between a web server and a client (eg: a browser). "Content-Type" is a commonly used header (which is used to specify MIME type) in Servlets. In this article we are discussing how headers are read/written with Servlet classes.Reading HeadersA servlet can read HTTP headers sent by a client request using HttpServletRequest interface. This interface has two methods for this.String getHeader(String headerName)int getintHeader(String headerName)Both these methods are similar except getIntHeader() method is used to return value of headers with int type values. Below code shows how value of "User-Agent" header is read from the user request. (HttpServlet.doGet() method is used in the example).import javax.servlet.http.*;import java.io.*;public class MyServlet extends ...
Google Web Toolkit (GWT) & Servlets - Web application tutorial
2008-09-02 14:20:00 Google Web Toolkit (GWT) and Java Servlets used in one web application. This tutorial will take you though the steps of developing a simple web application with Google Web Toolkit and J2EE Servlet Technology. The application will have a servlet on server side and one web page.PrerequisitesBetter to be familiar with developing web applications with J2EE/ServletsKnowledge on deploying a web application into Tomcat web serverSystem RequirementsJDK installedApache Tomcat web server (download, any other web server can be used)GWT (download)In brief, GWT is a framework for developing Ajax based web pages with Java. All the HTML page content will be written as Java classes and converted into a set of Javascript files. For more information on GWT, refer to official site here. http://code.google.com/webtoolk-it/IntroductionIn this tutorial we will create a simple web application which has one page. When a user clicks a button, web page content will be updated without refreshing or leaving th...
Google Web Toolkit (GWT) & Servlets - Web application tutorial
2008-09-02 14:20:00 Google Web Toolkit (GWT) and Java Servlets used in one web application. This tutorial will take you though the steps of developing a simple web application with Google Web Toolkit and J2EE Servlet Technology. The application will have a servlet on server side and one web page.PrerequisitesBetter to be familiar with developing web applications with J2EE/ServletsKnowledge on deploying a web application into Tomcat web serverSystem RequirementsJDK installedApache Tomcat web server (download, any other web server can be used)GWT (download)In brief, GWT is a framework for developing Ajax based web pages with Java. All the HTML page content will be written as Java classes and converted into a set of Javascript files. For more information on GWT, refer to official site here. http://code.google.com/webtoolk-it/IntroductionIn this tutorial we will create a simple web application which has one page. When a user clicks a button, web page content will be updated without refreshing or leaving th...
Google Web Toolkit (GWT) & Servlets - Web application tutorial
2008-09-02 14:20:00 Google Web Toolkit (GWT) and Java Servlets used in one web application. This tutorial will take you though the steps of developing a simple web application with Google Web Toolkit and J2EE Servlet Technology. The application will have a servlet on server side and one web page.PrerequisitesBetter to be familiar with developing web applications with J2EE/ServletsKnowledge on deploying a web application into Tomcat web serverSystem RequirementsJDK installedApache Tomcat web server (download, any other web server can be used)GWT (download)In brief, GWT is a framework for developing Ajax based web pages with Java. All the HTML page content will be written as Java classes and converted into a set of Javascript files. For more information on GWT, refer to official site here. http://code.google.com/webtoolk-it/IntroductionIn this tutorial we will create a simple web application which has one page. When a user clicks a button, web page content will be updated without refreshing or leaving th...
Google Web Toolkit (GWT) & Servlets - Web application tutorial
2008-09-02 14:20:00 Google Web Toolkit (GWT) and Java Servlets used in one web application. This tutorial will take you though the steps of developing a simple web application with Google Web Toolkit and J2EE Servlet Technology. The application will have a servlet on server side and one web page.PrerequisitesBetter to be familiar with developing web applications with J2EE/ServletsKnowledge on deploying a web application into Tomcat web serverSystem RequirementsJDK installedApache Tomcat web server (download, any other web server can be used)GWT (download)In brief, GWT is a framework for developing Ajax based web pages with Java. All the HTML page content will be written as Java classes and converted into a set of Javascript files. For more information on GWT, refer to official site here. http://code.google.com/webtoolk-it/IntroductionIn this tutorial we will create a simple web application which has one page. When a user clicks a button, web page content will be updated without refreshing or leaving th...
Google Web Toolkit (GWT) & Servlets - Web application tutorial
2008-09-02 14:20:00 Google Web Toolkit (GWT) and Java Servlets used in one web application. This tutorial will take you though the steps of developing a simple web application with Google Web Toolkit and J2EE Servlet Technology. The application will have a servlet on server side and one web page.PrerequisitesBetter to be familiar with developing web applications with J2EE/ServletsKnowledge on deploying a web application into Tomcat web serverSystem RequirementsJDK installedApache Tomcat web server (download, any other web server can be used)GWT (download)In brief, GWT is a framework for developing Ajax based web pages with Java. All the HTML page content will be written as Java classes and converted into a set of Javascript files. For more information on GWT, refer to official site here. http://code.google.com/webtoolk-it/IntroductionIn this tutorial we will create a simple web application which has one page. When a user clicks a button, web page content will be updated without refreshing or leaving th...
Software Web Application Developer
2008-06-05 22:45:00 You want to innovate. Differentiate. Grow. Founded in 2000, CORESense creates a competitive advantage for SMRs by providing them access to a single, fully integrated multi?channel retail management system with the features and function needed to compete and win in today?s demanding marketplace in a software-as-a-service delivery model that fits their business and their budget. We ...
Evernote - a new way to take notes on and offline
2008-05-27 05:32:00 Evernote is gaining fans all over the blogosphere with its free, feature-filled service that works on various platforms - Windows, Mac, Windows Mobile, online, offline; and is sync-able and searchable! The coolest feature is Evernote’s handwriting recognition. Just start typing in the search box for whatever word or string of text you are looking for, and ...
By: thepinkc
MacAmour Web Application
2008-05-22 02:02:00 MacAmour’s blog is fully optimized to recognize iPhones/iPod Touch and to automatically be displayed as a web application. I’m proud to announce MacAmour is listed as a Web Application at... Blog about Mac Computers, Apple Product and Design (from Photography, to Architecture). Embedded videos, apple commercials, photos, news, download links, a lot of tips and tricks, tutorials. Anything you need to make your Macintosh experience UNIQUE!
By: Mac Amour
Is your page Stumbled?
2008-05-15 19:17:00 I am a huge fan of StumbleUpon - the social networking site that lets you set preferences and find site that you might be interested in - and share them with friends! But as a blogger, I am always interested in how often my pages are Stumbled (added to StumbleUpon’s databases). I found a simple JavaScript bookmarklet ...
By: thepinkc
Where to Watch Internet TV
2008-05-13 05:06:00 Sometimes you don’t have cable tv (costs too much), sometimes you are studying all night and miss your favorite shows and sometimes you have a dual ear infection and really don’t feel like doing anything but watching internet televisions cause you can’t sleep. No matter the reason, there are plenty of options out there to watch ...
By: thepinkc
Music-Web application by volitionth
2008-05-07 00:31:00 DESCRIPTION: In short, we have a DLL app that takes music files, applies special filtering technology, and then spits it out. What we need more programming help on, is the development of a "wrapper"... (Budget: $750-1500, Jobs: .NET, ASP, C/C++, OsCommerce, PHP)
ActionScript 3/Flex Developer needed for Web Application by skitsanos
2008-05-06 00:53:00 We are looking for experienced ActionScript 3 developers to work on video driven web application. Required Experience in ActionScript 3, Adobe Flex, experience with video stream processing, cue points and rich media content... (Budget: $250-750, Jobs: Audio Services, Flash, Javascript, Video Services, XML)
Oracle Database Ajax & PHP Web Application Development (Oracle Press) (Pape
2008-05-02 05:05:00 Oracle Database Ajax & PHP Web Application Development (Oracle Press) (Paperback)By Lee Barney Buy new: $36.4929 utilised and new from $27.88 First tagged “ajax” by Chris Rueblinger Customer tags: database(2), php, ajax, ...
iPhone MySpace Web Application is in the works
2008-04-22 16:30:00 iPhoneWorld.ca . .It seems that you are not alone to think that MySpace does not provide a good user experience on your iPhone. In fact, one man, named Jake Marsh was so fed up with it that he decided to take matters into his own hands and create MySpace app version of his ...
By: iPhone World
ASP.NET Web Application Developers (C#)
2008-04-17 13:50:00 One of Australia's leading Web 2.0 agencies, Wiliam, is on the lookout for the most talented, passionate ASP.NET Web Applications Developers in Sydney to build our next Generation Web Applications.
Web Application Icons Set
2008-04-14 20:45:00 Web sitesinde kullanman?z için bir koç kategoriye kullanabilece?iniz 48&time-s;48 px, 32×32 px, ve 24×24 px boyutlar?nda iconlarDownload : Web Application Icons Set
By: TipsTrick World
Proxy servlet based web application by creadis
2008-04-09 22:19:00 Web-application that acts as proxy and allows to store the click-path of visited pages and the target page. The once visited webpages shall be re-visited and stored by the application automatically. ... (Budget: $250-750, Jobs: J2EE, Java, JSP, PHP)
Google launches App Engine web application host
2008-04-08 13:24:00 Google has announced the launch of App Engine, a new tool allowing developers to create web applications that can be hosted on a Google’s own infrastructure. The idea of making a hosted development environment isn’t necessarily new as Salesforce has had the Appexchange platform for some time now, along with a few others companies offering ...
By: SlipperyBrick
Wayfinder Announces Power Search Web Application For iPhone
2008-04-03 00:00:00 Wayfinder today announced the launch of Power Search web application for iPhone and iPod touch users. The application is accessed via the Safari browser and allows the searching of a multitude of databases, through one unified search field, that cover up to 100 million local search records around the world. (more?)
By: Latest phones
Web Application Development with PHP 4.0 (Landmark) (Paperback)
2008-03-25 04:03:00 Web Application Development with PHP 4.0 (Landmark) (Paperback)By Tobias Ratshciller Buy new: $39.9937 utilised and new from $1.95 Customer Rating: First tagged “php” by Prussian7 “prussian7″ Customer tags: php, programming, php4 ...
Oracle Database AJAX & PHP Web Application Development (Osborne Oracle Pres
2008-03-13 03:03:00 Oracle Database AJAX & PHP Web Application Development (Osborne Oracle Press) (Paperback)By Lee Barney Buy new: $49.99$31.4913 utilised and new from $29.68 First tagged “ajax” by Chris Rueblinger Customer tags: php, database, ...
Web Application icons by WebAppers
2008-03-12 02:19:00 WebAppers released free web application icons set, consisting of 20 icons and designed specially for web applications (e.g. Charts, Profile, Search, Add, Delete, Email, Print etc?). Come in 3 sizes:... This is the summary only, for images visit my blog at http://qualityicons.blogspot.co-m
Where?s my cell phone?
2008-03-10 13:12:00 I routinely misplace my cell phone and although I know it is here in my apartment, I can’t always find it easily. Where’s My Cell Phone solves my problem of a lost cell phone easily. I submit my phone number via the site and wait for a call - the ringing will help me determine ...
By: thepinkc
Executing client report from web application
2008-03-10 09:22:00 protected void Page_Load(object sender, EventArgs e) { DataSet1TableAdapters.authorsTa-bleAdapter ds = new DataSet1TableAdapters.authorsTa-bleAdapter(); ds.ClearBeforeFill = true; DataSet1.authorsDataTable dt=new DataSet1.authorsDataTable(); ds.Fill(dt, "ca"); ReportViewer1.LocalReport.Repor-tPath = Server.MapPath("Pubs.rdlc"); ReportViewer1.
WSS3 404 Error on new web application
2008-03-08 00:00:00 I'll make this a quick one. Scenario: You create a New Web Application via the WSS Central Administration Site. Everything goes through nicely and it confirms that the new web application has been created. Now you browse to this application and get the dreaded 404 Page not found error. Solution: I don't know why, but for ...
By: Code Central
Writer - the Internet Typewriter
2008-03-03 11:41:00 Taking a few minutes to just block out the world and write is one of the few joys a lot of people have left. Some of us like to put pen to paper, favoring Moleskine notebooks and fancy, expensive writing instruments, while others love “old fashioned” typing on a typewriter. But when was the last time ...
By: thepinkc
WebAppers Released Free Web Application Icons Set
2008-03-03 03:14:00 After few weeks of icons design and development. WebAppers is very happy to announce the release of ?Web Application Icons Set? with 3D effect and glossy style. There are 20 icons designed specially for web applications (e.g. Charts, Profile, Search, Add, Delete, Email, Print, Warning and etc?). Share This
New mDigger iPhone web application features dynamic web clips that can be s
2008-02-28 15:47:00 mDigger, a free service providing dynamic web clips from favorite sites and Internet sources to mobile devices, just released a new version for iPhone and iPod Touch. Users now get to create their personal information space and share it with others. read it here prlog.org
By: iPhonetunes
How to plan humble user-centric web application?
2008-02-27 05:34:00 I have recently started building some ajaxy interfaces for one /two hobby projects. Now there is a difference in hobby project and live application which would be used by may be thousands of users online. Application more or less remains same but suddenly there is a shift in the goal. You are building it for people and they are going to assess it and will either admire it or just give pass over it. There are so many things to make real world good web application. I guess you need to start with the goal of your application. Thats the starting point. Some good vision statement for your application. Lets say wufoo. It says "Free HTML form builder". My another favorite application "weebly" says Create your website "Fast,Free,Easy,Now".- They have vision and hence the road map to follow and keep on revising the vision statement if needed as it is obvious; farther you go you know something more and that adds value to you. I love User Interface and things aro...
By: WATblog
LinkedIn web application now on mobile phones: Are you happy?
2008-02-26 09:09:00 All 19 million members of LinkedIn who are the world’s largest professional network will be happy to know that you can now access LinkedIn web application using your mobile phone. Obviously your mobile phone will have to be web-enabled wireless phones, you got to remember that nearly every business man or business woman professional are carrying ...
By: Phones Review
LinkedIn Debuts Web Application for Mobile Users at m.linkedin.com
2008-02-26 00:00:00 LinkedIn announced a LinkedIn web application via mobile devices with Internet?browsers like iPhone and iPod touch, Blackberry, and other web-enabled wireless phones.
By: Latest cell
2 New Freelance Jobs available on Web Application Developer
2008-02-23 07:43:00 We would like to inform you that there is 2 new jobs posted at iamfreelancer.com . JOB INFORMATION Web Application Developer (Job ID 239838) Will involve in software development, including analysis, planning, design, testing and documentation. Will be responsible for new project implementation; gather, study, and analyze user requirements; deploy, configure, and test the.... php
PicResize 3 - il trattamento immagini interamente on line
2008-02-18 15:50:00 PicResize č un’applicazione online per il ridimensionamento e il trattamento veloce di immagini. Senza installare nulla dall’indirizzo: http://gui.picresize.com/picres-ize2/ si puō effettuare un trattamente molto veloce e quasi completo di immagini salvando immediatamente il risultato in locale. La forza della piccola web application stā proprio nell’usabilitā, semplicitā e la totale mancanza di installazioni in locale. Tramite il sito č ...
Set di icone per Web Application
2008-02-13 14:57:00 “Web Application Icons” č il nome di questo set di icone 3D disegnate per l’utilizzo in applicazioni web. Il pack contiene 20 icone che possono tornarci utili qualora stessimo sviluppando una “Web Application” ma ciō non toglie che possano essere utilizzate anche per altri scopi. Le icone sono disponibili in diverse dimensioni 48×48 px, 32×32 px, 24×24 ...
By: Nicopi
Web Application Icons Set by WebAppers
2008-02-13 03:08:00 Free Web Application Icons un set de bonitos iconos 3D diseņados por Webappers. El pack contiene unos 20 iconos diseņados especialmente para aplicaciones web (por ejemplo, Gráficas, perfiles, Aņadir, Borrar, Enviar, Imprimir, y demas). Encontramos estos bonitos iconos en tres tamaņos diferentes 48 × 48 px, 32 × 32 px, y 24 × ...
By: Xyberneticos
Free Web Application icons from Webappers.com
2008-02-12 21:54:00 A free Web Application Icons Set with 3D effect and glossy style that released by WebAppers.com. This free web application set consist of 20 icons set designed specially for web applications purpose like Charts, Profile, Search, Add, Delete, Email, Print, Warning and etc? These free web application icons come in 3 sizes; 48×48 px, 32×32 px, ...
By: TechMixer
iPhone Web Application: FlyTunes brings Internet Radio to the iPhone
2008-02-06 20:52:00 If you are a radio junkie then you are going to love this iPhone Application. FlyTunes an Internet radio aggregator pitching as an alternative to Sirius Satellite Radio brings Internet Radio to the iPhone. When I came across this iPhone application I decided I had to write about it as one of my complaints about Apple's iPods and now the iPhone is that it does not have radio built in something that is available in most mp3 players these days. I checked FlyTunes out over Wi-Fi and the internet radio stations played very well.
Progio workout Web Application for iPhone and iPod Touch
2008-02-05 18:09:00 iPhone World: A little behind on your New Years Resolution to get fitter? Here’s a solution that may help you get motivated. Progio Mobile, Inc., announced it has released a Web application of its exercise and training programs for iPhone and iPod touch. With Progio, users can access complete, professionally developed workouts with ...
By: iPhone World
New Web Application - Looking For Suggestions
2008-01-25 18:36:00 I discussed in a previous article that I had a domain name (BigGirlfriend.com) that I had no idea what to do with. Turns out I developed an application that I was going to use (regardless if it’s released to the public or not) and figured I’d whip up a quick skin and throw it on ...
CeBIT 2008: art of defence zeigt seine Web Application Firewall der 2. Gene
2008-01-24 15:17:00 Regensburger Software-Hersteller zusammen mit Microsoft Forefront am Stand E12, Halle 6, und mit GeNUA am Stand G46, Halle 6 Regensburg, 24. Januar 2008 - art of defence, Regensburger Software-Hersteller für Web-Anwendungssicherheit, zeigt seine Web Application Firewall der 2. Generation auf der CeBIT 2008. hyperguard wehrt Angriffe auf Web-Anwendungen aus dem Internet ab und blockiert proaktiv unberechtigte ... |



