I am working on an Xpage application. I made the following connection
var configDb:NotesDatabase = session.getDatabase("172.18.15.130", "Transport" , false);
it gives me error [TypeError] Exception occurred calling method NotesSession.getDatabase(string, string) null
But following is the connection that is working fine.
var configDb:NotesDatabase = session.getDatabase("172.18.15.130", "RD\\AOS\\Configurations" , false);
This is the strange behavior and I am not getting it. I have also used database.getServer() instead of this IP but it does not work. The weird thing is that the above code was working fine previously but now it is giving me error while connecting with transport application