M
mttc
When client call to remoting mathod it's no way to knoe the IP of
client?
the server look like:
interface MyInterface
function div(i as integer) as integer
end interface
Public Class KioskServer
Inherits MarshalByRefObject
Implements MyInterface
function div(i as integer) as integer
return i/2
end function
end class
client?
the server look like:
interface MyInterface
function div(i as integer) as integer
end interface
Public Class KioskServer
Inherits MarshalByRefObject
Implements MyInterface
function div(i as integer) as integer
return i/2
end function
end class