Hi Stephan
On 2012.08.18 21:18, Stephan Steiner wrote:
mel, craig
I've gone ahead and recreated all my libs using the shared file approach,
than made sure I compile my MA project with those. Now I can step into the
lib, but something is still very wrong - the debugger ends on the wrong line
(step into method from a class belonging to my GUI project into a class from
a lib project and the "current line" marker is one line above the method
header...
This happens to me too... Simple off by one error. Although I must admit
I do not debug
extensively on mobile platforms.
plus, I'm doing all my calls asynchronously any in my asynch
callback calling the End method of the webservice call, I get that call
underlined in red and mouseover tells me "Unknown member".
Then I get the same unhandled exception thrown as before. And then I get my
standard catch handler that tells me the remote endpoint is not listening
(which is to be expected because I purposefully gave it a non working
address).
Any other ideas? It's still voodoo to me.
I can understand You.
We have on most of our projects another desktop project with linked
files and complementary
desktop unit-testing project and this covers a lot. I mean mobile is
just subset, so majority
of code is tested on desktop (no emulators).
We can argue about device capabilities that are not available on
"normal" pc, but code
like Yours could be tested on desktop too.
This is just a suggestion.
Here's the method I'm trying to call:
public OperationResult BeginLogin(string login, string password, string
sessionId, string clientVersion)
{
try
{
writeLog(string.Format("SmartAppMobileServerConnector -
BeginLogin - login: {0}, sessionId: {1}", login, sessionId), 2);
smartAppServer.BeginMobileLogin(login, password, sessionId,
clientVersion, new AsyncCallback(loginEnded), sessionId);
return new OperationResult { Code =
OperationResultCode.Success };
}
catch (Exception e)
{
return processErrorInBeginMethod(e);
}
}
private void loginEnded(IAsyncResult ar)
{
try
{
ClientInterface.LoginResult res =
smartAppServer.EndMobileLogin(ar);
if (res.Code == BooleanOperationResultCode.Success)
currentSessionId = ar.AsyncState as string;
ClientInterface.LoginResult fullResult = new LoginResult
{
AdditionalFrameworkUserNumbers =
res.AdditionalFrameworkUserNumbers,
Code = res.Code,
Devices = res.Devices,
Error = res.Error,
FeatureSet = res.FeatureSet,
SearchPlugins = res.SearchPlugins
};
writeLog(string.Format("SmartAppMobileServerConnector -
LoginCallback - LoginResult - Code: {0}, Error: {1}", res.Code, res.Error),
2);
OnLoginComplete(new LoginEventArgs { Result = fullResult });
}
catch (Exception e)
{
processErrorInEndMethod(e);
}
}
And here's the output
Unhandled Exception:
System.ServiceModel.EndpointNotFoundException: A system exception has
occurred.
Unhandled Exception:
System.ServiceModel.EndpointNotFoundException: A system exception has
occurred.
08-18 21:15:04.145 E/SmartAppMobile( 5087): Communication exception in : A
system exception has occurred.
For starters, there are two exceptions (makes no sense... BeginLogin is
called but once), and the exception is not unhandled - what more than
try/catch around all remote calls can I do?
To me this looks more like WCF problem and I hope You are aware that WCF
stack in mono is
not complete!
I would isolate this even more, maybe console app and test it under .net
and than mono (dekstop)
cheers
mel
--
Miljenko Cvjetko dipl.ing. ET
Direktor/CEO
Projektant rješenja/Solution Architect
Razvojni programer/Senior developer
Voditelj projekta/Project Manager
IX južna obala 13
Kajzerica Zagreb
T: 385 1 7775555
M: 385 91 557 447 3
F: 385 1 7779556
e: mcvje...@holisticware.net
w: http://www.holisticware.net
_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com
UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid