Questions tagged as 'web-service'

2
answers

How to decrease the response time of an unsuccessful connection when using Ksoap2?

When the server or service (IIS) is off , the web-service response time that there is some connection failure is too long. At that time the application (Android) requests the closure due to inactivity. Can you reduce this time or otherwise trea...
asked by 02.10.2014 / 14:25
1
answer

Is there a design pattern for iOS to consume data from a web-service?

I'm looking for a design pattern that will help standardize the construction of an iOS app that consumes data coming from a web service. Could you tell if there is the name of this development model?     
asked by 19.09.2014 / 21:51
1
answer

How do I know if the app's Web Service is down?

Scenario: The app consumes data from a web service, so that the app is not "locked" I added the task of downloading the data in a secondary trhead, according to the following code: dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORI...
asked by 02.11.2014 / 13:51
1
answer

Making web service calls separately

I need to finish an application that I'm doing in Android, in the login step I'm doing, and for that, I have two webservices to do it, one is the Identifier and the second is LoginSamba. I would like to make it explicit that: You will onl...
asked by 12.09.2014 / 19:39
1
answer

Problems sending data from a ListView to another Activity

QuestionAdapter public class QuestionAdapter extends BaseAdapter implements OnClickListener { private List<Pergunta> lista; private Context context; public PerguntaAdapter(Context context, List<Pergunta> lista){ this.context...
asked by 16.09.2014 / 22:32
1
answer

parsererror error while executing a crossDomain AJAX request

I've created this page to test a cross domain request with AJAX : <html> <head> <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script></head><body><scripttype="...
asked by 16.09.2014 / 14:15
1
answer

Error publishing my WebService

When I run my WebService and publish in IIS (7) the following error occurs: Could not find a base address that matches scheme http for the endpoint with binding WebHttpBinding. Registered base address schemes are [https]. What can it be?...
asked by 22.05.2014 / 21:07
1
answer

TimeOut HttpWebRequest Second time

public static bool Sinc(int v, out List<Ma> x) { try { XmlDocument urlData = new XmlDocument(); HttpWebRequest rq = (HttpWebRequest)WebRequest.Create("http://192.168.1.155/Se...
asked by 19.05.2014 / 14:29
1
answer

Error trying to consume a Web Service Axis

When I try to consume the functionality of a web service, the following exception occurs: org.apache.axis2.AxisFault: Stream write error at org.apache.axis2.util.Utils.getInboundFaultFromMessageContext(Utils.java:531) at org.apache.axis2.descr...
asked by 27.02.2014 / 03:21
2
answers

How to change the URL consuming a Webservice?

I have a Webservice written in C # and the client application (data collectors). Collectors consume Webservice to query information in the main DB. In each client I install my WebService (Data Server) has a different IP. How can I paramete...
asked by 01.02.2014 / 13:37