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 » Workflow Engines - IBM MQ Workflow & Business Process Choreographer » logon issues

Post new topic  Reply to topic
 logon issues « View previous topic :: View next topic » 
Author Message
anuppc
PostPosted: Tue Jun 28, 2005 6:43 pm    Post subject: logon issues Reply with quote

Voyager

Joined: 22 Oct 2002
Posts: 93
Location: Montreal

I m trying to logon to MQWF which is set up to support french locale.

My configuration profile name is FMCFR.
The group name is FMCGRPFR
System name is FMCSYSFR

When i try to logon, it throws an exception as shown below.

[28/06/05 18:10:45:681 EDT] ff32f73 SystemOut O TRC ERROR!
FMC38009E Erreur d'API MQSeries Workflow :
Code retour d'API : 124
Origine de l'erreur : /projects/fmc/drv2/lbld/v350/aix/src/fmcjsess.cxx, line 1601
Message d'erreur : FMC00124E Profile or keyword in profile not found
Exception imbriquée : Aucun: :
[28/06/05 18:10:45:682 EDT] ff32f73 SystemOut O TRC : : com.ibm.workflow.api.FmcException:
FMC38009E Erreur d'API MQSeries Workflow :
Code retour d'API : 124
Origine de l'erreur : /projects/fmc/drv2/lbld/v350/aix/src/fmcjsess.cxx, line 1601
Message d'erreur : FMC00124E Profile or keyword in profile not found
Exception imbriquée : Aucun
[28/06/05 18:10:45:683 EDT] ff32f73 SystemOut O TRC : : at com.ibm.workflow.api.loc.ExecutionServiceImpl.logon4(ExecutionServiceImpl.java:299)

Any idea what this means?

My logon code looks like this..

Agent agent = new Agent();
agent.setLocator(Agent.LOC_LOCATOR);
agent.setName("MQWFAGENT");
ExecutionService service = agent.locate("FMCGRPFR", "FMCSYSFR");



By the way i tried to set the configuration profile name...

Agent agent = new Agent();
agent.setLocator(Agent.LOC_LOCATOR);
agent.setConfigurationID("FMCFR");
agent.setName("MQWFAGENT");
ExecutionService service = agent.locate("FMCGRPFR", "FMCSYSFR");


Is this correct ?
This is the error that i got..... Any ideas what could be the problem here


GalWFUtil::logonToWF {
[28/06/05 17:09:28:255 EDT] c3b2689 SystemOut O TRC : : Creating
MQ
Workflow Agent named MQWFAGENT
[28/06/05 17:09:28:312 EDT] c3b2689 SystemOut O TRC : : Creating
ExecutionService from the agent
[28/06/05 17:09:28:315 EDT] c3b2689 SystemOut O
GalWFUtil::logonToWF,
FMC: FMCFR
[28/06/05 17:09:28:315 EDT] c3b2689 SystemOut O
GalWFUtil::logonToWF,
FMCGRP: FMCGRPFR
[28/06/05 17:09:28:315 EDT] c3b2689 SystemOut O
GalWFUtil::logonToWF,
FMCSYS: FMCSYSFR
[28/06/05 17:09:28:381 EDT] c3b2689 SystemOut O TRC : : Logon to
EPM
unsuccessful due to an exception
[28/06/05 17:09:28:381 EDT] c3b2689 SystemOut O TRC ERROR!
FMC38002E
Le releveur de coordonn�es LOC_LOCATOR n'est pas pris en charge.: :
[28/06/05 17:09:28:382 EDT] c3b2689 SystemOut O TRC : :
java.beans.PropertyVetoException: FMC38002E Le releveur de
coordonn�es
LOC_LOCATOR n'est pas pris en charge.
[28/06/05 17:09:28:382 EDT] c3b2689 SystemOut O TRC : : at
com.ibm.workflow.api.Agent.failureLocator(Agent.java:506)
[28/06/05 17:09:28:382 EDT] c3b2689 SystemOut O TRC : : at
com.ibm.workflow.api.Agent.setLocator(Agent.java:406)
_________________
BlowFish
Back to top
View user's profile Send private message Send e-mail Yahoo Messenger MSN Messenger
anuppc
PostPosted: Tue Jun 28, 2005 7:04 pm    Post subject: Reply with quote

Voyager

Joined: 22 Oct 2002
Posts: 93
Location: Montreal

I found this in some other threads in the forum....

Any time it runs again in the same process, you get the PropertyVetoException. One way this can happen is if you have 2 configurations defined within a single AppServer, e.g trying to run 2 WebClient configs under the same AppServer process.

Yes i do have another configuration for English. So if i want to run the French configuration.... what do i have to do??... stop all WAS processes and start one just the French locale one?
_________________
BlowFish
Back to top
View user's profile Send private message Send e-mail Yahoo Messenger MSN Messenger
hos
PostPosted: Wed Jun 29, 2005 4:52 am    Post subject: Reply with quote

Chevalier

Joined: 03 Feb 2002
Posts: 470

Hi,

you should use the native Java API SupportPac. It overcomes this problem and many others. Otherwise you have to stop the whole AppServer and restart it with your French application only. The native libraries are loaded once at WAS startup. Therefore you must not have two applications that use the same MQWF native libraries ( = the MQWF C-API ).
Back to top
View user's profile Send private message
anuppc
PostPosted: Wed Jun 29, 2005 8:17 am    Post subject: Reply with quote

Voyager

Joined: 22 Oct 2002
Posts: 93
Location: Montreal

Hos,


Agent agent = new Agent();
agent.setConfigurationID("FMCFR");
agent.setName("MQWFAGENT");
service = agent.locate("FMCGRPFR", "FMCSYSFR");

This is the code and it throws me ...

TRC ERROR! FMC38001E Configuration FMCFR cannot be set: : : : : :
TRC : : : : : : java.beans.PropertyVetoException: FMC38001E Configuration FMCFR cannot be set
TRC : : : : : : at java.lang.Throwable.<init>(Throwable.java:54)
TRC : : : : : : at java.lang.Throwable.<init>(Throwable.java)

well i can try to put the native java api support pack but want to be sure if the above code will work...

please note that i have removed

agent.setLocator(Agent.LOC_LOCATOR);


Please let me know...

Thanks
Anup
_________________
BlowFish
Back to top
View user's profile Send private message Send e-mail Yahoo Messenger MSN Messenger
anuppc
PostPosted: Wed Jun 29, 2005 8:19 am    Post subject: Reply with quote

Voyager

Joined: 22 Oct 2002
Posts: 93
Location: Montreal

Hos, by the way i did stop all other app servers/configuration and started just the french version... it still throws these errors....
_________________
BlowFish
Back to top
View user's profile Send private message Send e-mail Yahoo Messenger MSN Messenger
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » Workflow Engines - IBM MQ Workflow & Business Process Choreographer » logon issues
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.