| No./Category | Question/Answer | Back To Top |
| 1 | What is AbaConnect ? | |
| GENERAL |
|
|
| No./Category | Question/Answer | Back To Top |
| 2 | Where can I find information about AbaConnect ? | |
| GENERAL |
Information about AbaConnect is also available on the ABACUS Homepage (www.abacus.ch) under Downloads - Documentation - AbaConnect (http://www.abacus.ch/de/downloads-page/dokumentationen) (contains the general documentation for the AbaConnect Interfaces and Batch File/Command Line) and Downloads - Drivers/Tools - AbaConnect (http://www.abacus.ch/de/downloads-page/treiber-tools) (for developers : contains the AbaConnect WSDL's, documentation, and examples in .NET und Java - available after registration by Email) WebService examples are available in .NET and Java for ADRE, FIBU, DEBI, KRED, LOHN und PROJ. |
|
| No./Category | Question/Answer | Back To Top |
| 3 | Is there any licence required to use AbaConnect interfaces ? | |
| GENERAL |
|
|
| No./Category | Question/Answer | Back To Top |
| 4 | What licence is necessary to use Dossiers via the AbaConnect interfaces ? | |
| GENERAL |
To use the AbaConnect Dossier interfaces it is necessary to have the Achivierung Application installed. The Mandant must be enabled for the Archivierung in AbaTools-Mandant-Freigeben and the ABACUS User must be an "Archivierungs-User". If the Dossier interface is part of an application interface then it is also necessary to have the licence option necessary for that specific application interface. |
|
| No./Category | Question/Answer | Back To Top |
| 5 | What is the difference between AbaConnect ASCII and XML interfaces ? | |
| ABACONNECT XML |
|
|
| No./Category | Question/Answer | Back To Top |
| 6 | What is the difference between AbaConnect Flat and Hierarchy interfaces ? | |
| ABACONNECT XML |
|
|
| No./Category | Question/Answer | Back To Top |
| 7 | Does an AbaConnect Import XML File have to contain all the XML Element fields in the Default Mapping ? | |
| ABACONNECT XML |
|
|
| No./Category | Question/Answer | Back To Top |
| 8 | What is the correct way to edit or save an XML file to retain the encoding in UTF-8 ? | |
| ABACONNECT XML |
A simple test to check most XML encoding problems is to open the XML file in the Internet Explorer. Encoding errors will normally be shown with an error message. Make sure to scroll to the end of the XML file in the Internet Browser when looking for errors. If the XML file is written via a program, the program must use the defined encoding to write the XML file. |
|
| No./Category | Question/Answer | Back To Top |
| 9 | What are special characters and how can they be represented in XML using UTF-8 encoding ? | |
| ABACONNECT XML |
Alternatively, special characters can be represented with a decimal code (&#<decimal-nummer>;) that is compatible with UTF-8. For Example :
|
|
| No./Category | Question/Answer | Back To Top |
| 10 | How can I detect error responses during AbaConnect Command Line exports and imports ? | |
| COMMAND LINE |
1. Normal messages that are logged in the AbaConnect response file. 2. Exception messages that interrupt the running process before it can be fully completed. In the 1st case the error messages can be analysed in the repsonse file. The response file has the same format as the response file generated using the ABACUS Menu Prog 625. The 2nd case is usually caused by bad command line arguements (e.g. Username and Password are incorrectly defined or AbaConnect interface ID, etc.). This may cause the command line process to end before a reponse file can be written. Hint : It is recommended to always write a response file for AbaConnect command line (with "-responseYES") and after the execution, check if the response file was generated. e.g. rem Delete any existing files before running the AbaConnect command line if NOT EXIST "x:\test_export.xml" del /Q "x:\test_export.xml" if NOT EXIST "x:\test_response.xml" del /Q "x:\test_response.xml" abaconnectexportconsole.exe "/USRAdministrator" "/PWeli" "-M7777" "-aADRE" "-P625" "-datamodeXML" "-version2007.10" "-acidContacts" "-mapidAbaDefault" "-responseYES" "-responsefilex:\test_response.xml" "-exportfilex:\test_export.xml" if NOT EXIST "x:\test_export.xml" echo **** UNSUCCESSFUL : No export file found ! **** if NOT EXIST "x:\test_response.xml" echo **** UNSUCCESSFUL : No response file found ! **** |
|
| No./Category | Question/Answer | Back To Top |
| 11 | Where can I find the required parameters to export an AbaConnect interface via command line ? | |
| COMMAND LINE |
|
|
| No./Category | Question/Answer | Back To Top |
| 12 | How can I tell if an AbaConnect interface is accessible via WebServices ? | |
| WEB SERVICES |
Downloads - Treiber/Tools - AbaConnect (http://www.abacus.ch/de/downloads-page/treiber-tools) This page contains the WSDL's for the released AbaConnect WebServices. Many of the XML AbaConnect interfaces are also available as WebService, but if the WSDL for the interface is not listed on the Homepage, then the interface cannot be used via WebServices. |
|
| No./Category | Question/Answer | Back To Top |
| 13 | How can I test if an ABACUS installation supports AbaConnect WebServices ? | |
| WEB SERVICES |
http://localhost:40000 - this should display the ULC start page http://localhost:40000/abaconnect/services - this should display a message from AbaConnect (e.g. Please enable REST support in WEB-INF/conf/axis2.xml and WEB-INF/web.xml) The same tests can also be extended to test over a network by replacing "localhost" with the ABACUS Server computer name. e.g. http://<Server-Computer-Name>:40000/abaconnect/services If an connection error message (for the URL http://<Server-Computer-Name>:40000/abaconnect/services) is displayed in the Internet Browser Not found (404) The requested resource can not be found. then the AbaConnect WebServices are not available. Note : The message "Please enable REST support in WEB-INF/conf/axis2.xml and WEB-INF/web.xml" indicates that the WebService connection is available, but the AbaConnect WebService WSDLs are not available via the URL. AbaConnect WSDLs are available from the ABACUS Homepage. Hint : The AbaConnect WebService Examples available on the ABACUS Homepage can also be used to test AbaConnect WebService connections. Generally, the Microsoft .NET AbaConnect examples include the compiled executable file in the example ZIP file. Provided the Microsoft .NET Framework 3.5 is installed on a computer, these example executable files can be unpacked and run without the need to compile the supplied source code. The Java examples can also be used, but need to be compiled before the program can be executed. The Apache Axis2 V1.1.1 libraries and a JAVA JDK installion is required to compile the AbaConnect JAVA examples. More information about this is contained in the examples. |
|
| No./Category | Question/Answer | Back To Top |
| 14 | How can Apache TCPMon be configured the view and save the SOAP messages ? | |
| WEB SERVICES |
AbaConnect_TCPMon_de.pdf (http://www.abacus.ch/fileadmin/zipfiles/abaconnect/documents/AbaConnect_TCPMon_de.pdf) |
|