After the call, Webservicesit returns an object to the client (This object is a class of user objects). So, I want to convert from this object to a custom class.
-Webservices:
[WebMethod]
public Cls_ROLES GetRoles(int firstNum)
{
Cls_ROLES o = new Cls_ROLES();
o.Role_ID = 2;
o.RoleName = "binh";
return o;
}
-client:
+ Function:
public object CallWebService(string webServiceAsmxUrl, string serviceName, string methodName, object[] args)
{
System.Net.WebClient client = new System.Net.WebClient();
using (System.IO.Stream stream = client.OpenRead(webServiceAsmxUrl + "?wsdl"))
{
ServiceDescription description = ServiceDescription.Read(stream);
ServiceDescriptionImporter importer = new ServiceDescriptionImporter();
importer.ProtocolName = "Soap12";
importer.AddServiceDescription(description, null, null);
importer.CodeGenerationOptions = System.Xml.Serialization.CodeGenerationOptions.GenerateProperties;
CodeNamespace nmspace = new CodeNamespace();
CodeCompileUnit unit1 = new CodeCompileUnit();
unit1.Namespaces.Add(nmspace);
ServiceDescriptionImportWarnings warning = importer.Import(nmspace, unit1);
if (warning == 0)
{
CodeDomProvider provider1 = CodeDomProvider.CreateProvider("CSharp");
string[] assemblyReferences = new string[5] { "System.dll", "System.Web.Services.dll", "System.Web.dll", "System.Xml.dll", "System.Data.dll" };
CompilerParameters parms = new CompilerParameters(assemblyReferences);
CompilerResults results = provider1.CompileAssemblyFromDom(parms, unit1);
if (results.Errors.Count > 0)
{
StringBuilder sb = new StringBuilder();
foreach (CompilerError oops in results.Errors)
{
sb.AppendLine("========Compiler error============");
sb.AppendLine(oops.ErrorText);
}
throw new System.ApplicationException("Compile Error Occured calling webservice. " + sb.ToString());
}
Type foundType = null;
Type[] types = results.CompiledAssembly.GetTypes();
foreach (Type type in types)
{
if (type.BaseType == typeof(System.Web.Services.Protocols.SoapHttpClientProtocol))
{
Console.WriteLine(type.ToString());
foundType = type;
}
}
object wsvcClass = results.CompiledAssembly.CreateInstance(foundType.ToString());
MethodInfo mi = wsvcClass.GetType().GetMethod(methodName);
object o = new object();
o=mi.Invoke(wsvcClass, args);
return o;
}
else
{
return null;
}
}
}
+ Page_Load function:
Line 1:object[] args=new object[1];
Line 2:args[0]=1;
Line 3:o = this.CallWebService("http://localhost:1814/HelloServices/Service.asmx", "Hello", "GetRoles", args);
Line3 ( ) . , ( Cls_Role).
// ================================================ ======================================
// ================================================ ======================================
// ================================================ ======================================
Selalu_Ingin_Belajar, - .
yourObject = ();
foreach (PropertyInfo property in yourObject.GetType().GetProperties())
{
object value = property.GetValue(yourObject , null);
Console.WriteLine("{0} = {1}", property.Name, value);
}
, , : .
AddWebReference VisualStudio.
Reference.cs.It :
[System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="urn:ALBAPI", ResponseNamespace="urn:ALBAPI")]
[return: System.Xml.Serialization.SoapElementAttribute("info")]
public ResponseInfo getSetupLicenseRows(out SetupLicenseRowsValues values) {
object[] results = this.Invoke("getSetupLicenseRows", new object[0]);
values = ((SetupLicenseRowsValues)(results[1]));
return ((ResponseInfo)(results[0]));
}
, webClient, SetupLicenseRowsValues.
WebServices . .
:
public object CallWebService(string webServiceAsmxUrl, string serviceName, string methodName, object[] args)
{
System.Net.WebClient client = new System.Net.WebClient();
using (System.IO.Stream stream = client.OpenRead(webServiceAsmxUrl + "?wsdl"))
{
ServiceDescription description = ServiceDescription.Read(stream);
ServiceDescriptionImporter importer = new ServiceDescriptionImporter();
importer.ProtocolName = "Soap12";
importer.AddServiceDescription(description, null, null);
importer.CodeGenerationOptions = System.Xml.Serialization.CodeGenerationOptions.GenerateProperties;
CodeNamespace nmspace = new CodeNamespace();
CodeCompileUnit unit1 = new CodeCompileUnit();
unit1.Namespaces.Add(nmspace);
ServiceDescriptionImportWarnings warning = importer.Import(nmspace, unit1);
if (warning == 0)
{
CodeDomProvider provider1 = CodeDomProvider.CreateProvider("CSharp");
string[] assemblyReferences = new string[5] { "System.dll", "System.Web.Services.dll", "System.Web.dll", "System.Xml.dll", "System.Data.dll" };
CompilerParameters parms = new CompilerParameters(assemblyReferences);
CompilerResults results = provider1.CompileAssemblyFromDom(parms, unit1);
if (results.Errors.Count > 0)
{
StringBuilder sb = new StringBuilder();
foreach (CompilerError oops in results.Errors)
{
sb.AppendLine("========Compiler error============");
sb.AppendLine(oops.ErrorText);
}
throw new System.ApplicationException("Compile Error Occured calling webservice. " + sb.ToString());
}
Type foundType = null;
Type[] types = results.CompiledAssembly.GetTypes();
foreach (Type type in types)
{
if (type.BaseType == typeof(System.Web.Services.Protocols.SoapHttpClientProtocol))
{
Console.WriteLine(type.ToString());
foundType = type;
}
}
object wsvcClass = results.CompiledAssembly.CreateInstance(foundType.ToString());
MethodInfo mi = wsvcClass.GetType().GetMethod(methodName);
object o = new object();
Line error: o = mi.Invoke(wsvcClass, new object[0]);
return o;
}
else
{
return null;
}
}
}
public void call()
{
string WebserviceUrl = "http://192.168.2.19:3333/ALBAPI.wsdl";
string serviceName = "ALBAPI";
string methodName = "getSetupLicenseRows";
object[] args=new object[0];
object sSessionID = CallWebService(WebserviceUrl, serviceName, methodName,args);
foreach (PropertyInfo property in sSessionID.GetType().GetProperties())
{
object value = property.GetValue(sSessionID, null);
Console.WriteLine("{0} = {1}", property.Name, value);
}
}
" " .