Debugging HTTP action

Hello,
is there any way to debug the HTTP action?
Since Snapshot 1614 I get a SSL hanshake failure, and I have no clue whats wrong.

Regards,
Oliver

Hi Oliver
It would be useful if we could take a look at your configuration. Perhaps post the rule with the HTTP action which is causing the issue. If I am understanding correctly, you had an action that was working and you upgraded to a newer snapshot and now is broken?

Hi Andrew,
you are right. After upgrading to 1614 I’m getting a ssl handshake failure. If I switch back to 1607 it works again:

rule "Volume Vuduo1 getcurrent"
	when
		Time cron "0/30 * * * * ?" 
	then
		createTimer(now, [ |
			if(VU_Bed_Ping.state==ON){
				var response = sendHttpGetRequest("https://user:password@host.domain.de/web/getcurrent")
				VU_Bed_Sendung.postUpdate(transform("REGEX",".*?<e2eventname>(.*?)</e2eventname>.*",response))
				VU_Bed_Kanal.postUpdate(transform("REGEX",".*?<e2servicename>(.*?)</e2servicename>.*",response))
			}
		])
end

Thanks,
Oliver