Forum: RSS, Web Services and SOAP May 25th, 2005 |
| Replies: 1 Views: 3,010 XSLT weird problem... [urgent] 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 of... |
Forum: JSP Apr 28th, 2005 |
| Replies: 1 Views: 5,448 [urgent] HTML form => XML file 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: 3,745 parsing error (XML file-java-schema) 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: 19,012 Re: Javascript, Form fields validation and submit 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 the... |
Forum: Java Apr 26th, 2005 |
| Replies: 5 Views: 1,107 Re: Help me please? 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: 1,850 Re: Java 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: 12,180 |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2005 |
| Replies: 8 Views: 19,012 Javascript, Form fields validation and submit 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: 3,709 |
Forum: Java Apr 25th, 2005 |
| Replies: 4 Views: 1,977 |
Forum: Java Apr 25th, 2005 |
| Replies: 3 Views: 3,082 Re: about java servlets 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 and Software Design Apr 25th, 2005 |
| Replies: 29 Views: 7,156 Re: A challenge for all newbies 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,368 "how to": 2 questions: 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... |