D
Desinderlase
I have created server side Remoting application in C#.
Remoting object interface in C# :
public interface IShareService
{
void setTestData(int data);
int getTestData();
}
Does anyone know how to create C++ client application that uses this
object?
Should I somehow include interface to cpp code or create new one?
I tried to create interface in cpp,
public __gc __interface IShareService
{
void setTestData(int data);
int getTestData();
};
but i got RemotingException : Cannot load type 'IShareInterface' ....
Any suggestions?
Remoting object interface in C# :
public interface IShareService
{
void setTestData(int data);
int getTestData();
}
Does anyone know how to create C++ client application that uses this
object?
Should I somehow include interface to cpp code or create new one?
I tried to create interface in cpp,
public __gc __interface IShareService
{
void setTestData(int data);
int getTestData();
};
but i got RemotingException : Cannot load type 'IShareInterface' ....
Any suggestions?