can anybody tell me how to set Initialisation parameters
in ejb-jar.xml in weblogic7.0 as i used in weblogic5.1
<env-entry>
<name>URL
<type>java.lang.String
<value>
jdbc 
dbc:mydsn
</env-entry>
and retrived in my bean as
String url = initcontext.lookup
("java:comp/env/URL").toString();
it worked fine but if i edit ejb-jar.xml for setting
<env-entry> its saying thats not defined in dtd file
becuase ejb-jar.xml is created by the tool itself in
weblogic7.0
thanx..