Hello Gurus,
I Hope you can help me with this, I have build a Web Service in SAP, I have the WSDL file, I have set up in my proyect, I can see all the properties, but what is the sintax to ejecute the method of my web service to get the data.
I have already consume the Web Service SAP using SOAPUI and It Works Great, I have imported the WSDL file from SOAPUI.
using ZPERU_WS_TEST1.ZPERU_WS_TEST1;
using System.Net;
namespace AspDotNetClient
{
public partial class _Default : System.Web.UI.Page
{
ZPERU_WS_TEST1.ZPERU_WS_TEST1.ZPERU_WS_TEST1 _proxy;
ZPERU_WS_TEST1.ZPERU_WS_TEST1.ZPE_SCARR_QUERYResponse _proxy_response;
protected void Page_Load(object sender, EventArgs e)
{
//Creating the Service
_proxy = new ZPERU_WS_TEST1.ZPERU_WS_TEST1.ZPERU_WS_TEST1();
//stores the return row XML data from the SAP web service
...
Go to the complete details ...