Scott..
Thanks for the PropertyBagSerializer, it works great! It really is able
to read the soap messages generated by NuSOAP..!!!
I tried implementing the code exactly as documented and it works fine.
Now, I wanted to extend it a bit so instead of:
for (int i = 0; i < books.length; i++) {
Map book = books[i];
System.out.println("Title: " + book.get("title"));
System.out.println("Imprint: " + book.get("imprint"));
...
}
I wanted to keep the book data into a string array (so that I could add
a 'page management algorithm' to the array and then loop it again
elsewhere), something like:
for(int i=0; i < books.length; i++) {
Map book = books[i];
bTitle[i] = (String) book.get("title");
bImprint[i] = (String) book.get("imprint");
...
}
but as I do so, I keep having an ArrayIndexOutOfBoundsException. How
should I fix this problem?
Another thing.. I may have asked this question, but I couldn't quite
understand your reply on how to implement a Apache-SOAP server so that
it can communicate
<truncated...>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>