Search results for

file uri scheme

78,567 results found

Post

Replies

Boosts

Views

Activity

Notes from Your App and Next Generation Networks session
Two parts to session:Transitioning to IPv6-only networksReducing Delays in NetworkingTransitioning to IPv6-only networksMore mobile carriers are moving to IPv6 networksIn Ye Olde Days, cellular data networks used IPv4. As IPv4 addresses ran out, NAT was introduced to make IPs go further.To fix the long-term problem, mobile carriers are now moving to IPv6. But they're also having to support IPv4 with NAT.The carriers want to drop IPv4 with NAT, so they're deploying DNS64/NAT64 to handle translation between IPv4 and IPv6 networks.DNS64 synthesizes an IPv6 address for an IPv4-only serverNAT64 performs IPv6 to IPv4 address translationApp Store apps need to be IPv6 ready - It will be an app submission requirement later in 2015.Enabling IPv6 test network from a Mac1. Boot OS X 10.112. Open System Preferences3. Option-click on the Sharing preference pane4. Option-click on Internet Sharing5. A Create IPv6 Only Network checkbox will appear6. Check Create IPv6 Only Network (this may also be labeled Create NAT64 Network
12
0
16k
Jun ’15
Reply to sdmd
I was seeing this too, and at the same time Spotlight indexing was not progressing (mds and mds_stores running but doing nothing, no mdworkers in sight). I turned off the only service I previously turned on in Server beta 1: File Sharing, rebooted, and everything looks OK now. No sdmd, opendirectoryd hanging back, no pegging, and spotlight started indexing.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to watchkit microphone
There isn't direct access to a stream of audio from the microphone in watchOS. However, you can present a system interface to record audio to a file using:- (void)presentAudioRecordingControllerWithOutputURL:(NSURL *)URL preset:(WKAudioRecordingPreset)preset maximumDuration:(NSTimeInterval)maximumDuration actionTitle:(nullable NSString *)actionTitle completion:(void (^)(BOOL didSave, NSError * __nullable error))completion;
Topic: App & System Services SubTopic: General Tags:
Jun ’15
Download files
I paid a developer to modify my app that I bought, however he would not send me a copy, is this common?Is there a way I can down load all the files it to my home computer as a back up?ALSO how do I create a link to the app, so I can put it on my website.
1
0
263
Jun ’15
Can not get CMAccelerometerData
I'm writing a code for WatchOS2 extension that uses CMAccelerometerData.Built with no error, running correct scheme, installed in Apple Watch device, but nothing happend.Can not even stop breakpoint on first line.Something missing ?@implementation ExtensionDelegate- (void)applicationDidFinishLaunching { motionManager = [[CMMotionManager alloc] init]; motionManager.accelerometerUpdateInterval = 0.1; if (motionManager.accelerometerAvailable) { [motionManager startAccelerometerUpdatesToQueue:[NSOperationQueue currentQueue] withHandler:^(CMAccelerometerData *accelerometerData, NSError *error) { double xx = accelerometerData.acceleration.x; NSLog(@%lf, xx); }]; }}@end
0
0
258
Jun ’15
How to open iOS Captive Portal Splash Screen?
I wrote a DNS server in PHP, and I am running it on a Raspberry Pi (terminal) to use it as a Captive Portal.I am fully capable of redirecting all DNS requests.I connect the Raspberry Pi to my router (Ethernet cable) and assign the IP address of the Raspberry Pi to the primary DNS of my router.I am using a MySQL database to save authenticated devices in order to be able to know who can navigate and who can not.Everything is working fine.My problem: when a device connects to my Wi-Fi hotspot I would like the Captive Portal Splash Screen to automatically popup in order to allow the user to authenticate.On Android it is working: I only had to redirect requests for clients3.google.com to the Raspberry Pi IP address and create the generate_204 file in my web server (Apache) root folder (/var/www).On iOS it is NOT working: the iOS Captive Portal Splash Screen is not opening when the device connect to the Wi-Fi hotspot, and I can not find enough documentation on the web in order to solve it.How do I open the
2
0
3.7k
Jun ’15
Reply to Get rid of Open Directory!
OS X is nice because its easy to setup and run and cheap! Never had any issues with it here. I'm still running 10.6.8 on my servers for everything and still running strong so far! I just worry about a drive or other hardware giving out at this point.Anything MS to me is a nightmare. They make things more difficult to setup than nessassary and the technet articles give a whole story and give examples how it should be setup but don't really tell you how to do it. Then half the time its wrong in my experiances. Our MS fanboi is trying to setup the latest version of System Center and is having fun with that and getting it to work and hasn't been too happy. I skimmed over the documentation and noticed it even supports OS X, but Munki can do most of what it can so I have no use for it. Along with with Endpoint Antivirus, but again its lacking in any management on the OS X side so dissappointed.With Netboot, Caching, basic file serving, and profile manager I still think OS X server is liable. If Apple would
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Troubleshooting the launch of local user XPC Launch Agent
wjens wrote:> I thought the XPC Service template within xcode was only for XPC Services hosted within a parent application - produces .xpc files. I'm pretty sure those don't work as standalone XPC services like you describe above.Thanks for your input.I thought that this might be the case as well. In a variant of my prior test code, not shown here, I tried it with an Launch Agent based on the .app AppKit template but this didn't really change the broken connection behaviour. Which leads me to believe it's some kind of configuration issue.Although, I haven't tried the code of the Launch Agent, as posted above, as an Mac App created with the .app AppKit Xcode template but with the GUI stuff stripped out or with the Command Line Tool template.I forgot to mention in my previous post that debugging print statements in the Launch Agent's main.m, like the fprintf() calls in the example code or NSLog() or asl_log() calls in my original test code, do not appear anywhere in the command line output or in the
Jun ’15