Can JWS support application with JDBC or EJB ?

Hey all:I am interested to find out if I can deploy an application with JDBC or EJB connection via Java Web Start ? Are there any references or resources which I can refer to ? Thanks in advance !!!
[227 byte] By [Gunnera] at [2007-10-2 18:00:09]
# 1

Please refer to link as below:

http://e-docs.bea.com/wls/docs81/rmi_iiop/rmiiiop2.html

using wlclient.jar & wljmsclient to lookup the resoruce of ejb server

(Directly connect JDBC is not safe,and image that,if have some component in charge of singlton or transaction management,serverside components are more prefered)

john from Taiwan.

neoarta at 2007-7-13 19:19:08 > top of Java-index,Desktop,Deploying...
# 2
TQ John. That's a good link. But it's a bit too advanced level for me as I am just new to Java Web Start. Is there any sample applications to refer with ?
Gunnera at 2007-7-13 19:19:08 > top of Java-index,Desktop,Deploying...
# 3

first of all,you have to deploy ejb and program the client app for testing this ejb

ref :

http://www.borland.com/resources/en/pdf/white_papers/jb_ejb_development_with_jbuilder_and_weblogic.pdf

&

http://info.borland.com/techpubs/jbuilder/jbuilder9/webapps/webapps_webstart.html

then,use the wizard to wrap your application and required jar files (iiop/coba client jar file,provided by application server vendor) into JNLP war file and deploy it

neoarta at 2007-7-13 19:19:08 > top of Java-index,Desktop,Deploying...
# 4
At the end of the day there is nothing special about JDBC or EJB programs with respect to web start. Write an ejb or jdbc application just like you would normally, and then deploy it in web start.
chrisbitmeada at 2007-7-13 19:19:08 > top of Java-index,Desktop,Deploying...