Top
Symfoware Server V12.1.0 Messages
FUJITSU Software

A.2.19 Messages that Contain "WELD" in the Message ID

A.2.19.1 WELD-000200 to WELD-000299

WELD-000214 Attempt to call begin() on a long-running conversation

Explanation

javax.enterprise.context.Conversation#begin() was executed in a state where the Conversation scope had already started.

System Action

Processing is interrupted.

User Action

Review the Java application processing so that javax.enterprise.context.Conversation#begin() is not executed after the Conversation scope is started.

WELD-000215 Attempt to call end() on a transient conversation

Explanation

javax.enterprise.context.Conversation#end() was executed in a state where the Conversation scope had not yet started.

System Action

Processing is interrupted.

User Action

Review the Java application processing so that javax.enterprise.context.Conversation#end() is not executed in a state where the Conversation scope has not yet started.

A.2.19.2 WELD-000300 to WELD-000399

WELD-000321 No conversation found to restore for id {0}

Variable Information

{0}: Conversation scope ID number

Explanation

The Conversation scope of ID {0} was not found.

System Action

Processing is interrupted.

User Action

The Conversation scope of ID {0} may have ended because of a timeout.

Check if a timeout has occurred.

A.2.19.3 WELD-000400 to WELD-000499

WELD-000404 Conditional observer method [{0}] cannot be declared by a @Dependent scoped bean

Variable Information

{0}: Observer method

Explanation

The Observer method has been declared for the Dependent scope class.

System Action

Processing is interrupted.

User Action

Change the scope of the class for which the Observer method has been declared to a scope other than Dependent.

A.2.19.4 WELD-000800 to WELD-000899

WELD-000816 Cannot determine constructor to use for {0}

Variable Information

{0}: Interface implemented by the injected class

Explanation

A class has not been specified for the @New annotation argument.

System Action

Processing is interrupted.

User Action

Specify the class to be injected in the argument.

A.2.19.5 WELD-000900 to WELD-000999

WELD-000900 1.1.8 (is)

Explanation

This message shows the version of the CDI.

A.2.19.6 WELD-001300 to WELD-001399

WELD-001318 Cannot resolve an ambiguous dependency between {0}

Variable Information

{0}: Injected class candidate

Explanation

There are multiple classes that can be injected.

System Action

Processing is interrupted.

User Action

Check the CDI-related definition so that the class to be injected can be identified.

A.2.19.7 WELD-001400 to WELD-001499

WELD-001408 Unsatisfied dependencies for type [{0}] with qualifiers [{1}] at injection point [{2}]

Variable Information

{0}: Injected class or interface
{1}: Injected class qualifier
{2}: Injection destination

Explanation

Either the CDI-related definition for the injected class is insufficient, or the CDI is not valid.

System Action

Processing is interrupted.

User Action

Check the CDI-related definition for the injected class. Alternatively, check if beans.xml has been stored in the Java application.

WELD-001409 Ambiguous dependencies for type [{0}] with qualifiers [{1}] at injection point [{2}]. Possible dependencies [{3}]

Variable Information

{0}: Injected class or interface
{1}: Injected class qualifier
{2}: Injection destination
{3}: Injected class candidate

Explanation

There are multiple classes that can be injected.

System Action

Processing is interrupted.

User Action

Check the CDI-related definition so that the class to be injected can be identified.

WELD-001417 Enabled interceptor class {0} is neither annotated @Interceptor nor registered through a portable extension

Variable Information

{0}: Class defined as the Interceptor in beans.xml

Explanation

The @Interceptor annotation has not been granted to the class specified as the Interceptor in beans.xml.

System Action

Processing is interrupted.

User Action

To use an Interceptor, grant the @Interceptor annotation.
If the Interceptor is not to be used, delete the content specified for the Interceptor from beans.xml.

WELD-001422 Enabled alternative {0} is not annotated @Alternative

Variable Information

{0}: Class defined as the Alternative in beans.xml

Explanation

The @Alternative annotation has not been granted to the class in which the Alternative is enabled.

System Action

Processing is interrupted.

User Action

Grant the @Alternative annotation.

WELD-001424 The following disposal methods were declared but did not resolve to a producer method:  {0}

Variable Information

{0}: disposer method

Explanation

The configuration of the disposer method is incorrect.

System Action

Processing is interrupted.

User Action

Check the definitions of the producer and disposer methods.

WELD-001450 Interceptor method {0} does not declare that it throws Exception.

Variable Information

{0}: Method specified for the Interceptor

Explanation

Throwing exceptions has not been declared in the Interceptor.

System Action

Processing is continued.

User Action

Declare the throwing of exceptions in the Interceptor.