0
votes
0answers
15 views

Objective C Daemon run not avery time will launch

i have create a Daemon that search all USB storage connectet with my MAC an then control all Serial number for send a HTTPRequest to a local server. +(NSMutableArray*)impelemntazioneInterfaccia{ ...
0
votes
3answers
24 views

Objective C - HttpRequest with Daemon

i have created a daemon in Objective C that after search USB device, have to send an HttpRequest to an URL. I have tried by Browser and the Host is reachable. For create a Daemon i have used ...
0
votes
1answer
32 views

Daemon isn't loaded with SMJobSubmit objective C

I want to write a program which load a daemon with SMJobSubmit() API Here's my code : int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; ...
0
votes
1answer
19 views

Network notification to a daemon

I'd like to create a daemon which makes a series of requests to a webserver every time the machine comes online. I could use the SCNetworkReachabilityGetFlags function in a loop to figure out if a ...
0
votes
0answers
18 views

“IPC failure: Operation not permitted” on running SampleD

I'm trying to understand the code mentioned in the Apple Developer Docs for writing daemons. I tried building and running the code in XCode. As mentioned in the README the steps for running the same ...
0
votes
1answer
41 views

Releasing resources at end of NSRunLoop

I am trying to release resources allocated in daemon process at the end of it or if someone quits the process. Lets say, int main(int argc, const char * argv[]) { Controller *controller = ...
0
votes
0answers
81 views

How to Load LaunchDaemon plist from my Mac Application

I'm trying to a Load LaunchDaemon plist from my Mac Application. When i try to load it in terminal it loads successfully, but when i try to load it thru my code, it doesn't work. Here is my code : ...
2
votes
0answers
94 views

launching a user-context application by root-daemon on demand

I'm a noob to objective c and I have a daemon code that runs as root (system-wide application) and communicates with a server. Every once in a while, the server will command that root app to fire up ...
0
votes
0answers
123 views

Daemon - Client IPC with Unix sockets

I have a launch daemon which I want to ask for status information from a user app. I implemented a client-server model (with the daemon as server) using unix sockets as described here: OS X - ...
1
vote
1answer
368 views

USB detection in jailbreak ios

I'm currently trying to develop daemon on a jailbreak ios device and I'm looking to find a way to detect that the device is to usb. Is there any plist or anything else that I can monitor to check the ...
2
votes
2answers
418 views

Getting the active application on OS X 10.7 using a python daemon

I'm trying to build a daemon in python and I want to get the name of the current active application. For the daemon I'm using this nice code snipped from Sander Marechal The following line works ...
1
vote
1answer
709 views

Developing a non-GUI user agent in Objective-C using NSDistributedNotificationCenter

I would like to create a user agent in Objective-C that listens for notifications from the default NSDistributedNotificationCenter. The agent will not have a GUI. When I create a Cocoa application (I ...
0
votes
0answers
254 views

What is the easiest way to parse RTF data using Objective-C/C in a headless/daemon context?

Ideally I would use initWithRTFD:documentAttributes: (NSAttributedString), however those are provided by AppKit which is not a daemon-safe framework. Doing a little research uncovered this really ...
1
vote
1answer
69 views

Is there a way to programmatically start the Mobile me synchronization?

What I would like to create is a utility that runs the Mobile Me synchronization basing a defined schedule, and avoid it starts when Time Machine is already backing up files. Is there a way to invoke ...
0
votes
1answer
588 views

How do i create a agent/daemon that listens for NSDistributedNotifcations

I've created a command line cocoa program which creates an NSDistributedNotification, which other applications send notifications to. How can i keep the program running in an active state so it can ...
2
votes
1answer
652 views

Writing a LaunchDaemon for iPhone

[JAILBROKE] I've googled, but i can't find any guides on how to write a LaunchDaemon. This is for the iPhone, so it'll be in Objective-C. I know Objective-C well, i just need some kind of guide to get ...
0
votes
2answers
134 views

Why does a Daemon randomly stop?

This is sort of related to a previous, yet so far unsuccessful question of mine. I have a daemon that is placed in the LaunchAgents folder (on Mac) and it should run perpetually in the background, but ...
0
votes
1answer
171 views

Daemon running as user nobody needs to copy file from Desktop

I have a daemon that is running as user nobody. It needs to copy a file that I specify into /Users/Shared/MyFolder If I tell it to copy a file that is already in /Users/Shared/ it works fine. If I ...
1
vote
2answers
678 views

What's the correct way to stop a background process on Mac OS X?

I have an application with 2 components: a desktop application that users interact with, and a background process that can be enabled from the desktop application. Once the background process is ...
1
vote
1answer
1k views

Writing daemon in objective c

I need to write a daemon, much like windows service on os x using objective c. Can anyone point to some sample? or guide me about how to do this?
1
vote
1answer
2k views

developing a osx deamon that runs before user login using xcode

Hi I am trying to develop a daemon using objective-C/xcode. I am new to mac world and can I get an idea of what project template to choose in xcode and how to do it. Can I get a simple and basic ...