Questions tagged [afp]

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

Advanced Function Printing is a format developed by IBM which is used for describing data which should be printed. Today it is mostly used in output-management for printing large scale documents.

Apple Filing Protocol is a network protocol developed by Apple which is used in Mac OS X and classic Mac OS.

66 questions
1
vote
0 answers

Netatalk Login problems with Active Directory

I have a problem with Netatalk and Active Directory. I can't login with an active directory user. Ive got already samba with ad connection working and i gets with wbinfo -u and wbinfo -g all data from AD. Getent passwd shows me all users but i dont…
strader
  • 113
  • 4
1
vote
0 answers

How to print .afp file in eclipse to a printer?

I had worked on converting file format to .afb file using FOP service. (Code smaple below) import java.io.BufferedOutputStream; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import…
Abhi jaZz
  • 11
  • 3
1
vote
1 answer

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 { RandomAccessFile raf = new…
Mark Marsh
  • 11
  • 1
1
vote
2 answers

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 in the file. How does one do this?
1
vote
2 answers

Script to detect if NAS is connected and if so mount Shares

I'm trying to find a way of mounting Shares (afp) on my NAS automatically. I use logins on it to control which shares are accessible by the computer (for privacy and other reasons). When switching logins not all of the shares get re-mounted which…
Tom
  • 9,725
  • 3
  • 31
  • 48
1
vote
1 answer

GIT fatal: unable to write new index file

My Company (Web Development) has decided to use Git. All repositories: employee (local repo) and remote repositories (bare repo) are stored on the central development server (OS X 10.9.1, Mac mini middle 2011). Developer connect to the development…
Pavel
  • 11
  • 1
  • 3
1
vote
1 answer

Examples using the AFP renderer in Apache FOP?

Does anybody know if there are some example xsl-fo files out there on the net which show how to use the tags that the AFP output engine adds to Apache FOP? This page http://afp-renderer.sourceforge.net/afp-extensions.html does a good enough job of…
Roboprog
  • 3,054
  • 2
  • 28
  • 27
1
vote
1 answer

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 an old Carbon header file "afpDatastream.h". This…
Shaun
  • 311
  • 2
  • 7
1
vote
1 answer

Decoding font with a given codepage

If given a set of text "abcdefg-foo" that is encoded with codepage "xzc" is it possible in python to decode those characters with the codepage? More specifically, we have a known AFP codepage T1V10500. The font we extract is being extracted from an…
jrlmx2
  • 1,967
  • 2
  • 11
  • 9
1
vote
2 answers

Apply color band to TIFF in the PDF

• Background : We are developing AFP to PDF tool. It involves conversion of AFP (Advanced Function Processing) file to PDF. • Detailed Problem statement : We have AFP file with embedded TIFF Image. The image object is described in Function Set 45,…
UmeshPathak
  • 145
  • 1
  • 2
  • 13
0
votes
0 answers

How do i merge 2 AFP's created from Apache FOP

How do i merge large number of separate AFP files created using apache FOP into a single AFP file? Any suggestions for tools is also welcome.
Pooja
  • 45
  • 5
0
votes
1 answer

open .afp file with VB.net

I have an .afp file, I need to open it using VB.net code. I don't want to convert it to PDF. Afp viewer like papyrus, AFP Viewer is installed on the system but I am not able to open the file using code. It would be great help if any opensource …
0
votes
1 answer

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 keep my server's AFP share mounted at all times. The…
Ian Young
  • 1
  • 1
0
votes
1 answer

How to print conditional fields in PPFA code

How do I print a conditional field using PPFA code. When a value is an 'X' then I'd like to print it. However, if the 'X' is not present then I'd like to print an image. Here is my code: LAYOUT C'mylayout' BODY POSITION .25 in ABSOLUTE .25 in …
Luke101
  • 63,072
  • 85
  • 231
  • 359
0
votes
2 answers

C# Is there is any way to read .AFP file and extract the TLEs?

I need to read a AFP file and extract it's TLEs such as account number, client full name... The AFP file is well formated and have a very clear structure. I prefer not to add any external library.