Tagged Questions

AFP stands for "Advanced Function Printing" and "Apple Filing Protocol"

learn more… | top users | synonyms

3
votes
1answer
12k views

How to connect a Windows client to an OSX Server with AFP

We are using OSX servers and clients with AFP (Apple Filing Protocol) and want to connect the only Windows (Vista x64) client to the server shares without having to enable SMB. Is there still any AFP ...
1
vote
1answer
118 views

Reading\Writing Structured Binary File

i want to read\write a binary file which has the following structure: The file is composed by "RECORDS". Each "RECORD" has the following structure: I will use the first record as example ...
1
vote
2answers
86 views

Sorting Binary File Index Based

I have a binary file which can be seen as a concatenation of different sub-file: INPUT FILE: Hex Offset ID SortIndex 0000000 SubFile#1 3 0000AAA SubFile#2 1 0000BBB ...
1
vote
1answer
971 views

symbolic links work when shared to Windows or Linux (smb), but broken when shared to Mac (afp or smb)

On a Mac, I have a shared folder, ~\Documents. There are two subfolders, Data and Data_2011, the former containing folders of files from the last several years, and the latter containing symbolic ...
1
vote
0answers
115 views

How can I export a AFP or XSL-FO file from Jasperreport

I am using Jasperreport to generate a report, it supports pdf, word, xml, and etc. file format, but there is no afp format, if anyone have some better solution, please tell me, thank you every much.
1
vote
1answer
146 views

Can a file opened in java be locked across an afp mount?

I'm trying to get a file lock across a mount point via Java 6 on OSX: private void tryLockThroughShare() { String path = "/Volumes/Groups/mcm/javaTestInShare.txt"; try { ...
1
vote
1answer
437 views

File sharing discovery in Cocoa

I'm trying to programmatically discover and then mount network volumes shared using OS X's file sharing from a Cocoa app. I'm using NSNetServiceBrowser to discover which servers are advertising file ...
1
vote
1answer
507 views

Determine AFP share from a file URL

I writing an application to copy some files to a certain location. It allows the user to choose the destination, which is always on an AFP share. This is done with a NSOpenPanel. The URL that gets ...
1
vote
1answer
383 views

Working with AFP in Objective-C/Carbon

I'm working on an app that needs to transfer files to an AFP volume -- ideally, it wouldn't mount the volume on OSX, since it's really unnecessary. Looking over the AFP protocol stuff, I came across ...
1
vote
3answers
819 views

Add PDF to AFP Output

We're trying to take a PDF file created in a web application and dynamically insert it into an AFP datastream on an IBM iSeries. Does anyone know if this is possible?
1
vote
7answers
983 views

What is the best tool for manipulating AFP print streams?

The IBM print file format is AFP. Advanced Function Presentation (AFP) is a presentation architecture and family of associated printer software and hardware that provides for document and ...
0
votes
2answers
104 views

How do I concatenate two AFP files together

I have two AFP files and I want to concatenate them together, how can I accomplish this. I have written java code to concatenate them, using BufferedInputStream and BufferedOutputStream and the result ...
0
votes
0answers
115 views

Converting an afp: NSURL to a file system path

In my NSOpenPanel delegate method -panel:validateURL:error:, I am getting an afp: URL for a mounted volume - something like: afp://volumename._afpovertcp._tcl.local/Data. When I ask this URL for the ...
0
votes
1answer
246 views

Launchd script to auto-mount AFP share

I've been getting more and more into using launchd to automate everything on my home server, and I'd like to harness some of it's power on my client machines. I basically want to figure out how to ...
0
votes
2answers
333 views

Connect to remote afp server using PHP

I'm trying to make a php script to connect to an afp server and get a directory listing (with each file size). The server is local in our office, but I'm unable to just make a script on the afp ...
0
votes
1answer
324 views

AFP or SMB file links in a url

Is it possible to create a url in the form of afp://server/share/someDirectory/someFile.ext to when you open it on a mac in safari, or through mail, it navigates to that folder or file? I've played ...
0
votes
1answer
351 views

Retrieving Absolute URL from File on Mounted Volume in Cocoa

Is there any way of retrieving an absolute URL for a file on a mounted volume in Cocoa? For example, say afp://server/Documents is mounted at /Volumes/Documents. How can I get full URL to a file on ...
0
votes
1answer
97 views

Is there a clean cut way of adding NOP records to an AFP file using Java?

I have created an AFP file using embedded FOP Trunk. Since FOP Trunk does not support the no-operation tag directly under root I need to modify the created file to add a NOP record as the first record ...
0
votes
1answer
3k views

Access an AFP share from iPhone?

I wonder whether it's possible to connect to an AFP (Apple Filing Protocol) share from my iPhone. I have a share in my WiFi network and would like to browse and read files on that share from my ...
-2
votes
4answers
107 views

The fastest search algorithm into binary files? [closed]

I'm looking for the fastest and the best algorithm to search some values into a very huge binary file (kind of 2 GB AFP file), wich means that loading the whole data in memory must be inconceivable. ...