Domino export xPage's (java area, libs, xPages actually) in to DXL as base64 with some pre header. This does not allow to change DXL and import it back. More of then, extracting real base64 become hard task because there is no any information about that "pre-header" in DXL.
I found similar question on the stackoverflow: http://stackoverflow.com/questions/9929325/encoding-scheme-for-ssjs-library-when-exported-via-dxl
Showing posts with label DXL. Show all posts
Showing posts with label DXL. Show all posts
Tuesday, September 25, 2012
Sunday, September 23, 2012
Export Design DXL
Export design DXL feature has been added to the DominoJavaSyncer:
https://github.com/andriykuba/DominoJavaSyncer/wiki/Export-design-DXL
https://github.com/andriykuba/DominoJavaSyncer/wiki/Export-design-DXL
Friday, February 24, 2012
Export and Import Domino Java libraries
I describe how to export Domino Java Libraries in to Eclipse Projects. Current post will show how to do backward operation - import Eclipse project in to Domino library. Within both way you will be able to import\export Domino java libraries in to Eclipse project.
The main reason to do it is to use Control Version on class level but java library level. This application will be very useful if you do many code in the Domino Java libraries and works in team.
Documentation
Feel free to use it
The main reason to do it is to use Control Version on class level but java library level. This application will be very useful if you do many code in the Domino Java libraries and works in team.
Documentation
Feel free to use it
Wednesday, February 8, 2012
Tuesday, February 7, 2012
How To: export Domino Java Libraries in to Eclipse Projects
Based on my previous blog post I create utility for exporting Domino Java Libraries in to Eclipse projects. It is a simple java program with command line interface
Friday, February 3, 2012
How To: extract attachment from DXL (XML) in to the file in Java
I will show how to extract some raw data from DXL in to the file.
We need two things:
1. Code for extracting DXL
2. Some Utility to decode Base64
".jar" files from the Java Libraries will be extracted in our example
We need two things:
1. Code for extracting DXL
2. Some Utility to decode Base64
".jar" files from the Java Libraries will be extracted in our example
Thursday, February 2, 2012
How To: extract some text nodes from DXL in to files
One more post about processing DXL.
I will show how to extract text nodes from the Database DXL. We will use previous code How To: export DXL in Java and How To: parse DXL in Java
Let's extract Java Libraries from our datbase DXL, like it does Source Control Enablement for Designer
I will show how to extract text nodes from the Database DXL. We will use previous code How To: export DXL in Java and How To: parse DXL in Java
Let's extract Java Libraries from our datbase DXL, like it does Source Control Enablement for Designer
How To: parse DXL in Java
How to export database in to DXL I described in How To: export DXL in Java
To do something with resulting DXL we need to find a way to easy get anything we want from the DXL. I will show how to do it with DOM parser. This is easy as always.
To do something with resulting DXL we need to find a way to easy get anything we want from the DXL. I will show how to do it with DOM parser. This is easy as always.
Tuesday, January 31, 2012
How To: export DXL in Java
We will do few simple steps to allow DXL exporting like this
Let's create simple class for description of database location. We will use it as light database representation
Exporter class itself
Class for run a simple example
Do not forget
You need add to the java class path also few libraries to allow DCL exporter to work:
Good old
Lotus\Notes\jvm\lib\ext\Notes.jar
And
Lotus\Notes\jvm\lib\tools.jar
Lotus\Notes\jvm\lib\ext\websvc.jar
Let's create simple class for description of database location. We will use it as light database representation
Exporter class itself
Class for run a simple example
Do not forget
You need add to the java class path also few libraries to allow DCL exporter to work:
Good old
Lotus\Notes\jvm\lib\ext\Notes.jar
And
Lotus\Notes\jvm\lib\tools.jar
Lotus\Notes\jvm\lib\ext\websvc.jar
Subscribe to:
Posts (Atom)

