Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Problem with the Java API

Hello,

This days I'm trying to make a connection to our QlikView server through the Java API.

I have created an Netbeans project and added the QlikView.jar and the components as shown in the tutorial video.

When I try to open a document with the Session component the document wan't to open. The same is with the Desktop component.

The output from the execution of this peace of code:



private void jButton1MouseClicked(java.awt.event.MouseEvent evt) {
try {
qlikSession1.openDocument();
System.out.println("DocName: " + qlikSession1.getDocName() );
System.out.println("OpenStatus: " + qlikSession1.isOpen() );
} catch(Exception e) {
e.printStackTrace();
}
}


Is the following:

Connection succeeded

Com open

Login is [dmhyaXN0b3Y6c3RraXZ3b2o=]

DocName: BUSTICKET_ODBC.qvw

OpenStatus: false

As you can see. the status of the document is closed.
Any idea where might be the problem?

0 Replies