B
Bert
Hi,
I'm implementing a web serivce using the .NET Full Framework (server),
which is consumed by a .NET Compact Framework application (client).
The full application does some method mapping (using a channel sink).. a
simple example:
incoming message:
(string) GetMyClass()
mapped message:
(MyClass) GetMyClass()
so a method with a different signature is invoked
return message:
Returnval = MyClassInstance
mapped return message:
Returnval = "a string containing a reference to MyClassInstance"
I tested the application using a .NET Full Framework client, everything
worked perfectly. Then I made a client for the .NET Compact framework.
Method calls who weren't mapped worked but others didn't. I got an
XmlException with message: "The identifier ref-3 does not appear in the
document.".
How can this be?
Is there a way to monitor the soap messages exchanged? I can not do this
with a network sniffer because I can only test locally (loopback).
I would greatly appriciate your help..
Bert.
I'm implementing a web serivce using the .NET Full Framework (server),
which is consumed by a .NET Compact Framework application (client).
The full application does some method mapping (using a channel sink).. a
simple example:
incoming message:
(string) GetMyClass()
mapped message:
(MyClass) GetMyClass()
so a method with a different signature is invoked
return message:
Returnval = MyClassInstance
mapped return message:
Returnval = "a string containing a reference to MyClassInstance"
I tested the application using a .NET Full Framework client, everything
worked perfectly. Then I made a client for the .NET Compact framework.
Method calls who weren't mapped worked but others didn't. I got an
XmlException with message: "The identifier ref-3 does not appear in the
document.".
How can this be?
Is there a way to monitor the soap messages exchanged? I can not do this
with a network sniffer because I can only test locally (loopback).
I would greatly appriciate your help..
Bert.