Hi All
I am trying to use REST Web Service in forms without using Wallet/DB.
I have written JAVA code as per the example Calling a Web service from Oracle Forms 11g and it's working in JDeveloper.
I have exported all the required libraries as well into Oracle forms as JAR .But i am getting ORA-105100 error (Unable to Call Java) when I try to call the code from PL/SQL Button Trigger
I have also imported java.lang.Exception and java.lang.String ( as suggested in Getting ORA-105100 when executing EXCEPTION_.toString() )
As per the Example by Oracle, Calling a Web service from Oracle Forms 11g , there is a sinppet to set Host, Port and Proxy.
static
{
System.setProperty("http.proxyHost", "<your proxy>");
System.setProperty("http.proxyPort", "<port>");
System.setProperty("http.nonProxyHosts","localhost|<your machine name>");
}
But my company does not use Proxy to connect to Internet.
So I have not added that piece.Could it be because of that.
Please help me.
Regards
Nirmala