• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Service Invocation

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
i am using Apache Axis1.4. I am using Dynamic Invocation technique for invoking web services.

But i am unable to invoke .Net Services using Dynamic Invocation. Like from following URL

http://localhost/WSPWebService/Service1.asmx?WSDL


can any one send invocation client for invoking service.


Thanks in Advance
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Now i am able to invoke the .Net Service. But i am getting NULL as response.

In Service i am just returning what ever i sent to the service.

This is my Invocation code

String _resp = (String) _call.invoke( new java.lang.Object[]{ "Test" });

and i tried as follows
String _resp = (String) _call.invoke( new java.lang.String[]{ "Test" });


But the result is same.


Can any one guide me on this.

Thanks in advance
reply
    Bookmark Topic Watch Topic
  • New Topic