I have a project in which I am adding improvements but I have the following problem:
-
My WS is in a C # project and my desktop application in vb. which calls and consumes my ws.
-
I just created some new classes as an example "beAuditors" in my ws in the entity layer where I define parameters of the variables: properly encapsulated
public class beAyudantes { private String sCodigo = " "; private String sNombres = " "; private String sApellidos = " ";. . . public String Codigo { get { return this.sCodigo; } set { this.sCodigo = value; } }
Then I update the web reference in my desktop application (after compiling and executing the ws locally) but I can not call the class beAyudantes
tells me that class of my reference.vb
located in the reference web is not defined.
Dim oWS As New localhost.Service
Dim oBeAyud As New localhost.beAyudante (aquí sale el error no encuentra beAyudante)
Who can help me find out why I can not invoke the new class I created to be able to use it in my application.
I attach images