Page 1 of 1

exchange connection

PostPosted: Fri Nov 15, 2013 8:47 pm
by Hans Nieuwenhuis
Hi,

I am having an issue with the it2be exchangews plugin.
It works fine with Servoy 5.2.15 , but it does not work with Servoy 7.3.0

Both installations ( 5.2 en 7.3 ) are on the same laptop with the same configuration and accessing the same exchange server.

It looks like somehow Servoy 7.3 is not loading the exchange ssl certificate as You can see in the log files.

Any ideas ??

Re: exchange connection

PostPosted: Sat Nov 16, 2013 11:51 am
by Hans Nieuwenhuis
I found the problem :

The problems described before occured in Servoy developer.
In Servoy server it worked fine.

In 5.2
=====
In 5.2 the plugin call to gConnection.privateKeystoreLocation = 'c:/keys/keystore2.jks' only did the job in Servoy developer.

In Servoy server I changed the file servoy_server to include : -Djavax.net.ssl.trustStore=C:\keys\keystore2.jks to make it work.
Or edit the wrapper.conf to include :
wrapper.java.additional.4=-Djavax.net.ssl.trustStore="C:\keys\keystore2.jks"

In 7.3
=====

In 7.3 the call does not work in developer either.
So I changed the developer.ini in the developer dir to include : -Djavax.net.ssl.trustStore=C:\keys\keystore2.jks
Now it also works in developer.

Regards,