Hi Mr. x.
I did understand it totaly wrong.
I did a long time nothing with a webservice and was mixing up 2 things .
I did not know if it could, but thought why not, therefore I made as example
2 "hello world" webservices and one normal window form, 3 projects in one
project.
The asmx.vb code was.
First Webservice Service1
\\\
<WebMethod()> _
Public Function HelloWorld() As String
Return "First Service"
End Function
///
Second Webservice Service2
\\\
<WebMethod()> _
Public Function HelloWorld() As String
Dim me1 As New localhost.Service1
Return me1.HelloWorld
End Function
///
Window Form
\\\
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim me2 As New localhost.Service2
Me.Label1.Text = me2.HelloWorld()
End Sub
///
On my window form was when I did push the button,
and there was "First Service" on my screen.
I hope this answers your question?
Cor