PDFreactor:
3.0.3311 (2008-07-07)
edit-on Pro:
5.2.221 (2008-06-23)
edit-on JavaBean SDK:
5.1.290 (2007-11-07)
TYPO3 Extension:
2.0.2 (2007-06-14)
2.7 Can PDFreactor access documents form servers that require POST-data or cookies?
To set cookies and post-data in your java program that uses PDFreactor you can use a URLConnection object:
URL url = new URL(...URL...);
To be able to receive cookies from a server and store them like a browser you can use the free (LGPL) Java library "HTTPClient" by Innovation GmbH. For more information see www.innovation.ch/java/HTTPClient/ . It can replace the built-in http client of Java and so allow Java programs to receive and store cookies without changing the code. You can get the file from www.innovation.ch/java/HTTPClient/HTTPClient.zip . To use it set these 2 Java parameters: -Djava.protocol.handler.pkgs=HTTPClient -Xbootclasspath/a:*PATH*/HTTPClient.zip (replace *PATH* with your path to HTTPClient.zip)