Event Notification & Task Assignment to SharePoint Groups

  • 1 April 2012
  • 1 reply
  • 0 views

Badge +2

 


Hi,


 


We have BlackPearl 4.5 (4.10060.1.0) with KB001420, we are using ShreaPoint groups & user for task assignment. We are facing issues related with the task assignment and Event Notification:


 


Task Assignment


Task is not visible for newly added user to SharePoint groups and task is still visible for users those has been removed from SharePoint groups. Is there any Timer jobs to execute after group modifications.


 


Event Notification Failed and got following exception:


"546215","2012-03-08 02:32:08","Error","MessageBus","61007","SendMessageException","MessageBusRuntime","61007 Permanent failure sending message Workflow item received.: System.FormatException: The specified string is not in the form required for an e-mail address.


 


SmartObject Services "Users_and_Groups" is used to get SharePoint Groups & Users, I changed Email address of one user and tried to get it but it return empty string. In order to check, I write following code to check Email but every time it returns empty:


 


SmartObjectClientServer soServer = new SmartObjectClientServer();


 


            SCConnectionStringBuilder cb = new SCConnectionStringBuilder();            


 


            cb.Host = "DLX";


 


            cb.Port = 5555;


 


            cb.Integrated = true;


 


            cb.IsPrimaryLogin = true;


 


            soServer.CreateConnection();


 


            soServer.Connection.Open(cb.ToString());           


 


            SmartObject soASD = soServer.GetSmartObject("Users_and_Groups");       


 


            soASD.MethodToExecute = "Get_E_mail_For_User";


 


            soASD.AllMethods[0].InputProperties["User_Fully_Qualified_Name"].Value = @"K2:DenallixAdministrator";


 


            try


 


            {


 


                SmartObject smoASDList = soServer.ExecuteScalar(soASD);


 


                Console.WriteLine(smoASDList.Properties["Email"]);


 


            }


 


 


Is there any thing I missed or any configuration setting is required?


 


Any help much appreciated.


 


1 reply

Badge +6

duplicate post.

Reply