Details to Submit in a Request for Technical Support Using the Online Form
Problem
What details should I add to my request for technical support on the online form in the product website?
Solution
When completing a request for Technical Support using the online form, include as many details as possible about your problem. For problems where a simple explanation may not be enough for the Technical Support team to reproduce or address the issue (such as server connection errors, unexpected delays while editing a document, an application crash, etc.), you should generate a log file and attach it to the problem report. In the case of a crash, you should also attach the crash report file generated by your operating system.
If the text content of an XML document you want to send to the support team contains sensitive or private information, you can use the Randomize XML text content action to create filler content. Before using this action, you need to copy the initial XML resources and save them in a separate folder. Otherwise, you might lose your original information.
To generate an Oxygen XML Developer plugin log file, follow these steps:
- Create a text file called
log4j.properties
in thelib
folder of the installed plugin folder, with the following content:log4j.rootCategory= debug, R2 log4j.appender.R2=org.apache.log4j.RollingFileAppender log4j.appender.R2.File=${user.home}/Desktop/oxygenLog/oxygen.log log4j.appender.R2.MaxFileSize=12000KB log4j.appender.R2.MaxBackupIndex=20 log4j.appender.R2.layout=org.apache.log4j.PatternLayout log4j.appender.R2.layout.ConversionPattern=%r %p [ %t ] %c - %m%n
- Restart the application.
- Reproduce the error.
- Close the application.
- Delete the
log4j.properties
file because it might cause performance issues if you leave it in thelib
folder.Important
The logging mode may severely decrease the performance of the application. Therefore, please do not forget to delete thelog4j.properties
file when you are done with the procedure.
The resulting log file is named oxygen#.log
(for example,
oxygen.log
, oxygen.log.1
,
oxygen.log.2
, etc.) and is located in the
Desktop\oxygenLog
folder.