Skip to main content
Nintex Community Menu Bar

Destination Queue Error

  • September 28, 2007
  • 6 replies
  • 18 views

Forum|alt.badge.img+9

Hi All,


I added a destination queue in my activity as the destination rule.


I exported the process . After triggering the process, the process went to Running state and then to Error.


I got the following error :


"System.Exception: Type 'SourceCode.Logging.LoggerException' in assembly 'SourceCode.Logging, Version=3.6262.1.0, Culture=neutral, PublicKeyToken=null' is not marked as serializable.
   at K2Code44806.Main(ClientEventContext K2)"


The following is the code behind my client event :


public void Main(ClientEventContext K2)
{
 try
 {
  K2.ActivityInstanceDestination.DataFields["DocPath"].Value  = K2.ProcessInstance.DataFields["FilePath"].Value.ToString() + K2.ProcessInstance.DataFields["FileName"].Value.ToString();      
  
  K2.ActivityInstanceDestination.DataFields["DestinationQueue"].Value = K2.ActivityInstanceDestination.DestQueue.Name.ToString();
  
  K2.AddWorklist("ASP", K2.SerialNumber);
  
 }
 catch (System.Exception ex)
 {
  throw new System.Exception(ex.Message);
 }
}


 


Please guide me


Thanks and Regards

6 replies

Forum|alt.badge.img+5
  • September 28, 2007

Hi SourceCode,


There was a hotfix released for the issue you are experiencing. You can download it at https://portal.k2workflow.com/downloads/sets/hotfixDetail.aspx?id=12.


Regards


Gert


Forum|alt.badge.img+9
  • Author
  • September 28, 2007

Hi gert,


Thanks a lot for replying.


Is there any workaround for this cause I do not have the portal access .


Please guide.


Thanks and Regards


Forum|alt.badge.img+5
  • September 28, 2007

Unfortunately there is no workaround.


Your best bet would be to talk to your local sales representative about acquiring the hotfix.


Regards


Gert


Forum|alt.badge.img+9
  • Author
  • December 20, 2007

Hi ,


I got the required hotfix but what shall I do with it?


Please guide


Thanks and Regards


Forum|alt.badge.img+13
  • Rookie
  • December 20, 2007
Install it in a non-production environment, test it, then install the hotfix in prod.

Forum|alt.badge.img+10
  • Nintex Partner
  • December 22, 2007
Is there no readme or release notes for it?