Search the web
Sign In
New User? Sign Up
jaxjug · Jacksonville Java Users Group (JAXJUG)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1934 - 1963 of 3459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1934
Job Description: DUTIES: Responsible for technical design, development and architecture of internal and external web applications and sites. Recommend server...
Ashley Porch
ashleyporch
Online Now Send Email
Nov 2, 2006
5:08 pm
1935
... Hash: SHA1 I am attempting to build a translation program that has its configuration in an XML document. This is my first attempt to parse xml from java....
Matt Young
solid904
Offline Send Email
Nov 9, 2006
5:00 pm
1936
... SAX is a fairly nasty way to parse XML, although it's the base-level parser for almost all the others. Essentially, you just set yourself up as a target. ...
Tim Holloway
timh@...
Send Email
Nov 9, 2006
11:06 pm
1937
Dom4J is a a fairly easy api to use. If all you want to do is get values from your configuration file, this should work for you. If you know XPath this also...
kevin@...
cskdschwarz
Offline Send Email
Nov 10, 2006
1:44 am
1938
Take a look at JDOM. It is very simple to use. ... SAX is a fairly nasty way to parse XML, although it's the base-level parser for almost all the others....
Srikanth Basavanahally
srikanthbasa...
Offline Send Email
Nov 10, 2006
5:46 pm
1939
http://sun.com/opensource/java Joe Sam Joe Sam Shirah - http://www.conceptgo.com conceptGO - Consulting/Development/Outsourcing Java Filter...
Joe Sam Shirah
joesam_jozz
Offline Send Email
Nov 13, 2006
2:38 pm
1940
What's the cleanest way to activate Log4J in a Facelets webapp using Spring?...
Tim Holloway
timh@...
Send Email
Nov 13, 2006
6:30 pm
1941
/crickets As a hotspot of local Java expertise, we seem to have a way to go, here. A little RTFM'ing of the Facelets docs told me that Facelets itself is using...
Tim Holloway
timh@...
Send Email
Nov 14, 2006
1:42 pm
1942
I'd like to put an Ajax auto-suggestion feature in a webapp. But not badly enough to dump in raw JavaScript. And I'm looking for something Facelets-friendly...
Tim Holloway
timh@...
Send Email
Nov 14, 2006
1:49 pm
1943
Any good tools for doing this? --Kurt...
Kurt Guenther
kurt_guenther
Offline Send Email
Nov 14, 2006
9:47 pm
1944
... Here's a code snippet that I use: import java.io.IOException; import java.io.InputStream; import javax.xml.parsers.DocumentBuilder; import...
Kurt Guenther
kurt_guenther
Offline Send Email
Nov 14, 2006
9:49 pm
1945
What kind of extraction are you thinking of Kurt? Query, export, ETL? Marko. . ... From: jaxjug@yahoogroups.com [mailto:jaxjug@yahoogroups.com]On Behalf Of...
Marko Milicevic
mmthm
Offline Send Email
Nov 14, 2006
10:14 pm
1946
... Doesn't matter to me. An export is fine. SQL Server 2000 (which I've been blissfully ignorant of until lately.) --Kurt...
Kurt Guenther
kurt_guenther
Offline Send Email
Nov 14, 2006
10:28 pm
1947
There is also ICEFaces. It is ajax for J2EE (Open Source) http://www.icefaces.org/main/home/index.jsp It uses all Java without the javascript ... From: Kurt...
Eric Clarke
Eric_Clarke
Offline Send Email
Nov 14, 2006
10:30 pm
1948
Kind of sounds like you want to do an export, rather than query? When i say query i wasn't sure if you just wanted to query an XML resultset from your DB. If...
Marko Milicevic
mmthm
Offline Send Email
Nov 14, 2006
11:18 pm
1949
Of course the nasty part of DOM isn't building the DOM tree, it's rummaging around inside it. DOM keeps a very faithful accounting of everything that was...
Tim Holloway
timh@...
Send Email
Nov 14, 2006
11:50 pm
1950
... Yeah thanks as well. I was using the Sun ones, but with jdk 1.6, I get the following :( warning: com.sun.org.apache.xml.internal.serialize.OutputFormat is...
William L. Thomson Jr.
obsidianstud...
Online Now Send Email
Nov 15, 2006
1:29 pm
1951
... JDOM is quite nice. Before I was using the Sun stuff and with 1.6 I get a bunch of warnings about the classes and etc I am using being Sun proprietary and...
William L. Thomson Jr.
obsidianstud...
Online Now Send Email
Nov 15, 2006
1:29 pm
1952
... Yeah thanks as well. I was using the Sun ones, but with jdk 1.6, I get the following :( warning: com.sun.org.apache.xml.internal.serialize.OutputFormat is...
William L. Thomson Jr.
obsidianstud...
Online Now Send Email
Nov 15, 2006
1:37 pm
1953
http://www.altova.com/products/mapforce/data_mapping.html This does exactly what I'm looking for, but it's Windows-only. It maps a Database to XML and even...
Kurt Guenther
kurt_guenther
Offline Send Email
Nov 15, 2006
1:40 pm
1954
... <http://www.enhydra.org/tech/octopus/index.html> Octopus looks close, but I'm trying to migrate from one database to another app via a webservice...
Kurt Guenther
kurt_guenther
Offline Send Email
Nov 15, 2006
2:03 pm
1955
Hi Kurt, You might look over this tutorial: http://www.stylusstudio.com/sqlxml_tutorial.html depending on the databases involved, the functionality may already...
Joe Sam Shirah
joesam_jozz
Offline Send Email
Nov 15, 2006
3:08 pm
1956
Kurt, If you want to create an XML file from a Database you could use FreeMarker (http://freemarker.sourceforge.net/). It is a templating tool to merge a...
David T. Webb
dtwebb
Online Now Send Email
Nov 15, 2006
3:13 pm
1957
Saw this on another list: In celebration of the open-sourcing of Java by Sun, O'Reilly's offering our top 10 best-selling Java books at an extraordinary 40%...
Joe Sam Shirah
joesam_jozz
Offline Send Email
Nov 16, 2006
8:00 pm
1958
I thought I had a brilliant way to setup property files via Ant so that they relocatable, but on windows it's failing me. I use the copy filters like this: ....
Kurt Guenther
kurt_guenther
Offline Send Email
Nov 17, 2006
4:36 pm
1959
I tested the following build.xml with Ant 1.6, and it works fine on Windows. <?xml version="1.0"?> <project name="foo" default="foo" basedir="."> <target...
Jitesh Doshi
jitesh_doshi
Offline Send Email
Nov 17, 2006
5:05 pm
1960
I think Jitesh's example points out a (the) potential problem. The backslash character is a Java/C/C++/unix escape character. When you retrieve it as part of a...
Tim Holloway
timh@...
Send Email
Nov 18, 2006
9:50 pm
1961
... That's it. When you pull in this path from a properties file, the back slashes are effectively removed. ... Yes, I added some path converts and everything...
Kurt Guenther
kurt_guenther
Offline Send Email
Nov 19, 2006
9:50 pm
1962
... In that case, this hasn't got much to do with Windows. Backslashes getting removed is a characteristic of the properties file parser (actually, lexer). ...
Jitesh Doshi
jitesh_doshi
Offline Send Email
Nov 20, 2006
1:52 pm
1963
Version 1.8 of VTD-XML is now released in C, Java and C#. The new features are: ·XMLModifier is a easy to use class that takes advantage of the incremental...
Jimmy Zhang
jzhang_ximpl...
Offline Send Email
Nov 23, 2006
9:10 am
Messages 1934 - 1963 of 3459   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright İ 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help