Call web service from Java

import java.net.*; import java.io.*; public class EDCJavaWSInterface {     public static double GetTicketBalance(String aimsServer, String ticketId) throws IOException     {         // initialize the connection …

Call Java from PLSQL

1). Create a Java class public class EDCTest1 {    public static String getsometext() {       return "this is test text";    } } 2). Load the class …