0
votes
1answer
13 views
HTTP GET Request, ASP - I’m lost!
Hi,
Using VBScript with ASP I am trying to set up an HTTP GET Request which will visit a page which in turn generates a line of ASCII (non-HTML). I then want to extrapolate that ASCII line which will …
0
votes
1answer
28 views
Issue with Django form when submitted using jQuery form plugin
hi,
when submitting my form using jQuery form plugin, the request received by the target view is different than that received when the form is submitted in the standard way (with no javascript), and …
0
votes
4answers
66 views
Dealing with URLs in Django
Hey all!
So, basically what I'm trying to do is a hockey pool application, and there are a ton of ways I should be able to filter to view the data. For example, filter by free agent, goals, assists, …
2
votes
3answers
49 views
WCF + REST: Where is the request data?
I'm currently developing a WCF RESTful service. Within the validation of the POST data, I am throwing exceptions if the request XML does not conform to our business rules.
The goal is to send an …
1
vote
1answer
40 views
any harm in put django request object in thread local dict?
I have some custom render_to_response methods which now needs request object, I could pass request to each one of them but instead I am saving request object in a middleware to thread local space and …
0
votes
2answers
49 views
Is there a way to get raw http request stream from Java servlet handler?
I am trying to put some logging to capture the raw http request coming to my application. My Java code is inside a SpringMVC controller. I have access to the "HttpServletRequest" object. But I could …
1
vote
3answers
91 views
HTTP Request (POST) field size limit & Request.BinaryRead in JSPs
Hi,
First off my Java is beyond rusty and I've never done JSPs or servlets, but I'm trying to help someone else solve a problem.
A form rendered by JavaScript is posting back to a JSP.
Some of the …
0
votes
2answers
13 views
The values of a form can not be passed on to the action file or the action file can not get the values of the fields in the form
This is the PHP code:
$html=<<<eod
<div>Your current account balance is <span style="color:red">$$balance</span></div><br/>
<form id="digitalchange" …
2
votes
4answers
139 views
How to send a HTTP POST Request in Delphi using WinInet api.
Hello, I am trying to make HTTP Requests from Delphi using the WinInet functions.
So far I have:
function request:string;
var
hNet,hURL,hRequest: HINTERNET;
begin
hNet := …
0
votes
2answers
92 views
iPhone XMLRequest
Hello,
I have an API which sends an XML Request to a server:
<?xml version="1.0" encoding="UTF-8"?>
<request type="handle" action="update">
<userdata>
…
1
vote
1answer
42 views
Can’t get JSF input field value on JAVA backend
Hello.
I have following UI part on JSF - it's simple search form with input field and submit:
<h:form>
<h:commandButton action="#{operation.found}" value="#{msg.search}" />
…
1
vote
5answers
39 views
Is it possible to send a http request only to get the last modified time?
Instead of the file itself?
EDIT
Best with a demo in PHP?
1
vote
2answers
61 views
PHP SoapClient request
I'm trying to send a SOAP request to a newsletter service using this WSDL:
dev-service.go.mayoris.com/wcf/SubscriptionService.wsdl?wsdl
Here's my PHP:
$client = new SoapClient($wsdl_url, array(
…
0
votes
1answer
25 views
where to load the request ?
Hello all,
I am developing an iPhone application in that I have come across a problem regarding loading the request at right place .
The scenario is something like this :
In the home table view I …
0
votes
1answer
45 views
twitpic API not connecting (multipart/form-data) objective-c
I've put together this code from lots of research.
Information on the twitpic API is here:
http://twitpic.com/api.do#uploadAndPost
Through debugging i can tell that the dictionary is good, and …
