NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
you don't need to Java for this (Score:2)
You could quite trivially build a full crud UI using DHTML and javascript rpc/rest calls to the server, storing some state information in javascript and calling the server only for object persistence and retrieval.
I've seen it done over 18 months ago and we rebuilt it again from scratch. I think it would be as quick and easy as doing it in java.
@JAPH = qw(Hacker Perl Another Just);
print reverse @JAPH;
Reply to This
You might not need java for crud (Score:1)
Perhaps starting again, taking onboard lessons learnt, but still using DHTML and javascript would offer some improvements, but I can also see some strengths ( if starting again ) in moving to a soap/java application to provide the UI ( rather than an applet ), and being naturally curious I'm ke
Re:You might not need java for crud (Score:2)
There is very little you can do in a Java client you couldn't acheive with a DHTML application.
Using a full webservice with a proper webservice client in the java client would be massive overkill - admittedly it would be less cumbersome and bloated than using CORBA but would be much heavier on the client than DHTML and XML/RPC.
@JAPH = qw(Hacker Perl Another Just);
print reverse @JAPH;
Experiences of Java/soap (Score:1)