deployment problem

My Weblogic server has thrown an errorwhich looks like below ( modified)

EJBComponent: blahblahBeans.jar)' contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[updateStatus(blahblahVO)]

EJBComponent: blahblahBeans.jar)' contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: local-home[createQuery(), create(), remove(java.lang.Object) , //some_more_methods

can you tell what could be the remedy ?

[657 byte] By [Unknown_Citizena] at [2007-11-27 5:06:47]
# 1
do i need to do some settings in the weblogic server ? some kind of transaction settings ?because i am not authorized to alter the EJBJAR file......i have only deployment right.
Unknown_Citizena at 2007-7-12 10:25:39 > top of Java-index,Java Essentials,Java Programming...
# 2

[url]http://e-docs.bea.com/wls/docs81/messages/EJB.html[/url]

A quick google search found this document.

That is not an error its a warning.

All it is telling you is that you should edit your ejb-jar.xml file to assign transaction attributes for every method in your EJB. It should assign a default for you. I believe this can be done from within the Weblogic console.

maple_shafta at 2007-7-12 10:25:40 > top of Java-index,Java Essentials,Java Programming...
# 3
maple,yes it can be done from the console, but I reckon it's quicker to just cut & paste them in the xml, especially if there are a whole bunch of 'em. Don't forget to restart the server.
corlettka at 2007-7-12 10:25:40 > top of Java-index,Java Essentials,Java Programming...
# 4
For more info on transaction attributes check http://java.sun.com/j2ee/1.4/docs/tutorial/doc/Transaction3.html#wp79737
Peetzorea at 2007-7-12 10:25:40 > top of Java-index,Java Essentials,Java Programming...