Tagged Questions
1
vote
0answers
69 views
Apple sandbox: Disable NSDocument's atomic save for Document-scoped bookmarks
I have posted this question on Apple's Developer forum and received no reply after a week, so I am hoping I will have better luck here.
I have created a standard document-based application (using ...
1
vote
0answers
36 views
Access sidecar files in a Mac sandboxed app
I need to access sidecar XMP files in a document-based photo editor application.
The image files are the documents, and I need to access the sidecar XMP file when the user open and save an image ...
6
votes
1answer
102 views
Which version of Mac OS X included temporary exception entitlements for the first time?
I understand that sandbox was introduced in Mac OS X Lion (10.7) but temporary exception entitlements, specifically com.apple.security.temporary-exception.files.home-relative-path.read-write, were ...
0
votes
1answer
94 views
Best practices for updating files in OS X App Sandbox
I'm aware of the methods for migrating a non-sandboxed app to an app sandbox, although I would like to know what the best practices would be for updating files (mostly preference lists) once already ...
0
votes
0answers
182 views
Console not showing Mac OS app sandbox violations in Apple's Quick Start
I'm stepping through this Apple tutorial for enabling sandboxing. I've successfully worked through the sections, creating the Xcode project, enabling app sandbox, creating a certificate, specifying ...
0
votes
1answer
137 views
Terminate child processes in OS X Sandbox
I'm trying to bundle Apache in my sandboxed application. Starting it works but I'm finding some issues stopping it. By either directly calling 'kill' or using "apachectl -k stop" I keep receiving a ...
2
votes
1answer
649 views
App sandbox: how to allow XPC service to read file that user opened in parent app?
I have a simple Cocoa image preview app. The user selects a file using an NSOpenPanel and the app generates a preview image using the Quick Look API.
I'd like to move the preview generation into a ...
2
votes
2answers
214 views
Can Mac App Store Sandboxed apps use CGEventPost?
For an app I am working on I am using CGEventPost to post some key events and I noticed that it stopped working with sandboxing enabled, even I turned on the "Enable Access for Assistive Devices" ...
0
votes
1answer
1k views
'sandboxd: deny file-write-create' when writing to app's own bundle
I've written a program in the Mac App store which displays some graphics. Occasionally it updates these off the internet. As with most folks, I'm having to Sandbox my app now.
Almost everything is ...
1
vote
0answers
179 views
CFMessagePort and sandboxing
I am adapting a MacOS application to use sandboxing. It uses a helper application (an exe in the same bundle) that fails when I try calling CFMessagePortCreateRemote with a 'deny mach-lookup' message ...
0
votes
1answer
236 views
How to send distributed notification in sandboxed app in Lion?
I can't send distributed notifications in an application that i tried to sandbox in Lion.
Getting:
deny distributed-notification-post
in console. Is there any entitlement that can be added to allow ...
1
vote
1answer
456 views
Storing file out of sandbox in iphone or Accessing filesystem by other applications
The main objective of my application is to download pdf, html, doc etc file types from server and read it.
Now the requirement is , the files i have downloaded should be accessible by other reader ...
5
votes
1answer
280 views
Mac app sandboxing and forkpty()
I'm looking to sandbox an app to comply with the March 1st sandboxing requirement of the Mac App Store. My app includes a built-in terminal emulator which utilizes a forkpty() call to launch processes ...
2
votes
1answer
1k views
Sandbox with NSTask
I have sandboxing enabled and use /sbin/ping with NSTask:
[task setLaunchPath:@"/sbin/ping"];
[task setArguments:[NSArray arrayWithObjects:@"-c10", iPAddress, nil]];
Everything works great and I ...
0
votes
1answer
232 views
Mac App Store Sandboxing - Writing a new file?
I've been playing around with an app I want to submit to the Mac App Store, and part of the functionality is simply grabbing a file the user chose by dragging or opening, and saving a modified of it ...
2
votes
1answer
1k views
Non in-place saving in OS X sandbox
I'm developing a sandboxed app for Mac OS X 10.7 and I'm trying to implement file saving in a way similar to NSDocument:
Rewrite the file's new contents to a temporary file
Overwrite the original ...
4
votes
3answers
1k views
Getting path to users Library folder in Osx
I need to open a NSSavePanel with the users Library folder as destination folder. Normally I would do this by entering "~/Library/" in [NSSavePanel beginSheetForDirectory].
This works fine as long as ...
16
votes
2answers
583 views
Alternatives for CGEventPostToPSN() for activating an other app's menu item in a sandboxed environment?
I have this app where I need to activate an other app's menu item (like Print cmd+p) from within my app. Right now I'm using CGEventPostToPSN() to do the job and it works fine, but when I activate ...
4
votes
1answer
317 views
How to set temporary entitlements for IOKit properties?
I'm using sandboxing in for my Mac app. I need to set a property to IOKit like so,
IORegistryEntrySetCFProperty(reg, CFSTR("IORequestIdle"), kCFBooleanTrue);
Because of app sandboxing, the system ...
3
votes
1answer
459 views
Mac Sandbox and XCode 3.x
Is there a way to be Sandbox-compliant compiling apps with XCode 3.x?
Are there any articles or tutorials out there on how to do this?
I'm the developer of a Mac application and I'm stuck with XCode ...
4
votes
2answers
299 views
Can I submit a Mac App without enabling Sandboxing?
As I heard that Mac Apps submitted must enable sandboxing. Because I want to use NSRunningApplication.terminate, and it doesn't work with sandboxing.
6
votes
1answer
899 views
Mac OS X: Open file in finder + App Sandbox
I try to open a finder window which works fine but every time i am doing this there is 1 second delay and an error logged.
[[NSWorkspace sharedWorkspace] selectFile:@"Users/[TheUser]/Downloads"
...
1
vote
1answer
247 views
Are Mac App Store apps allowed to read .plist files of other apps?
Is it allowed for Mac apps available on the Mac App Store to read .plist files of a (built in) app or do I need to sandbox it completely (Scripting bridge does not provide the functionality)?