I'm looking for suggestions for ways to share Android app data between phones running the same app. For example, lets say I have an app that stores a database of book reviews. If person A has a book review that person B doesn't have, what are the options for getting that information from person A's phone to person B's phone?
Currently, ...
Suppose I have a WCF service which I need to host on a server in a country which blocks access to many sites.
So if I host my WCF for testing purposes on a server that is not in such a country, it works perfectly — but whenever I try to deploy it to any server in this country I can’t access it.
Are there any workarounds for that?
...
Suppose I have a WCF service which I need to host on a server in a country which blocks access to many sites.
So if I host my WCF for testing purpose on a server that is not in such a country, it works perfectly — but whenever I try to deploy it to any server in this country I can’t access it.
Is there any workaround for that?
...
Is there a reliable web service that contains current and historical stock and mutual fund data that I can call to download this data to my application? Mostly using the United States stock exchanges but might include some of the bigger international stock markets as well.
...
how can i set my WCF service to use proxy on server side ?
is there is any way for that ?
...
I'm currently using Pubnub, but i'll probably exceed the free quota. Is there any free js push service with a high quota?
The app i'm developing is for a not-for-profit crowdbased service dedicated to monitor candidates' abuses in the brazilian political campaign this year.
(Sorry if i'm not making any sense, i'm very sleepy and caffein...
Hey folks,
I really like your site and I think this is the place where I find answers to my questions!
I am planning an app, which shall do a couple of things but since I'm kind of lost in all the information conserning Android I really need some advice what I have to look out for and which of my goals might turn out tricky.
I want to do...
Following up to my old question here:
http://stackoverflow.com/questions/3125248/vb-net-secure-passwords-to-database
Where would a person start who wants to make a web service to allow a public desktop application to submit bug/crash data to a MS SQL Database without containing the database information. I created an app a while ago and...
Hi all,
I'm writing a .NET(3.5) web service for an IPhone native app in which I need to manage users' sessions.
Question is - can I just add the [WebMethod (EnableSession = true)] attribute to my web services, and the native app (which I'm not the one who's writing and hence the ignorance) would be able to use, or should I write an impl...
Here's my problem:
I am creating a Blackberry application that access's my data via a web service.
The web service is using entity framework which was created for my web application.
I use the SUN wireless toolkit stub generator to create the code and classes to access the web service from the Blackberry application. The stub generator...
I am trying to create a quick sample Java client for a SOAP web service we have built with ASP.net.
The web service message schema makes use of many abstract classes with implementations of those, e.g. DeviceIdentifier (abstract), with SerialNumber and ProductNumber (these are hypothetical examples to illustrate the question)
I used w...
I have two webapps: a web-service client and a server (both CXF-based, using the Simple Front-End approach).
This is the server definition:
<simple:server id="server" bindingId="http://schemas.xmlsoap.org/soap/"
address="/thingy" transportId="http://schemas.xmlsoap.org/soap/"
serviceName="cs:thingyService"
serviceClass="com...
Hi, lately one person in my company suggested a different approach to web API. Since we deal with a lot of transactional processes (product sales, devices provisioning, account reconfiguration, billing, ...), the idea was to switching from "one action per request", to "process per request". For example instead of sending: (trivial mockup...
Hello guys,
I have a major problem. We have a asp.net application that has this report that shows about 1000 rows as of right now and can grow up potentially up to 20,000. Dont ask me why, but out client does not like paging and does not like filtering, they like to see everything on a single page. Our obvious problem is the load its pu...
I am aware that there is already some threads within the Q&A about this although nothing specific to my needs. I am trying to pass a SOAP header username and password yet can't find a way to achieve this. I have imported and am using the Flex SDK within Flash which supports WS but cant seem to implement the headers correctly. I am now co...
Hello All,
I'm gonna split this question into 'Situation' , 'Task' , 'Confusion' & 'Question' to make it easier to answer it. So, here it goes --
Situation : I'm an intern, who has to develop web service kind of thing at my company. It is important because here is where I start my journey and I am hungry to learn.
Task : My assignment...
Hi all,
I have a some classes which I need to serialize in two different ways: first- "basic" fields, and the second- some other fields.
e.g. a User class which I sometimes need to serialize just the "first name" and "last name" fields, and sometimes I need to serialize the "id" and "email"
fields as well.
The best way I found to do thi...
In my ASP.NET app, I noticed that the results of any web service calls are cached. I don't want any results to be cached, how can I stop the browser from caching the results?
Update:
Here's the proxy code generated by calling the web service URL appending '/js', e.g. /mywebservice.asmx/js
var MyWebService=function() {
MyWebService.ini...
I am using C# to write a program that uses a web service from http://msrmaps.com, the problem is sometimes (seemingly at random) the site won't work properly and will return a few different exceptions. Then on subsequent attempts to use the service I get the error over and over, then after a while (sometimes 30 minutes) the service star...
Hi there, I am looking for a way to easily generate SOAP requests from a wsdl file. for example, something like this:
WSDLObject myWsdl = new WSDLObject("http://www.whatever.com/myService?wsdl");
SOAPRequest myRequest = myWsdl.generateSOAPRequest();
Is there anything like that?
I am trying to do it dynamically via another applicatio...