webMethods Microsoft Package 9.0 | webMethods Package for Microsoft .NET Documentation | webMethods Package for Microsoft .NET Client API Programmer’s Documentation | Invoking a Service using Visual Studio | Generating a C# Client Code in Visual Studio | Invoke the Service and Retrieve the Output (Generated Code)
 
Invoke the Service and Retrieve the Output (Generated Code)
The fifth and sixth stages are to invoke the service and retrieve the output:
// invoke the service
concatService.invoke( serverContext );

// extract the output
returnString = concatService.out_value;