Re: Remote control desktop from iPhone

2012-12-07 Thread David Brittain
It's not directly what you need, but NSLogger might be worth looking
at. It sends realtime logs from an iOS device to the desktop:

https://github.com/fpillet/NSLogger


On Thu, Dec 6, 2012 at 10:59 AM, Eric E. Dolecki  wrote:
> I'm about to embark on a local project that requires an iOS app to be able
> to send string commands to a running OS X application. Essentially a remote
> control for the OS X app.
>
> Without having to do a lot of research and the banging of my head against
> the fact that there is currently no way to use GameKit on OS X to comm with
> an iOS app using GameKit, is there a known project on github or elsewhere
> that simply sets this stuff up? I realize it may require a socket server or
> something - but I am no networking/Bonjour guru.
>
> Looking for the communication stuff if I can find it so I can concentrate
> on what I'll be doing with it instead.
>
> Any known stuff out in the wild I might be able to use? I'll be Googling
> and StackOverflow'ing in the mean time.
>
> Thanks for any help,
> Eric
> ___
>
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
>
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/cocoa-dev/websites%40paperetto.com
>
> This email sent to websi...@paperetto.com
>



-- 
David Brittain
da...@paperetto.com
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Remote control desktop from iPhone

2012-12-06 Thread Jens Alfke

On Dec 6, 2012, at 11:46 AM, Nick Zitzmann  wrote:

> MYNetwork will get you half-way there: 
> 

What Nick said. (Disclaimer: I wrote MYNetwork.) It does the TCP client and 
server stuff for you, and Bonjour advertising & discovery. It also implements 
the BLIP protocol which lets you easily send messages in both directions over 
the socket and get replies, which sounds like the kind of thing you want for 
your project.

—Jens
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Remote control desktop from iPhone

2012-12-06 Thread Nick Zitzmann

On Dec 6, 2012, at 11:59 AM, Eric E. Dolecki  wrote:

> I'm about to embark on a local project that requires an iOS app to be able
> to send string commands to a running OS X application. Essentially a remote
> control for the OS X app.
> 
> Without having to do a lot of research and the banging of my head against
> the fact that there is currently no way to use GameKit on OS X to comm with
> an iOS app using GameKit, is there a known project on github or elsewhere
> that simply sets this stuff up? I realize it may require a socket server or
> something - but I am no networking/Bonjour guru.

MYNetwork will get you half-way there: 


Nick Zitzmann



___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Remote control desktop from iPhone

2012-12-06 Thread Gene Crucean
Maybe look into using XMPP for this. Yes it's an instant messaging
protocol... but it can (and is) used for much more than that. All it does
is transmit xml packets which can be used to control pretty much
anything. Here is a nice web app that communicates with KVM via xmpp.
http://archipelproject.org

... just something to possibly think about.


On Thu, Dec 6, 2012 at 11:21 AM, Alex Zavatone  wrote:

> I think Erica Sadun did a bonjour service example for the iPhone a few
> years ago, but there are samples for iOS Bonjour in the dev docs.
>
> Also, this is up on Google Code and might help point you in the right
> direction:
>
> http://code.google.com/p/telekinesis/
>
> On Dec 6, 2012, at 1:59 PM, Eric E. Dolecki wrote:
>
> > I'm about to embark on a local project that requires an iOS app to be
> able
> > to send string commands to a running OS X application. Essentially a
> remote
> > control for the OS X app.
> >
> > Without having to do a lot of research and the banging of my head against
> > the fact that there is currently no way to use GameKit on OS X to comm
> with
> > an iOS app using GameKit, is there a known project on github or elsewhere
> > that simply sets this stuff up? I realize it may require a socket server
> or
> > something - but I am no networking/Bonjour guru.
> >
> > Looking for the communication stuff if I can find it so I can concentrate
> > on what I'll be doing with it instead.
> >
> > Any known stuff out in the wild I might be able to use? I'll be Googling
> > and StackOverflow'ing in the mean time.
> >
> > Thanks for any help,
> > Eric
> > ___
> >
> > Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
> >
> > Please do not post admin requests or moderator comments to the list.
> > Contact the moderators at cocoa-dev-admins(at)lists.apple.com
> >
> > Help/Unsubscribe/Update your Subscription:
> > https://lists.apple.com/mailman/options/cocoa-dev/zav%40mac.com
> >
> > This email sent to z...@mac.com
>
> ___
>
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
>
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>
> Help/Unsubscribe/Update your Subscription:
>
> https://lists.apple.com/mailman/options/cocoa-dev/emailgeneonthelist%40gmail.com
>
> This email sent to emailgeneonthel...@gmail.com
>



-- 
Gene Crucean - Emmy winning - Oscar nominated VFX Supervisor / iOS-OSX
Developer / Filmmaker / Photographer
** *Freelance for hire* **
www.genecrucean.com

~~ Please use my website's contact form on www.genecrucean.com for any
personal emails. Thanks. I may not get them at this address. ~~
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Remote control desktop from iPhone

2012-12-06 Thread Alex Zavatone
I think Erica Sadun did a bonjour service example for the iPhone a few years 
ago, but there are samples for iOS Bonjour in the dev docs.

Also, this is up on Google Code and might help point you in the right direction:

http://code.google.com/p/telekinesis/

On Dec 6, 2012, at 1:59 PM, Eric E. Dolecki wrote:

> I'm about to embark on a local project that requires an iOS app to be able
> to send string commands to a running OS X application. Essentially a remote
> control for the OS X app.
> 
> Without having to do a lot of research and the banging of my head against
> the fact that there is currently no way to use GameKit on OS X to comm with
> an iOS app using GameKit, is there a known project on github or elsewhere
> that simply sets this stuff up? I realize it may require a socket server or
> something - but I am no networking/Bonjour guru.
> 
> Looking for the communication stuff if I can find it so I can concentrate
> on what I'll be doing with it instead.
> 
> Any known stuff out in the wild I might be able to use? I'll be Googling
> and StackOverflow'ing in the mean time.
> 
> Thanks for any help,
> Eric
> ___
> 
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
> 
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
> 
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/cocoa-dev/zav%40mac.com
> 
> This email sent to z...@mac.com

___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Remote control desktop from iPhone

2012-12-06 Thread Eric E. Dolecki
I'm about to embark on a local project that requires an iOS app to be able
to send string commands to a running OS X application. Essentially a remote
control for the OS X app.

Without having to do a lot of research and the banging of my head against
the fact that there is currently no way to use GameKit on OS X to comm with
an iOS app using GameKit, is there a known project on github or elsewhere
that simply sets this stuff up? I realize it may require a socket server or
something - but I am no networking/Bonjour guru.

Looking for the communication stuff if I can find it so I can concentrate
on what I'll be doing with it instead.

Any known stuff out in the wild I might be able to use? I'll be Googling
and StackOverflow'ing in the mean time.

Thanks for any help,
Eric
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com