Skip to main content
View by: Most Recent | Topic | Community | Webloggers   
Monthly Archives:    

Blogs by topic Blogs and user driscoll

• Accessibility • Ajax • Blogging • Business • Community 
• Databases • Deployment • Distributed • Eclipse • Education 
• EJB • Extreme Programming • Games • GlassFish • Grid 
• GUI • IDE • Instant Messaging • J2EE • J2ME 
• J2SE • Jakarta • JavaFX • JavaOne • Jini 
• JSP • JSR • JXTA • LDAP • Linux 
• Mobility • NetBeans • Open Source • OpenSolaris • OSGi 
• P2P • Patterns • Performance • Porting • Programming 
• Research • RMI • RSS Feeds • Search • Security 
• Servlets • Struts • Swing • Testing • Tools 
• Virtual Machine • Web Applications • Web Design • Web Development Tools • Web Services and XML 


Programming

I've been neglecting my blog, but just a quick note to mention that my latest talk at JavaOne, DSLs with Groovy, is posted up on Slideshare. The talk's designed for someone with no significant Groovy experience (unlike most Groovy DSL talks), so if it's interesting to you, check it out. I'm hoping (but not promising) to turn the talk into a series of Blog entries in the coming weeks.  So if you...
on Mar 10, 2012 | Permalink | Discuss

Web Design

Over the weekend, I was reading Mark Pilgrim's great book on HTML5 - and when I got to the part about the semantic tags, I thought it might be worth a quick mention. In case you've missed out on HTML5 in general (and don't want to take the time to read that book I linked above), the idea behind semantic tags is that many sites use div blocks to mark out the same kinds of content, over and over....
on Feb 8, 2010 | Permalink | Discuss
JSF supplies progressive enhancement out of the box for many purposes. Here’s a quick tip on how you can enhance it.
on Feb 7, 2010 | Permalink | Discuss
In talking with Andy Schwartz before our recent talk together at Oracle Open World, Andy mentioned that he'd like to see some new components make it in to JSF 2.1. I'd like to see that too - but what new components? To aid the discussion, I thought it might be handy to make up a list of components that I think would be handy for JSF - but please, don't take this as an endorsement of any...
on Oct 14, 2009 | Permalink | Discuss

Ajax

IE has some very curious architectural choices (vulgar folks might call them "bugs") regarding memory management of JavaScript applications. Here's a rundown.
on Nov 13, 2009 | Permalink | Discuss
I've had a few requests for request aggregation, ala RichFaces queues, in JSF 2. This was deliberately not included in JSF 2.0, but it will be considered for JSF 2.1. However, adding this functionality yourself isn't actually very hard. Here's an example of how.
on Oct 19, 2009 | Permalink | Discuss
How to write a Java-based custom JSF component that responds to the Ajax tag. Composite Components is still my favorite way to do things, but there are times when a custom Java component is the best strategy.
on Oct 9, 2009 | Permalink | Discuss
I've placed my slides for my JSF 2 and Ajax talk up on slideshare. Check 'em out, and ask questions in the comments.
on Oct 5, 2009 | Permalink | Discuss

Web Applications

Just a short post to note that we've now shipped Mojarra 2.0.1. This version fixes a very serious bug when running on Tomcat. You can pick up the files from the usual places, see the release notes for more information. If you're using GlassFish, and already running 2.0.0 (you leading edge adopter!), there's probably no reason to upgrade - though the new v3 (b69) has the updated jar, and it will...
on Oct 23, 2009 | Permalink | Discuss
Just a reminder that while you are developing a JSF 2.0 project, you really, really, really should enable the Development Project Stage. Doing this enables better error messages, including in the client side JavaScript, at the cost of some performance. Enabling this is as simple as putting the below into your web.xml: <context-param>   <param-name>javax.faces.PROJECT_STAGE...
on Sep 28, 2009 | Permalink | Discuss
In this entry, I discuss two more features of JSF Ajax support: the f:ajax tag's event attribute and listener attribute.
on Sep 26, 2009 | Permalink | Discuss

Web Development Tools

I've posted the slides for the talk that Andy Schwartz and I did at Oracle Open World up on Slideshare. Check 'em out.
on Oct 14, 2009 | Permalink | Discuss

J2EE

OpenAjax is an organization which has a specification detailing a standard way to do intercomponent communication on the client side of Web applications. While JSF 2 didn't adopt this standard into it's specification, it's easy enough to bridge the two. Here's some demo code that does just that.
on Sep 3, 2009 | Permalink | Discuss
I've had a few requests on how to write a busy status indicator in JSF 2 - you know, the little spinning ball that's there while an Ajax call is active, and which goes away once the request is complete. So, I spent a bit less than a couple hours today, and did just that - including putting it into a component so it's reusable.
on Sep 2, 2009 | Permalink | Discuss
A few weeks ago, I blogged about ways to execute scripts on the client which you were writing out from the server via Ajax. By popular demand, the latest build of Mojarra now allows execution of inline scripts.
on Sep 2, 2009 | Permalink | Discuss