Hi Gopala,
All the needed info is in the link Jarl had posted earlier: http://developer.bmc.com/jiveProd/entry!default.jspa?categoryID=528&exte rnalID=22&fromSearchPage=true >>>>Beginning with the versions in the following table, the Report Creator plug-in will check for the existence of this configuration item and if configured, use the designated private queue for its loopback API calls. ... All other proprietary and third party loopback plug-ins that don't have special queue requirements should also use this queue. <<<<< So the issue lies with the individual plug-in (that loops back to the Server) implementation in that it talks to the server using the private queue. So to solve this problem, your plug-in code must issue .NET AR API calls thru the private queue. So simply add the following line right after you instantiate & login using BMC.ARSystem.Server object but before issuing any API calls ... Server server = new Server(); Server.Login( ... ); server.SetServerPort(0 /* or the TCPPort value */, 390693 /* Your private queue */); /* ... rest of your API calls */ Regards Appajee ________________________________ From: Action Request System discussion list(ARSList) [mailto:[EMAIL PROTECTED] On Behalf Of Gopala Krishna Peela Sent: Sunday, September 09, 2007 3:59 PM To: [email protected] Subject: Re: Error: Plug-In server is not responding Hi Jarl, I tried even loopback.. But still facing the same issue. I have configured below lines into ar.cfg file Private-RPC-Socket: 390693 4 4 Plugin-Loopback-RPC-Socket: 390693 Environment details: Windows XP, remedy 6.3 patch 18. Mid Tier 6.3, .Net API 7.0 Thanks &Regards, Gopala Krishna.Peela ___________ ------------------------------------------------------------------------ --------------------- This message, including any attachments, contains confidential information intended for a specific individual and purpose, and is intended for the addressee only. Any unauthorized disclosure, use, dissemination, copying, or distribution of this message or any of its attachments or the information contained in this e-mail, or the taking of any action based on it, is strictly prohibited. If you are not the intended recipient, please notify the sender immediately by return e-mail and delete this message. __20060125_______________________This posting was submitted with HTML in it___ _______________________________________________________________________________ UNSUBSCRIBE or access ARSlist Archives at www.arslist.org ARSlist:"Where the Answers Are"

