0
class myremoteobject:MarshalByRefObject 
{
    public myremoteobject()
    {
        Console.WriteLine("hi there");
    }
}

class Program
{
    static void Main(string[] args)
    {
        HttpChannel chn = new HttpChannel(1234);
        ChannelServices.RegisterChannel(chn, false);
        RemotingConfiguration.RegisterWellKnownServiceType(typeof(myremoteobject), "abc", WellKnownObjectMode.Singleton);
        Console.WriteLine("server started.... press any key to stop");
        Console.ReadLine();
    }
}

私はこれらの単純なクラスを持っていますが、次のようなsoapsudツールを使用してメタデータを生成しようとしています:-soapsuds -ia:server -nowp -oa:metadata.dll

エラーが発生しています

エラー: スキーマ データが無効です。SOAP、RPC、およびエンコードされた要素とのバインディングがありません

4

1 に答える 1