Access file from Mac Public Folder or shared folder using iPad Application by Bonjour Service - iphone

i want to Access file from Mac Public Folder or any other shared folder that is connected to iPad Application. using Bonjour i am able to get list of connected Mac in application i have download source code from below two links:
https://developer.apple.com/library/ios/#samplecode/BonjourWeb/Introduction/Intro.html
http://blog.haurus.com/?p=342
but now i want to access file from shred folder of that connected Mac using Bonjour. Any sample code or idea for that then reply here.
Thanks in Advance.

Related

Installing a Windows Mobile application on a Windows CE device

A client has asked us to "revive" an old Windows Mobile application that is used by their receiving department.
At some point they wrote a custom Windows Mobile 6 app for Windows CE devices (a Motorola MC55A to be specific).
They have a project in place to replace this app - but it won't happen for a bit and they want to install the custom app on some newly refurbished devices they found as an interim solution.
I found the source code for the application. It even contains an installer project that generates the CAB files.
What I do not know how to do is get the compiled app and installer onto the device.
I am using one of their legacy computers to build the app and connect to the device. The computer has Windows Mobile Center installed and when I see the device connected - I the ability to add / remove programs on the device.
Not sure if this is the route I should be going. Ideally I want to put the installer behind a web page and just have each device download the installer to install the app.
This stuff is pretty dated - I am having a hard time on the specifics of deployment.
You can put the CAB file on the device and launch it manually using the file explorer on the device to install the files.
Some industrial devices like Honeywell, Intermec, Motorola, Symbol, Zebra and others support the auto install of cab files, if the files are put in a special folder on the device. For former Intermec Honeywell devices, this folder is called \Flash File Store\CabFiles. If a cab file is placed in this folder, it will be installed on the next reboot.
You may also put a link to the CAB file on a web site and open that web site within the Internet Explorer on the device. The device will ask for the installation, when the file link is tapped. Please note that some web server like IIS by default block CAB files from being loaded! If so, you need to configure the web server to allow cab file downloading.
Many months later, but I wanted to answer this for future reference, when you DEPLOY Solution, Visual Studio (2008 was the last one supporting windows mobile apps) will ask you for a target device or emulator, here you can select the device and it will be installed, there will be no entry in add/remove programs on the device unless you install it via an installation CAB. You must create an "Smart Device Cab Project" and configure it for your solution.

Access iphone photos and videos from cygwin or powershell

I would like to write a cygwin application that interacts with an iPhone that is connected to a windows 10 computer via the usb port.
The iphone shows up in windows as a device, not as a drive.
I have tried to compile and run the libmtp cygwin library but none of the sample applications seem to be able to access a connected iphone.
How can an application access a connected iPhone and read the photos and videos stored on it?

Get list of installed applications on connected iPhone

I have a mac application that needs to get the list of installed applications on the connected iPhone. How can it be done? Or can it be done at all? Private api is also fine

How to copy a file from USB drive to my local chrome web app folder in chrome device using api

I want to copy a file from usb device, in my local installed chrome web application.
1. I tried using api under chrome.usb.
2. i am able to list, connect and open the device.
but how to transfer a file?
Thanks in advance!

How to deploy AIR files to Samsung TV with SmartTV

We managed to get hold of a new Samsung TV that support AIR. I followed the few example files out there that show how to setup an AIR for TV file in Flashbuilder and my packaged export is an .airi file. So far so good.
The problem I'm having though is how to deploy this file to the TV. I tried copying it to a usb key but can't find a menu item to import it. Even when logged in with a developer account into smartTV.
Also tried to deploy via apache webserver as you do with html widgets, but no success.
Does anyone know how to deploy AIR files to a Samsung TV?
Thank you
I figured out that you have to do following steps in order to get your AIR app running:
Create your AIR project with air version 2.6
Compile and pack your AIR applications as an .airi file
Unzip the .airi file
Add a config.xml with your desired configuration to the unzipped folders
Make sure the config.xml has these settings
<flashplayer>y</flashplayer>
<apptype>13</apptype>
Zip up the files again and deploy via
local server as documented in the
Samsung documentation
Have a look at this Samsung TV hello world blog entry (I haven't tried it yet). The instructions are related to a standard web app, but it may also work with your AIR app.
In case this blog dissappears, the key Samsung document he references is here.
You may also find the details you need on this video.