Invoking a worklight adaptor from a stand alone java program
问题 I can invoke the worklight adaptor procedure in my machine by using the below URL. http://192.168.1.101:10080/AdaptorUI/dev/invoke?adapter=MySQLAdaptor&procedure=procedure1¶meters=[] Now, i want to invoke this from a java program. Code goes like this, try { URL myURL = new URL("http://192.168.1.101:10080/AdaptorUI /dev/invoke?adapter=MySQLAdaptor&procedure=procedure1¶meters=[]"); URLConnection myURLConnection = myURL.openConnection(); myURLConnection.connect(); } catch