Explanation | A key was passed into the WorkAreaMessages class to resolve to a string, but a properties file for the locale could not be found and the appropriate message could not be retrieved. |
Action | If the problem persists, additional information might be available if you search for the message ID on the following Web sites: WebSphere Application Server Support page: http://www.ibm.com/software/webservers/appserv/was/support/ WebSphere Application Server for z/OS Support page: http://www.ibm.com/software/webservers/appserv/zos_os390/support/ . |
Explanation | The work area service was not enabled. The work area service will be inaccessible on the given client or server. |
Action | No user action required. |
Explanation | The work area service experienced an error during initialization. The service will be inaccessible on the given client or server. The causing error should already have been logged. This message will be displayed when a user attempts to look up the WorkArea service. |
Action | If the problem persists, additional information might be available if you search for the message ID on the following Web sites: WebSphere Application Server Support page: http://www.ibm.com/software/webservers/appserv/was/support/ WebSphere Application Server for z/OS Support page: http://www.ibm.com/software/webservers/appserv/zos_os390/support/ . |
Explanation | The work area service could not resolve the ActivityService from the client/server's orb. Verify that the activity.jar and activityImpl.jar files are available in the process. |
Action | If the problem persists, additional information might be available if you search for the message ID on the following Web sites: WebSphere Application Server Support page: http://www.ibm.com/software/webservers/appserv/was/support/ WebSphere Application Server for z/OS Support page: http://www.ibm.com/software/webservers/appserv/zos_os390/support/ . |
Explanation | A user has attempted to access the work area service before the orb is initialized. |
Action | If the problem persists, additional information might be available if you search for the message ID on the following Web sites: WebSphere Application Server Support page: http://www.ibm.com/software/webservers/appserv/was/support/ WebSphere Application Server for z/OS Support page: http://www.ibm.com/software/webservers/appserv/zos_os390/support/ . |
Explanation | The given work area partition experienced an error during runtime. Depending upon the severity of the error, the service may be blocked until the server method call returns or the client process terminates. |
Action | Verify that the work area programming model is carefully followed. |
Explanation | The work area service experienced a significant error during runtime resulting in the possible corruption of user data; the service is blocked until the correct state can be restored (when the thread can be cleaned). For example, when the client process terminates, when the servlet process terminates or when the EJB method call is returned. |
Action | Verify that the work area programming model is carefully followed. |
Explanation | User code began but did not property complete a work area in the servlet or bean of the server process. The work area service will try to complete abandoned work areas in this situation, but users are ultimately responsible for following the work area programming model. |
Action | Verify that the work area programming model is carefully followed. |
Explanation | The user code was suspended but did not properly resume a work area in the servlet or bean of the server process. The work area service will try to resume abandoned work areas in this situation, but users are ultimately responsible for following the work area programming model. |
Action | Verify that the work area programming model is carefully followed. |
Explanation | The work area service is ready for business. |
Action | No user action is required. |
Explanation | Context flowed into the work area partition that could not be demarshalled because the context was in an unfamiliar format. The unfamiliar format may reflect a version incompatibility. |
Action | If the problem persists, additional information might be available if you search for the message ID on the following Web sites: WebSphere Application Server Support page: http://www.ibm.com/software/webservers/appserv/was/support/ WebSphere Application Server for z/OS Support page: http://www.ibm.com/software/webservers/appserv/zos_os390/support/ . |
Explanation | The Application Server was invoked by a later version client. The format of the context between these releases has changed. The imported context may have been work area context or may have been some other context. To support interoperation between the Application Server version 4.0 servers and future Application Server clients, you must apply the appropriate service pack. Note that if the client request did contain work area properties, those properties were not imported into the server process. |
Action | If the problem persists, additional information might be available if you search for the message ID on the following Web sites: WebSphere Application Server Support page: http://www.ibm.com/software/webservers/appserv/was/support/ WebSphere Application Server for z/OS Support page: http://www.ibm.com/software/webservers/appserv/zos_os390/support/ . |
Explanation | You can set the size of a work area that can be sent. You can do this by setting a maxSendSize in the administrative console on the server, or on the client by setting the following system property: com.ibm.ws.workarea.maxSendSize=67891, for example. This warning message is displayed if the system property values are set to an incorrect value, like "abc" for example. |
Action | Set a valid number for the maxSendSize, see the WorkArea documentation for valid values. |
Explanation | You can set the size of a work area that can be received. You can do this by setting a maxReceiveSize in the administrative console on the server, or on the client by setting the following system property: com.ibm.ws.workarea.maxReceiveSize=67891, for example. This warning message is displayed if the system property values are set to an incorrect value, like "abc" for example. |
Action | Set a valid number for the maxReceiveSize, see the work area documentation for valid values. |
Explanation | A service can create a work area partition during server start. However, once the server is started, if a service attempts to create a partition, an exception will be created. |
Action | Create the work area partition before the server is started. |
Explanation | The given work area partition was not enabled. The given partition will be inaccessible on the given client or server. |
Action | Enable the given work area partition if the partition is needed. |
Explanation | The given work area partition is ready for business. |
Action | No user action required. |
Explanation | A work area partition name must be unique. If an attempt is made to create a partition with a name that already exists, an exception is created. |
Action | Create the work area partition with a unique name. |
Explanation | The requested work area partition could not be found. The name was incorrectly specified or the partition was either not created or was not created successfully. |
Action | Verify that a work area partition with the given name was successfully created. If it does not exist, create one if needed. |
Explanation | The partion name field cannot be empty. |
Action | Enter an appropriate, non-null name for a partition. |
Explanation | A work area can only be accessed within a controlled boundary or in a controlled manner. Examples of, but not limited to, an illegal access are: 1) Attempting to complete a work area begun by another process. 2) Attempting to remove context set by another process. 3) Attempting to set context into a work area partition before beginning a work area. |
Action | Verify that the work area programming model is carefully followed, see the work area documentation. |
Explanation | A work area can only be accessed within the life cycle of a valid container. Examples of, but not limited to, a valid container are: 1) EJB, 2) Web |
Action | Verify that a request to the work area service is only made in the life cycle of a valid container. |