Tagged Questions
0
votes
0answers
23 views
AsyncTask in BackGround for DataSnap connections?
I have a little problem to solve and I do not usually customary in Android?
The scenario is as follows:
1) I have a connection with the DataSnap Android.
2) I need to perform a task in background ...
1
vote
2answers
88 views
What is the difference between making an Async web service call and making a Synchronous web service call in another thread?
And/or, when to use either one?
Is it a matter of preference or is there a technical difference?
Bit of background on why I am asking:
I have an app running a .NET 2.0 CF app and the user is making ...
0
votes
1answer
41 views
Best way to make multiple asyn calls from a REST Service to external soap webservices
I have a WCF Service which inturn call 4 soap webservices (total response time for 4 services are more than a minute) for a single transaction and finally it will log the transaction status in the SQL ...
0
votes
0answers
23 views
Asynchronous Web Service invocation in Java
I've been trying to understand the nuances of asynchronous vs synchronous web service calls. I wish to find out if its possible to write a client which terminates after invoking the web service.
In ...
-1
votes
0answers
19 views
Load webservice data one by one
I am calling webservices from my app and there are many requests and it takes sometime to load. I need to load data one by one.That is I get response from one request and it is assigned to ...
0
votes
1answer
71 views
Asynchronous web service call in flex and java
How can i access to my Asynchronous web service in java? I made this thing in Flex Builder, and it`s pretty easy: just add web service throw "Data -> Connect to Web Service -> Enter the URL of wsdl" ...
0
votes
0answers
68 views
How to call web service asynchronously in asp.net web application from a page even after response.redirect()
I am developing a web application in ASP.Net web forms. I want to call a web service of GCM (Google Cloud for Messaging), which requires much time. I want to call the web service asynchronously and ...
0
votes
2answers
78 views
Calling Async WCF service at Application_Exit
I have the following code..
Private Sub Application_Exit(ByVal o As Object, ByVal e As EventArgs) Handles Me.Exit
If MainPage.ModeOfOperation = "PROPOSALMODIFICATION" Then
...
0
votes
0answers
51 views
most efficient way to wait for an event in a web service
Within my servicestack web service method, I have to access an API with the following features:
1) An asynchronous method which accepts a 'message'.
2) Event X, which fires when ANY 'message' has ...
1
vote
1answer
70 views
Boosting performance on async web calls
Backgound: I must call a web service call 1500 times which takes roughly 1.3 seconds to complete. (No control over this 3rd party API.) total Time = 1500 * 1.3 = 1950 seconds / 60 seconds = 32 minutes ...
1
vote
1answer
49 views
Why my following ajax is not working in Asynchronous mode
below is my code that I call on page load.
it works when I use
xmlhttp.open("GET", "../handlers/fetchshift.ashx?id=" + divs[i].id, false);
but if I use
xmlhttp.open("GET", ...
1
vote
2answers
163 views
Set Timeout Async Webservice Call?
My Webservice is inheriting from System.Web.Services.Protocols.SoapHttpClientProtocol.
I tried to set the Timeout:
service.Timeout = 5000; // 5 secs
but nothing happens - neither a ...
0
votes
1answer
82 views
Recommended patterns for server side web service asynchrony
I have successfully implemented both polling and callback client side asynchronous examples, but now I am interested in implementing a web service with server side asynchrony. The infrastructure is ...
0
votes
0answers
151 views
Async ASMX Web Service
I was given this code as a sample to get an Async Web Service working. I get two errors when trying to use this code... I am new to ASYNC Web Services and could really use some help / a working ...
0
votes
0answers
143 views
ASYNC Web Service Sample Code
Can anyone provide me with a SIMPLE to follow code sample for creating and calling an ASYNC Web Service from an ASP.Net / C# web application?
I am working on an issue and I believe my problem is I ...
2
votes
2answers
811 views
Multi-threaded async web service call in c# .net 3.5
I have 2 ASP.net 3.5 asmx web services, ws2 and ws3. They contain operations op21 and op31 respectively. op21 sleeps for 2 seconds and op31 sleeps for 3 seconds. I want to call both op21 and op31 from ...
0
votes
1answer
135 views
Cancelling async webservice call in windows phone
I'm developing a windows phone app that consumes a .Net Web Service (develop also by me). When I call the a Web Service method a do it asynchronously and don't block the UI. For example, here's a code ...
2
votes
4answers
124 views
How to do async work as part of web service?
I'm coding web service A and calling web service B.
Once I validate the input to A I want to return a success code and then invoke B.
Ways I'm considering:
Seeing if I can spawn a worker thread ...
1
vote
1answer
175 views
C# Async WebService
Can someone give me an example of how to use the method begin to display an alert to the User saying Loading ...
With the code below I place the query using the Completed event, use the method as ...
0
votes
0answers
49 views
how to check if actions originated by an object has errors
I'm working on prestashop, and implementing a webservice thinghy. I has a Huge collection of data, that I would like to insert in prestashop, using web service. I have tried to send chunks of data, ...
0
votes
2answers
49 views
Login with WebService running in background
I have a WebService that validates the user. But until you receive the validation Windows accuses the program not responding. I've tried with threads, async and have not had success. While he connects ...
2
votes
1answer
149 views
Session variable in delegate async function inside a webservice
I am developing my application in ASP.NET 4.5. I've created a delegate function like the follows:
private delegate void CounterDelegate(List<int> temp, int id);
private CounterDelegate sfd;
...
0
votes
1answer
98 views
Consume Java Web Service from .Net Asynchronous
Is it possible to consume a Java web service (actually it is build by WebMethods from softwareAG) asynchronously from a .NET client (using c#)?
I don't know whether this java WS is supporting ...
0
votes
1answer
134 views
Asp.net Async page that call a Web Service Without use Visual Studio web reference
i need to call a web service without use webreference created with visual studio, i have to use
http web request i have the soap request:
<soapenv:Envelope ...
0
votes
1answer
81 views
ASMX web service not generating async functions
I made a c# web service (new website > asp.net web service) with 1 function that was auto generated :
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
...
1
vote
1answer
91 views
Better approach to optimize PHP Cron Job
I can't get into too many specifics as this is a project for work, but anyways..
I'm in the process of writing a SOAP client in PHP that pushes all responses to a MySQL database. My main script ...
1
vote
1answer
173 views
Nested web service calls with tornado (async?)
I am implementing a SOAP web service using tornado (and the third party tornadows module). One of the operations in my service needs to call another so I have the chain:
External request in (via ...
-1
votes
1answer
41 views
Denial Of Service attack in asynchronous communication [closed]
Is Low rate DOS attack (unintended) possible through asynchronous communication? Consider this scenario:
I have a client server application were there is a WAN communication between the client and ...
0
votes
1answer
103 views
WebService logging a unique id per WebMethod request
I'm adding a logging system to a .Net ASMX WebService which is running as a windows service.
The aim is to log each call to a WebMethod under a different request id to be able to identify in the logs ...
0
votes
1answer
483 views
Make asynchronous web service call as synchronous in Java
I am beginner in web service development.
We are building REST web application in java using Spring 3.
Web service which we are consuming has an asynchronous login method. We have provided them a ...
0
votes
5answers
292 views
Changing from Synchronous mindset to Asynchronous
I'm busy with a windows phone application that of course uses silverlight. This means that calling any webservices has to be done asynchronously, and since this is all good and well in regards to best ...
0
votes
1answer
767 views
WP8 SDK import Service Reference with task-based operations not possible
So far it seems that importing a service reference in VS2012 with "generate task-based operations" is not working. It os greyed out.
A test with a new project for WPF is working fine - I could select ...
0
votes
1answer
87 views
Filling datagrids from webservices
I'm trying to program a silverlight application (using Silverlight 5.1, .Net 4.5) where I want to have 3 data grids.
The first datagrid is showing a list of symptoms, the second datagrid shall list ...
2
votes
1answer
216 views
How to create Asynchronous Java Restlet webservice?
I am creating Webservices in Java using Restlet API with Apache Tomcat.
In Restlet webservices are created Synchronous by default.
I want to create Asynchronous webservice using Restlet. Consider I ...
0
votes
1answer
108 views
Checking the database for new rows at regular intervals of time
I'm creating a web application in which I need to Check the Database in regular Intervals for any new rows Updated in the table. If any Rows have been updated and return the Rows to the user.
When I ...
0
votes
1answer
445 views
Spring request scope in an async service? Implement ThreadScope over threadLocal variable, plus an AsyncAspect to clean up
I've a web service that starts a series of action. All these actions started from the same request are sharing an actionContext that contains some locks and some other information.
Until now this ...
0
votes
3answers
136 views
How do I send asynchronous emails?
I am trying to send inventory updates to users who have made a request to be emailed when it becomes available. The system is a P2P system. A user will add their inventory and when that happens I ...
0
votes
2answers
179 views
Calling Web Service Asynchronously from ASP.NET Page is of no use
Say you have to call a web service from an ASP.NET page. If you just call it asynchronously it is of no use because
The CLR Threadpool thread that would not get freed. Instead it would be blocked (or ...
2
votes
4answers
165 views
How can i call two methods asynchronously?
I have the following two methods:
private static void webservicecalls()
{
WebServiceOne();
WebServiceTwo();
}
So how i can call these two methods asynchronously instead of waiting for the ...
0
votes
2answers
82 views
What's the best way to process array of JSON messages posted to Nodejs server?
A client sends an array of JSON messages to be stored at Nodejs server; but client will require some sort of acknowledgement for each message (through unique id), that it was properly stored at ...
1
vote
1answer
172 views
How to achieve asyncronous testing using SOAPUI
(sorry about the length of my request)
Current technology that I use to achieve asynchronous testing :
1. ssh into our server ex) svr.server.com (located elsewhere in a datacentre)
2. create a v.host ...
3
votes
3answers
189 views
Alternative way to update status asynchronously than BackgroundWorker
I am working on some software that is making calculations on the server side. I have tried using BackgroundWorker and it was working perfectly fine until I tried switching from fat client to a web ...
1
vote
1answer
161 views
How do JAXWS async calls work with polling
I need to invoke a long running task via a SOAP web service, using JAXWS on both ends, specifically, Apache CXF 2.6 on both ends.
I see that I can enable async methods in the CXF code generator, ...
0
votes
1answer
79 views
Is there a way to pass an argument by reference in an async asmx web service?
I have some asmx web services, some of which take arguments by reference. Now I'm using these web services in a silverlight application and have found that silverlight only lets me work with asmx web ...
-1
votes
3answers
196 views
create my own event in J2ME
I'm making a small application that call a webservice async and I want to fire loading finish event when the response complete to be able to move to next form
How can I do it in a good way ?
0
votes
0answers
166 views
Enterprise Library Exception handling and async callbacks
I'm running a small console app that makes some web service calls asynchronously. As you know, this involves a callback method being called once the async method is complete.
This app was previously ...
0
votes
1answer
437 views
Running multiple reports from SSRS simultaneously through async web service calls
I have a small batch program whose job is to call the SSRS 2008 web service with a variety of parameters and route the resulting reports. (For various reasons, SSRS subscriptions wouldn't work in ...
0
votes
2answers
182 views
Calling a WebMethod method inside a webservice : it made an “asynch” call?
I have this method on my WebService (.asmx)
[WebMethod(EnableSession = true)]
public string Test(string IDPagina)
{
return "Hello"
}
now, if from another method inside the WebService :
...
1
vote
1answer
120 views
How do I reinitialize a singleton object on an interval
I am setting up a WCF web service that hosts a Lucene.Net / AzureDirectory search engine.
For speed purposes, the recommended way to use AzureDirectory is to have an singleton IndexSearcher ...
1
vote
3answers
153 views
Web service and server->client notifications
For a web service application, I would like for the server to be able to notify the clients about some events. When a client is launched, he calls one of the WS methods to get some information it ...





