ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » delete all resources from EG

Post new topic  Reply to topic
 delete all resources from EG « View previous topic :: View next topic » 
Author Message
vasilev
PostPosted: Fri Feb 02, 2024 2:28 am    Post subject: delete all resources from EG Reply with quote

Acolyte

Joined: 31 Oct 2014
Posts: 58
Location: Germany

Hello,
I am trying to delete all deployed resources from EG, perhaps it is not so correct:


Code:
Enumeration<DeployedObject> deplRes=EG.getDeployedObjects();
                 while (deplRes.hasMoreElements()) {
                    DeployedObject dobj=deplRes.nextElement();
                    EG.deleteDeployedObjectsByName(
                             new String[] { dobj.toString() }, 0);
                    
                 }


the error that I have is:

Code:
2024-02-02 11:19:54:BIPMessage:BIP2087E;BIP2087E: Integration node 'IIBNODE01' was unable to process the internal configuration message.

The entire internal configuration message failed to be processed successfully.

Use the messages following this message to determine the reasons for the failure. If the problem cannot be resolved after reviewing these messages, contact your IBM Support center. Enabling service trace may help determine the cause of the failure.

2024-02-02 11:19:54:BIPMessage:BIP4041E;BIP4041E: Integration server 'IIBBR01' received an administration request that encountered an exception.

While attempting to process an administration request, an exception was encountered. No updates have been made to the configuration of the integration server.

Review related error messages to determine why the administration request failed.

2024-02-02 11:19:54:BIPMessage:BIP2266W;BIP2266W: Request to change attribute in deployed resource 'test_app02' (uuid='a08c1a44-dd9e-42f9-a7bb-627718c8e27a',type='.APPZIP'): deployed resource does not exist or is predefined.

The integration node received a configuration message containing an instruction to change an attribute in the deployed resource 'test_app02' (uuid='a08c1a44-dd9e-42f9-a7bb-627718c8e27a',type='.APPZIP') but this can not be completed because the deployed resource either does not exist or is predefined.

Redeploy the new configuration to the integration node ensuring that the complete configuration option is used.  If the problem persists contact your IBM support center.

_________________
Regards
V.Vasilev
Back to top
View user's profile Send private message Visit poster's website
vasilev
PostPosted: Mon Feb 05, 2024 10:47 am    Post subject: Reply with quote

Acolyte

Joined: 31 Oct 2014
Posts: 58
Location: Germany

.. it will be good to stop the application before deleting it


Code:
Enumeration<ApplicationProxy> allAppsInThisEG = EG.getApplications(null);
while (allAppsInThisEG.hasMoreElements()) {
ApplicationProxy thisApp = allAppsInThisEG.nextElement();
thisApp.stop();
}

_________________
Regards
V.Vasilev
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » delete all resources from EG
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.