links · people · groups · tags | My: links · tags · groups · watchlists · notes login · sign up now! | help · blog
Simpy simpy
 
ruadrift, member since Mar 15, 2006
.
Search Everyone: java,

Top java experts: dapperdanman, cetoli, grexe, anjanb, sheepdog, geirarnesen,

Groups about java: JAVA, java, Java, Java Developers, Web Design, programming,

1 - 10 of 12 next »   Watch ruadrift
 
To embed any Java applet within an HTML web page, you must use the tag. See the table to the right for the tag syntax (grayed options are optional; bold text is used as-is; italic text is information that you must provide). code=class-filename -- code="pmvr.class" -- The filename of the applet to load (which always ends in .class). It will load from the directory/folder listed by the codebase attribute listed below. width=pixels -- width=500 -- The width, in pixels, of the applet. This may also be a percentage, like 20%, but rarely is. height=pixels -- height=250 -- The height, in pixels, of the applet. This may also be a percentage, like 20%, but rarely is. archive=jar-file -- archive="pmvr.jar" -- The name of a jar file, which contains the *.class files for you applet. Note that files in the JAR must be in stored format (no compression). name=instance-name -- name="pmvr" -- Your name for the applet, which can be any text that makes sense to you. This allows applets within a web page to find each other and it allows for you to control the applets via JavaScript. This attribute is optional. codebase=url -- codebase=".." -- The URL to the directory/folder containing the applet code (class files). An absolute URL can be specified (useful for hosting PMVR tours on multiple domains). A relative URL allows the applet to work on both web servers and the local file system. The relative URL is relative to the document's base URL defined by the BASE tag. If the document does not define a BASE tag, it is relative to the directory/folder containing the HTML file. align=alignment -- align="left" -- The alignment of the applet. It behaves (and has the same options) as the IMG tag align attribute. This attribute is optional. vspace=pixels -- vspace=3 -- The vertical space, in pixels, between the applet and surrounding text. It behaves the same as the IMG tag vspace attribute. This attribute is by ruadrift 2007-08-25 17:34 java · applet
http://www.duckware.com/applets/reference.html - cached - mail it - history
The web community is eagerly seeking a light-weight, templating framework backed by JavaServer Faces as the industry standard. While JavaServer Faces and JavaServer Pages technology (JSP) are meant to be aligned, Facelets steps outside of the JSP specification and provides a highly performant, JSF-centric view technology. Anyone who has created a JSP page will be able to do the same with Facelets and familiar XML-tag use. The difference is under the hood where all the burden of the JSP vendor API is removed to greatly enhance JSF as a platform and provide easy plug-and-go development without requiring JSP tag development. JavaServer Faces UIComponents are first class citizens within Facelets; there's no need to develop extra objects to integrate. There's also no need to learn yet another XML schema to define your views. Facelets includes many features such as: * Works with JSF 1.1 and JSF 1.2, including Sun's RI and Apache MyFaces. * Zero Tag development time for UIComponents * Fast Templating/Decorators for Components and Pages * The ability to specify UIComponent trees in separate files (UICompositions) * Line/Tag/Attribute precise Error Reporting * Specify Tags in Separate Files, even packaged with Jars * Full EL support, including Functions * Build-time EL Validation * XML configuration files aren't necessary * Reserves the 'jsfc' attribute which acts the same as Tapestry's jwcid (Example: ) * Plugable Decorators to really make designer's job easy (Example: transform to at compile time) * Works with any RenderKit * Facelet APIs aren't dependent on a Web Container
by ruadrift 2006-10-16 08:00 jsp · faces · facelets · java · ide
https://facelets.dev.java.net/nonav/docs/dev/docbook.html - cached - mail it - history
void doAccept(SelectionKey key) throws IOException, InterruptedException { if (isLowOnResources()) return; ServerSocketChannel server = (ServerSocketChannel) key.channel(); SocketChannel channel = server.accept(); channel.configureBlocking(false); SelectionKey readKey = channel.register(_selector, SelectionKey.OP_READ); Socket socket=channel.socket(); try
by ruadrift 2006-09-28 08:42 java · nio · blocking
http://64.233.161.104/search?q=cache:B7bIgMtBYEQJ:www.codase.com/search/call?owner=java.nio.channels.spi.AbstractSelecta... - cached - mail it - history
# lib (ver.5.0, ver.1.4.2, ver.1.3.1) - a set of useful tools that I've been developing for the last several years: * Foundation package (map a list or iterable, map to function, function to map, filter a list or iterable, compound iterator, indexOf...) - and an article; * Objects (map, composition, inverse, crc32, indexOf...); * Strings (split, join, replace, zip, fill, countChar, findDiff, grep, decode ,chars...); * Files (find, chdir, relPath, writeToFile, copy, deleteFile, compare, synchronize, bytes, chars, lines files tree...) and an article; * FormattedWriter (uses MessageFormat for creative output); * Web (downloadFile, getHtmlCharset, sendMail...); * Tools (bark, inform, fatalError, runCommand...); * ZipInput (gets input from various sources and retrieves the contents).
by ruadrift 2006-08-22 09:54 java · tools · utilities
http://myjavatools.com/ - cached - mail it - history
converts and validates SOAP WSDL, clients and servers
by ruadrift 2006-07-27 06:40 wsdl · java
http://celtix.objectweb.org/docs/user_guides/tools/tools.html - cached - mail it - history
Axis book: Developing Web Services with Apache AxisFront cover Learn web services and Apache Axis easily If you'd like to learn how to create web services (in particular, using Apache Axis) and make some sense of various standards like SOAP, WSDL, JAX-RPC, SOAP with attachments, WS-Security, XML Encryption and XML Signature, then this book is for you. Why?
by ruadrift 2006-07-24 15:40 soap · java
http://www.agileskills2.org/DWSAA/ - cached - mail it - history
Fire: The easy and simple way to develop Web services
by ruadrift 2006-07-24 10:24 soap · java
http://xfire.codehaus.org/ - cached - mail it - history
Fire: The easy and simple way to develop Web services
by ruadrift 2006-07-24 10:24 java · soap
http://www.javaworld.com/javaworld/jw-05-2006/jw-0501-xfire_p.html - cached - mail it - history
JAX-RPC is Bad, Bad, Bad! There I’ve said it. It wasn’t as painful as I thought it would be to admit that the subject of my last book, J2EE Web Services, is a terribly flawed piece of technology. I’m glad I wrote that book, I think it has helped a lot of people understand a very, very complex Java technology (i.e. JAX-RPC), but I’m sorry that JAX-RPC and the rest of the J2EE Web services stack became the standard for Java web services.
by ruadrift 2006-07-24 09:58 java · soap
http://rmh.blogs.com/weblog/2005/06/jaxrpc_is_bad_b.html - cached - mail it - history
J2SE 5.0 adds classes and methods that can make every day tasks easier to perform. In this tip you will see how the newly added java.util.Scanner class makes it easier to read and parse strings and primitive types using regular expressions.
by ruadrift 2006-06-20 11:59 java · scanner · readfile
http://java.sun.com/developer/JDCTechTips/2004/tt1201.html - cached - mail it - history
1 - 10 of 12 next »  
Related Tags
 
- exclude ~ optional + require
Add Dates