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 …
import java.net.*; import java.io.*; public class EDCJavaWSInterface { public static double GetTicketBalance(String aimsServer, String ticketId) throws IOException { // initialize the connection …
String stringInt = "999999999"; int i = Integer.parseInt(stringInt); System.out.println("Integer: " + i);
–Converts an int to a string SELECT CONVERT ( varchar , intcolumn ) FROM TABLE
select dbms_java.longname(object_name), status, object_type from all_objects where object_name like ‘%javax%’ and object_type = ‘JAVA CLASS’;
public class myGetVersion { public static String getVersion() { return System.getProperty("java.version"); } }
1). Create a Java class public class EDCTest1 { public static String getsometext() { return "this is test text"; } } 2). Load the class …
http://www.oracle-base.com/articles/9i/ConsumingWebServices9i.php