What are the programming restrictions for enterprise java beans
andy armstrong
Ranch Hand
Joined: May 14, 2002
Posts: 154
posted
0
I am looking through the specs and can't seem to see them.. Anyone...
Certifications: <br />scp2, scea, scwcd, WL7.0, CISSP, XML
Nicky Moelholm
Ranch Hand
Joined: Jan 20, 2002
Posts: 43
posted
0
Hi, This is not at complete list but, amongst others you can't: [*]create your own threads [*]use awt etc [*]read / write to regular files (you can however, use getResourseAsStream(....)) [*]Listen to sockets ( however you can connect to sockets) If you refer to the EJB 1.1 Specification page 276 (section 18.1.2) you will find the complete answer to your question. Hopes this one helps...
Nicky Moelholm
MyCerts: SCJP 1.2, SCJP 1.5, SCJD, SCWCD 1.3, SCBCD 1.3, SCDJWS 1.4, SCEA, IBM 253
MyBooks: IBM WebSphere Application Server V7.0 Web Services Guide
Rahul Mahindrakar
Ranch Hand
Joined: Jul 28, 2000
Posts: 1825
posted
0
see section 24.1.2 of the Ejb specification 2.0 which contains the Programming restrictions.
subject: What are the programming restrictions for enterprise java beans