Database
dotnetws.txt
Associated article: Consuming .NET Web Services in Oracle JDeveloper
Tags: Database Web Development .NET JVM Languages Design
Published source code accompanying the article by Max Fomitchev in which he uses Oracle JDeveloper 10.1.2 to examine the problems you must overcome when consuming ATL/.NET Web services in Java clients that rely on Apache SOAP. Also see DOTNETWS.ZIP.
Consuming .NET Web Services in Oracle JDeveloper
by Max I. Fomitchev
Listing One
private Response InvokeCall(String methodName, Vector params)
throws Exception
{
try
{
Call call = InitializeCall(methodName, params);
// Invoke call
Response response = call.invoke(m_endpointURL,"#" + call.getMethodName());
// ...


