Forum: RSS, Web Services and SOAP May 25th, 2005 |
| Replies: 1 Views: 3,399 I've a weird problem with a XSLT file...
my XSLT translates a XML file into a HTML form and, to solve some problems, I found a solution: to give to each "input" tag a name that is a concatenation... |
Forum: JSP Apr 28th, 2005 |
| Replies: 1 Views: 6,892 Hi, I've an HTML form (I generated it from a XML schema .xsd file)
I'd like to know a good way to save the form input data (POST/GET don't matter) to an XML file (or fragment) that can be validated... |
Forum: Java Apr 26th, 2005 |
| Replies: 0 Views: 5,092 I've a problem with some code, this is the "core" of the code:
File xmldocFile = new File(xmlFile);
File schemaFile = new File(xsdFile);
try
{
... |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2005 |
| Replies: 8 Views: 21,740 ok thank you, I think that it's a good solution. I'll try it ;-)
(note: just to let you know my little job: I'm developing a solution that generates a form from a XML Schema file (that supports... |
Forum: Java Apr 26th, 2005 |
| Replies: 5 Views: 1,331 Well... If you know other programming languages, like C/C++, you can learn basics really quickly...
get a good book (look carefully to it before buy, and look also to reviews of them on the net... |
Forum: Java Apr 26th, 2005 |
| Replies: 10 Views: 2,246 I like very much GEL :-)
but also jEdit and JCreator are good choices!
for quick-edits are also useful Notepad++ and Programmer's Notepad
:twisted: |
Forum: JSP Apr 26th, 2005 |
| Replies: 5 Views: 15,116 some time ago (1-2 months) I tried to search a free server with those features, but I didn't find one... :_( |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2005 |
| Replies: 8 Views: 21,740 Hi!
I've a HTML form
I've a function with some parameters that checks the value of each field (it's called within a onBlur event). This function check the type and other restrictions about that... |
Forum: JSP Apr 26th, 2005 |
| Replies: 2 Views: 4,174 Well...
some suggestions:
1) first try to search with google (use + and other logic ops to obtain a better search)
2) look at Sun docs and examples, the Java doc is a bit worse than the old... |
Forum: Java Apr 25th, 2005 |
| Replies: 4 Views: 2,478 I think you must use a simple parser...
another (but heavy) solution is the use of regular expressions |
Forum: Java Apr 25th, 2005 |
| Replies: 3 Views: 3,660 I can only add this:
a JSP (Java Server Page) is compiled to a servlet the first time you run it ;-)
so they are all servlets (server extensions :-)) |
Forum: Computer Science Apr 25th, 2005 |
| Replies: 29 Views: 8,252 Can I add a new challenge for newbies?
swap the value of two variables, without the use of a third one.
You can use only those two variables:
a and b
:) |
Forum: Java Apr 25th, 2005 |
| Replies: 1 Views: 1,711 1)
I've a form that takes some input (various fields)
I must use those fields as fields of a record of a simple XML database file.
Mi xml file is like:
<database>
<record id="1">
...my... |