A response is a general term for a message which is sent as an answer for previously made request.

learn more… | top users | synonyms

0
votes
0answers
91 views

How to parse Array of string's response from ASP

I have a soap request returning a response like below:. <getdealtodayresult> <arrayofstring> <string>KHACH SAN GOLD ĐA NANG </string> <string>G890000 ...
0
votes
0answers
167 views

Serving a file using HttpWebRequest

I am trying to write a secure SSRS report server, using HTTPWebRequest to get the report, and then trying to response.binarywrite the file. My Code: Protected Sub Page_Load(ByVal sender As Object, ...
0
votes
0answers
96 views

'your server not communicating with paypal server' error causes “No PayPal Transaction Information Available” in Transaction Activity for order

I have webstore, developed in os-commerce. I am having the issue with Paypal. I am keep getting email that our server is not communicating with their server. When People place a order and they check ...
0
votes
0answers
176 views

ksoap2 responds in json?

I'm having a bit of a problem. I am receiving a XML response from a server, but when I put it in a string and I print it, it comes out as JSON, I am baffled. I've checked the server response through a ...
0
votes
0answers
44 views

Denied by policy! - answer from the server

I've tried to submit the form using POST method and got the following response: Headers Connection close Content-Length 47 Pragma "no-cache" Body <html> ...
0
votes
0answers
62 views

libevent: getting response body

I m new to libevent and I'm looking for a way to get the contents of the response. The response in my case is a mp3 file sent from the server. I can access response headers using evhttp_find_header() ...
0
votes
0answers
326 views

CDO check if email was received/valid

I want to add users with bad/invalid emails to a table in my database. (why: professors add students that may have written their emails down wrong, and we want to contact the professors with a report ...
0
votes
0answers
142 views

Error 500 - Ajax Response (No details on client but works on localhost)

I'm currently working on a change of password exception handling on server side. So, if the change of password throws an exception on server side (i.e. new password does not fulfill the security ...
0
votes
0answers
207 views

Print response headers in jsp

I am trying to understand the response header concept in j2ee.I am setting header valus in servlet.Now how can confirm that header got changed or added. Is it possible to print response headers in ...
0
votes
0answers
58 views

Grails trigger remote sever no response

I want to use Grails to remotely execute some shells on servers. When I test shells on terminal, everything works fine. But when I use them on Grails, I can not get shells' exitValue. So I checked ...
0
votes
0answers
136 views

Spring WebServiceTemplate not giving back full response

I am using Spring WebServiceTemplate MarshalSendAndReceive to make a web service call. However the response I receive back from the call is missing most of the response that is sent from the web ...
0
votes
0answers
172 views

salted challenge response authentication mechanism (SCRAM) Java Implementation

Hello I am looking to implement, salted challenge response authentication mechanism (SCRAM) RFC #5802 http://tools.ietf.org/html/rfc5802, for a java application. I've read up on how it works HI() ...
0
votes
0answers
87 views

How to configure the Response/Result for ASP.NET 4 Web Service(.asmx) after a HttpPOST?

I'm creating an ASP.NET 4 Web Service(.asmx) to receive a HttpPOST with values from a flash form. These values are then arranged into message and sent using SmtpClient. This part is successful, no ...
0
votes
0answers
198 views

Get The Response Of A PHP Script Request In .NET

hey i am making an activation architecture in .net. I have written a script that posts the PHP variables, however, the PHP echos back a server response and i want to get that response back. I have ...
0
votes
0answers
91 views

completion time of jobs based on CPU utilization in Hadoop

I am doing a simulation to see how can I lower the completion time of a job in Hadoop. The only thing that I know is the CPU utilization(because it is just a simulation). I know that higher CPU ...
0
votes
0answers
225 views

wrong ajax response in callback using sitemesh and struts2

I've built a simple web application using sitemesh and struts2 frameworks. Now I have some problem getting the right reponse with an ajax callback in a jsp. I'm using with success the same process in ...
0
votes
0answers
124 views

How to send response from php server to iphone?

In the server, I am receiving the request, processing it with the database and redirecting to new pages as necessary.But I don't know how to send error msgs to the app if something fails.In the app we ...
0
votes
0answers
270 views

SoapUI mocking with groovy - REQUEST [read attributes] RESPONSE [form XML based on REQUEST]

I'm new to SoapUI groovy scripting. Didn't find any resolution to my problem yet Problem description REQUEST <soapenv:Body> <urn:SomeOperation> <urn:RequestedAttributes> ...
0
votes
0answers
55 views

asp.net MVC3 accessing the stream buffer in HttpContext.Response

How do I access the response buffer in HttpContext.Response in MVC3? Is this possible? I need to do this before the response is actually written out.
0
votes
0answers
159 views

asp.net mvc3 HttpContext.Response.Filter

I have a MVC3 site, which uses a legacy component that writes to the httpcontext.response directly. From MVC3 I would like to delete this content from the httpcontext.response and store it instead. ...
0
votes
0answers
101 views

NetworkError: 404 Not Found wordpress Asp .Net Server

I am stuck up in a strange kind of issue here are the 2 urls http://gauravtech04.byethost7.com/pdf-plugin/ http://www.worldprofx.com/index.php/plugin-pdf/ In the first url the request is working ...
0
votes
0answers
115 views

How do you get and convert the JSON returned from a PUT in Restkit

Maybe I'm missing something obvious but I've looked through the documentation and google for hours on this. I haven't come across anywhere that this is explained. Should I use JSONKit? After you do a ...
0
votes
0answers
53 views

Facebook Like plugin - How to know what I liked?

I have a few different Facebook like buttons : <div class='fb-like' data-href='url' data-send='false' data-layout='button_count' data-show-faces='false'></div> and I would like, in the ...
0
votes
0answers
591 views

Jquery $.ajax() response very slow

In my webpage (questions.php), I used a button, when a user click on it $.ajax() loads a form for user to ask question. This form is a separate page (ask_question_form.php). I used the following ...
0
votes
0answers
70 views

Webservice response is blocked by websense ( enabled with some quota time); how to consume this response?

I am getting websense page when trying to consume a webservice via Spring client (RestTemplate). when I tried the same URL via browser; websense page comes with some quota time. During this time ...
0
votes
0answers
300 views

Android and JSP How to send and receive message after file upload

What code to use in jsp to return message to android after successful upload file and what code to use in android to receive the message? import java.io.DataInputStream; import ...
0
votes
0answers
199 views

How do I set a JSON response and retrieve that with jQuery form plugin?

In my server I've got the following code: response.getWriter().write(myJsonString); response.setContentType("application/json;charset=UTF-8"); response.setHeader("Cache-Control", "no-cache"); return ...
0
votes
0answers
170 views

Jquery Ajax request no response after a few hours

I use this topic because i don't know how to describe my situation, Below is my environment AppServer: Tomcat 6.0.35 JDK:1.5.0_22 JQuery:1.7.1 LDAP Server:SunONE LDAP 5.2 Database:Oracle 11g ...
0
votes
0answers
151 views

Custom script in soapui

I have some responses in my mockservice and i would like to get the right respons base on my request. my script looks like this now : `// getting the response object def holder = new ...
0
votes
0answers
108 views

Response header date, always there?

I writing a client application that can communicate with a server and i need to know the current server time (to see if the client time is different). I´m wondering. Is the response header "Date" ...
0
votes
0answers
115 views

RestKit: inhibit response mapping of postObject

I am communicating with a server which allows me to create users, but does not return the created user. It just returns a 201 if it was created, and a 40x error code if not, and I handle both cases in ...
0
votes
0answers
121 views

Facebook friends dialog goes white after request is sent

Currently when I'm attempting to send an app request, and pop the friend selector FB dialog, everything works correctly until right after I click "Send Request". The request successfully sends but ...
0
votes
0answers
101 views

creating multiple web request in silverlight

I am making using silverlight 3.0 In that application i am making web request as string URL1 ="some url"; HttpWebRequest myWebRequest = (HttpWebRequest)WebRequestCreator.ClientHttp.Create(new ...
0
votes
0answers
167 views

Exim response code

Here is the main log of exim: 2012-06-29 00:42:56 [31866] 1SkTyp-0008Hx-S6 ** abxyyaakkznmzzzz@yahoo.com F= P= R=lookuphost T=remote_smtp: SMTP error from remote mail server after end of ...
0
votes
0answers
424 views

windows popup close before display dos . xls

I'm trying to display a document in a popup window on IE8 -- but before showing, the window closes automatically. Here's the code: javascript: function hacerExportarExcel(){ var url = ...
0
votes
0answers
60 views

How not to store downloaded file data in the the Disk Cache Device of the browser?

I have an issue with the caching of the file downloaded from response. I donot want the memory cache device and the disk cache device of the browser to cache any of the data been downloaded when both ...
0
votes
0answers
226 views

AJAX won't load my PHP file's response

What is wrong with my code? AJAX won't load my PHP response. I know it is triggering the doSomethingno() function because the JQuery is working and the getWeather() function is triggering, because it ...
0
votes
0answers
56 views

proper way to minimize REST re-requests on create/update?

fellow hackers, i have a problem with REST: REST principles dictate that when a resource is created or updated, the response body should be a representation that describes the transaction result, ...
0
votes
0answers
190 views

Data receive using ashx handler in Silverlight

I am making an application using Silverlight 3.0 Firstly i made one application in c# in which i had added one ashx handler.That application is deployed on IIS (IIS7.0).From another application ...
0
votes
0answers
145 views

Nullpointer exception on response line while consuming a web service in android

I have the code below. I get NullPointerException in android. i have searched in google, found something but they didnt solve the problem. (SoapPrimitive etc.) Do there anybody know the problem? ...
0
votes
0answers
55 views

Why is a page retrieved from cache?

When pages on our website are updated and we load them in the browser they are never reloaded (until I explicitly refresh). The first time I load Chrome Developer Tools just says "(from cache)" and ...
0
votes
0answers
71 views

response to the execution of an commande by code java

In my java program I excecute a command through the code => it works but as I stepped into the prog : I found myself with a command that requires an answer after his execution Then by java program: I ...
0
votes
0answers
188 views

Can't create response file / iss file

Ok, I am a noob and I am trying to figure out how to create response files / iss files. I am trying to make a response file for Microsoft security essentials (again this is just so that I can learn). ...
0
votes
0answers
492 views

Request and Response Cookies doesn't work in a Console app

I have a windows console that works fine when a make a HttpWebRequest with an user, but if I try with other user, it's not works. I think that the problem is in the cookies, because I obtain less ...
0
votes
0answers
392 views

Java and json response EOFException

I have big problem connecting with json webservice. I want to get gzipped data from server. Below is my code. Problem is when I'm parsing response I'm accepting gzip encoding and I'm getting gzipped ...
0
votes
0answers
40 views

Verifying that there is visual feedback when response to any action in an app takes more than 3 seconds

I was working on an Android app in which I wanted to insert a specific feedback response from user. Whenever an app action is not responding for more than 3 seconds than I wanted a visual feedback ...
0
votes
0answers
218 views

Parse XMLRPC response using PHP

I'm looking for help parsing a response when using XMLRPC with php. Here is my code, $f->addParam(new xmlrpcval("test", "string")) ; $f->addParam(new ...
0
votes
0answers
1k views

Java post XML as Request / get Xml as Response with Authentication parameters of ID, USERNAME, PASWORD

I am trying to make a java http post to with a xml and want to get the results from the URL("http://www.hotelspro.com/xf_test_3.0/hp_xml_request_parser.php?xml=xml"); Service Providers Document says ...
0
votes
0answers
617 views

The remote server returned an error: (500) Internal Server Error

My xml http response is taking 150 Second to 200 Second for resolv this I try to gzip requst response but geting Error The remote server returned an error: (500) Internal Server Error. Please Help ...
0
votes
0answers
71 views

How to convert if-Non-Match-Response:304 to 200?

Well, I run a wordpress based blog. Here is the address http://www.shoutpedia.com. When I look my site using this website http://ismyblogworking.com/www.shoutpedia.com, I see under Boring technical ...

1 2 3 4 5 10