Tagged Questions
0
votes
0answers
60 views
Error while trying to add an WCF webservice reference to a Xamarin.Android project
I am currently developing an Android app using Xamarin.Android and created a webservice using WCF.
I have the webservice running on an IIS webserver and when I go the url it does work.
When I'm adding ...
0
votes
0answers
168 views
Web Service with https only certificate - 403 forbidden on Android
I'm trying to connect my android application via https to my webservice and I keep getting
System.Net.WebException: There was an error on processing web request: Status code 403(Forbidden): Forbidden
...
1
vote
0answers
96 views
Quality of OData in Mono for Android
I am looking to create some cross platform libraries. One of the most important things for me for my mobile platforms is to access web services. After doing quite a bit of reading, it seems that the ...
0
votes
1answer
187 views
Consume WCF websockets service by MonoDroid application
I try to consume WCF service with Mono For Android application. Service has one endpoint with binding to SOAP over websockets. And websockets is a problem: there are no implementation of websockets in ...
0
votes
0answers
115 views
How do I call a WCF service from RestSharp
Can someone post some sample code to access a WCF service from RestSharp. I am trying to get data into a MonoDroid application and RestSharp seemed pretty simple. However I cannot seem to find any ...
3
votes
1answer
347 views
WCF with Android (TCPBinding) and ServiceStack
I'm investigation different options to access remote data for an Android application(in the future WindowsEmbedded and possibly iOS with monotouch), so I've made some tests and I'm trying to ...
0
votes
1answer
139 views
Monodroid wcf request / response of 2 asynch requests got mixed [closed]
I've experimented a very strange problem with WCF on MonoDroid today...
In the service definition there are 2 pairs of request/response (out of several others).
...
0
votes
1answer
79 views
Upgrade of a multi-tier application to new technologies [closed]
around 10 years ago I developed a software for handhelds to be used in hospitals.
The handheld software communicates via wi-fi to my server software, than in turn connected to various data ...
0
votes
1answer
202 views
How to upload large file with WCF in MonoDroid
I'm trying to implement WCF into MonoDroid. I think there's no big difference between it and MonoTouch on this issue. And after researching, I counldn't find the supoort for anyother WCF binding mode ...
1
vote
0answers
147 views
WCF Generated Proxy Crashes Monodroid and Monotouch
I've generated a proxy client for my WCF RIA service class via slsvcutil.exe as described in the Xamarin "Introduction to Web Services" document, however when I try to make a call to one of the async ...
0
votes
0answers
224 views
Xamarin/Mono for Android - no way to set DataContractResolver?
I'm having a go at writing a WCF client in Mono for Android and need to configure it to use a custom DataContractResolver, but this doesn't seem to be possible. This is how I do it in a conventional ...
0
votes
0answers
104 views
get around monodroid todo set_SoapVersion
i develop monodroid with wcf application
but connection between wcf and monodroid always fail
this is wcf service code
public class Service1 : IService1
{
public string GetData(int value)
{
...
0
votes
1answer
534 views
monodroid wcf call
I'm having difficulties with accessing a WCF service. My service is
running in the same solution as the MonoDroid App and is hosted by visual
studio. I configured it as BasicHttp. The reference adds ...
0
votes
3answers
594 views
MessageSecurityException: Security processor was unable to find a security header in the message
What is the state of Mono for Android's secure WCF services? Is it up to SOAP 1.2 yet?
I am writing a POC for an Android app that will interact with WCF services, but am struggling to get the thing ...
3
votes
2answers
1k views
Mono for Android or Java and WCF
I am currently using Mono for Android to develop a mobile application. I have been trying to consume a WCF web service by adding a web reference to it but I can't seem to make the call that way. I am ...
5
votes
3answers
2k views
How to communicate over local network between C# desktop application and mobile (android) device?
I have a C# (.net 3.5) desktop application which prints out some numbers on the screen. Now I would like to extend this to a mobile device. (Android device in my case.) It has to display the same ...
0
votes
1answer
1k views
Error trying to use WCF in MonoDroid
I am creating a poof of concept Android App using MonoDroid for C#.
So far it is look pretty good. I have however hit a snag when using WCF.
The concept is simple, Create a WCF service with a single ...