Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
61 views

Reg ex for activation-config-property-value

Can I give a regex pattern for activation-config-property-value in ejb-jar.xml? instead of something like this. <activation-config-property> ...
1
vote
1answer
178 views

ejb reference in deployment descriptor (without annotations )

I try to inject dependency in EJB 3.0 using only deployment descriptor. When I deploy my app to Glassfish (v3.1) I get this exception: java.lang.RuntimeException: Warning : Unable to determine local ...
1
vote
1answer
189 views

What is the ejb-jar.xml equivalent of @Postconstruct?

I have an MDB with a method annotated as @Postconstruct. It was being executed OK. Today I needed to create an ejb-jar.xml file to configure an <activation-config-property> at build time (as I ...
1
vote
1answer
467 views

resource-ref at application scope in EJB 2.1 Project

Is it possible to define resource references that are applicable to all EJBs in an application? Currently I have an ejb-jar.xml that looks something like this: <ejb-jar> ...
0
votes
1answer
31 views

Common configuration in ejb jar xml

There is an ejb-jar xml file in our project which defines essentially the same ejb configuration over and over again for a number of different brands. They all share the same underlying code, the ...
0
votes
2answers
90 views

@Singleton bean to read values from ejb-jar.xml

I have a ConfigParameter SLSB that reads configuration values from the ejb-jar.xml file. This class has only private fields and for each field a corresponding getter method. In my application I have ...
0
votes
0answers
90 views

disable web service test page through admin console totally not one by one

How can I disable web service test page? I mean What is the best and easy way to disable test page for all web services. I know it can be done with debugging-enabled property of webservice-endpoint in ...
0
votes
0answers
292 views

Seam 2.2.2 on Glassfish 2.1 Seam EJB component injection

I have a problem with injection Seam component which is annotated as @Stateful bean into another which is annotated same. So I have component: @Stateful @Name("userFncModalAction") ...
0
votes
3answers
198 views

Is it possible to place custom values (properties) in ejb-jar.xml?

1) We are using OpenEJB (both embedded and standalone) with a few deployed EJBs. We would like to specify some simple static business rules and values (example: icon_size=200). Normally, we would put ...
0
votes
1answer
81 views

Inject a String into a Message Driven Bean

I want to configure the behaviour of one of my mdbs with string. i created a setMessageType method and want to inject the identifier string into the mdb by configuration in the ejb-jar (deployment ...
0
votes
2answers
1k views

OC4J 10.1.3.4 problem with deploying multiple 2.1 EJBs

I am having troubles migrating from OC4J 10.1.2.3 to 10.1.3.1.4. The problem is for applications that have multiple EJBs (all are 2.1, no EJB 3.0). Jdeveloper will take the default ejb-jar.xml (the ...