site_archiver@lists.apple.com Delivered-To: darwin-dev@lists.apple.com Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:subject :mime-version:date:references:x-mailer; bh=RahVKUCPeFIPS2jTzPA4iHCgu/AB5MQus5N3WZTpMjk=; b=Uni1zpz/LKdA0QHEo93HWyQ5Y0+ooULaAupHcEnMbhcDXXAzZdKVV1nZf2oWY4/fSC SbubKht3xeQknw0cF+2okL2j60AEjZYWTxlOAGRzavHTp7jRgfFMGuyUA0jJNX/qi1hX Ka8qd2ENr6MiOZ1k0K81VRUR6hpcVONPTveFg= Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:subject:mime-version:date:references :x-mailer; b=Ooin/+LabeM19hZ4VEGlcqejBQuPYS+6UJMhfrf7wKPGmWnizqTqjKhVxmGmV274UI WrZ6kW2hGI0qEvZyLV3fUwoAsVMUVSfh3+ffwWIHzPjn8bqSi80DRfdiGV6j05HzB3pJ RFb6JjCNKuTjMl953UejX3Yv1WwnaAou0AaPE= On Mar 2, 2009, at 5:11 AM, sandeep chaudhary wrote: Hi all, But I am not able to run the daemons.Here is my plist file - Thanks -sandeep Also, you can try: sudo launchctl load <path to plist file> Eli _______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-dev mailing list (Darwin-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/darwin-dev/site_archiver%40lists.appl... I am working on launching the daemons,which will run on background continously. I have created a plist and put it into the /Library/ LaunchedDaemons. I have set the owner- root and group- wheel to the plist.The plist will run application which is located on the following locaton - "/library/Applications". <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd "> <plist version="1.0"> <dict> <key>Label</key> <string>CXComServiceApp</string> <key>OnDemand</key> <true/> <key>RunAtLoad</key> <true/> <key>ProgramArguments</key> <array> <string>/Applications/Cxtra/CXComServiceApp.app/Contents/MacOS/ CXComServiceApp</string> </array> </dict> </plist> Here CXComServiceApp is the application which i want to run as a daemons. What i am doing wrong? Could you tell me how can i run the daemons in details. What are the terms and conditions which i am not follwings. Use Console.app to look at the system log. That should give you some idea of why it's failing. launchctl should tell you why it decided not to load your daemon if it fails. And the path you listed in the plist doesn't match the path you mention in your description. This email sent to site_archiver@lists.apple.com