Hello,
Java Class in “script” library:
public URL( String strProxyProtocol, String strProxyName, int iProxyPort, String strURL )
My call from LotusScript:
Set jc = jsession.GetClass(“URL”)
Set jo = jc.CreateObject( “(Ljava/lang/String;Ljava/lang/String;I;Ljava/lang/String;)V”, “http”, “1.1.1.1”, 8080, “http://2.2.2.2/” )
Error:
Error 304: LS2J Error: Java constructor failed to execute
Any ideas? I’m able to pass one String parameter without problems but this combination of String and int does not work. I’ll probably try a workaround where I pass the int as string but it would be nice to get the int passing to work too.
Thanks,
Panu