0
votes
4answers
64 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, …
0
votes
2answers
48 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
80 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 …
1
vote
3answers
38 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 …
2
votes
4answers
129 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 := …
1
vote
1answer
34 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
85 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>
…
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" …
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
1answer
38 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}" />
…
0
votes
2answers
65 views
Rails - RESTful Routing - Add a POST for Member i.e(tips/6)
Hello there,
I'm trying to create some nice RESTful structure for my app in rails but now I'm stuck on a conception that unfortunately I'm not sure if its correct, but if someone could help me on …
1
vote
2answers
55 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
2answers
38 views
Getting server name in ContextLoaderListener
My listener is filling Cache (Terracota) and if something goes wrong at application start, ExceptionInInitializerError is thrown. I would like to get server name (like on HttpServletRequest - …
0
votes
4answers
48 views
Potentially dangerous Request.Form value - Exception
Hi,
today I receive multiple (50->*) e-mails regarding:
A potentially dangerous Request.Form value was detected from the client (ctl00$Content$InputStreet="OzgYPY <a href="http://effe...").
…
0
votes
1answer
40 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 …
