active questions tagged request - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T05:12:30Zhttp://stackoverflow.com/feeds/tag/requesthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1855184/dealing-with-urls-in-django0Dealing with URLs in Djangoshawnjan2009-12-06T11:54:54Z2009-12-06T12:32:00Z
<p>Hey all!</p>
<p>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, position, etc. </p>
<p>I'm planning on doing this with a bunch of query strings, but I'm not sure what the best approach would be to pass along the these query strings. Lets say I wanted to be on page 2 (as I'm using pagination for splitting the pages), sort by goals, and only show forwards, I would have the following query set:</p>
<pre><code>?page=2&sort=g&position=f
</code></pre>
<p>But if I was on that page, and it was showing me all this corresponding info, if I was to click say, points instead of goals, I would still want all my other filters in tact, so like this:</p>
<pre><code>?page=2&sort=p&position=f
</code></pre>
<p>Since HTTP is stateless, I'm having trouble on what the best approach to this would be.. If anyone has some good ideas they would be much appreciated, thanks ;)</p>
<p>Shawn J</p>
http://stackoverflow.com/questions/1850293/wcf-rest-where-is-the-request-data1WCF + REST: Where is the request data?RossG2009-12-04T23:14:59Z2009-12-05T01:56:17Z
<p>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.</p>
<p>The goal is to send an e-mail to the appropriate staff if a request comes in that considered invalid. But, along with the incoming request headers, method and URI, I'd like to also send the XML that was posted.</p>
<p>I have not been able to find a way to access this data. Is WCF actually destroying the request body/data before I have a chance to access it or am I missing something?</p>
<p>Your help is appreciated as I'm confused as to why I can't access the request data.</p>
http://stackoverflow.com/questions/1836760/is-there-a-way-to-get-raw-http-request-stream-from-java-servlet-handler0Is there a way to get raw http request stream from Java servlet handler?savanna2009-12-02T23:59:38Z2009-12-05T01:07:55Z
<p>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 not find a way to get the raw http request stream out of it. There is a reader but only reads the post content. What I want is the whole shebang, the url, the headers, the body. Is there an easy way to do this? </p>
<p>Thanks in advance. </p>
http://stackoverflow.com/questions/1728807/how-do-i-grab-all-the-request-parameters-in-catalyst0How do I grab all the request parameters in Catalyst?freakwincy2009-11-13T12:00:53Z2009-12-04T23:45:15Z
<p>Specifically I'm trying to capture all the POST parameters from a payment gateway as a single string and then parse them looking for the string 'ERROR'. I'm aware there's a $c->request->parameters method but I'm not quite sure how its used and couldn't figure it out from the CPAN documentation. Thanks in advance!</p>
http://stackoverflow.com/questions/549520/any-resource-codes-on-how-fiddler-works1Any resource/codes on how fiddler works?Leon Tayson2009-02-14T18:35:46Z2009-12-04T23:19:15Z
<p>I need to track http/url requests & redirects from a windows forms application using C#. It should handle both IE & firefox. Not sure if Fiddler is open-source but if i'm not mistaken, it's written using .NET. Sample codes or online articles on how to listen to http/url requests & redirects will be appreciated.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1846738/any-harm-in-put-django-request-object-in-thread-local-dict1any harm in put django request object in thread local dict?Anurag Uniyal2009-12-04T12:43:08Z2009-12-04T12:58:26Z
<p>I have some custom <code>render_to_response</code> 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 accessing it elsewhere, can it affect me anyway? </p>
http://stackoverflow.com/questions/1826524/http-request-post-field-size-limit-request-binaryread-in-jsps1HTTP Request (POST) field size limit & Request.BinaryRead in JSPsCapsoftUK2009-12-01T14:28:00Z2009-12-04T11:51:12Z
<p>Hi,</p>
<p>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.</p>
<p>A form rendered by JavaScript is posting back to a JSP.
Some of the fields in this form are over 100KB in size.
However when the form field is being retrieved on the JSP side the value of the field is being truncated to 100KB.</p>
<p>Now I know that there is a similar problem in ASP Request.Form which can be gotten around by using Request.BinaryRead.
Is there an equivalent in Java?</p>
<p>Or alternatively is there a setting in Websphere/Apache/IBM HTTP Server that gets around the same problem?</p>
http://stackoverflow.com/questions/924422/asp-net-request-lifecycle-confusion1ASP.NET request lifecycle confusionjimioh2009-05-29T04:45:32Z2009-12-02T05:17:19Z
<p>I am new to C# and .Net and am coming from a Java background. I am trying to get my head around the .NET way of doing web applications and am not having much luck.</p>
<p>I want to build an application to handle requests urls and write responses that return images.
Having only used Java servlets in the web application field I am after some good resources and/or explanations on handling the request side of the application.</p>
<p>How are requests handled? and with what Objects? What is the cycle? how do pages function around this?</p>
<p>These are basic broad questions so if anyone knows of resources that covers them all thoroughly please let me know. What I have found so far has bits of information not the overall picture.</p>
http://stackoverflow.com/questions/1823542/how-to-send-a-http-post-request-in-delphi-using-wininet-api2How to send a HTTP POST Request in Delphi using WinInet api.Sebastian2009-12-01T01:49:57Z2009-12-01T19:08:49Z
<p>Hello, I am trying to make HTTP Requests from Delphi using the WinInet functions.</p>
<p>So far I have:</p>
<pre><code>function request:string;
var
hNet,hURL,hRequest: HINTERNET;
begin
hNet := InternetOpen(PChar('User Agent'),INTERNET_OPEN_TYPE_PRECONFIG or INTERNET_OPEN_TYPE_PRECONFIG, nil, nil, 0);
if Assigned(hNet) then
begin
try
hURL := InternetConnect(hNet,PChar('http://example.com'),INTERNET_DEFAULT_HTTP_PORT,nil,nil,INTERNET_SERVICE_HTTP,0,DWORD(0));
if(hURL<>nil) then
hRequest := HttpOpenRequest(hURL, 'POST', PChar('param=value'),'HTTP/1.0',PChar(''), nil, INTERNET_FLAG_RELOAD or INTERNET_FLAG_PRAGMA_NOCACHE,0);
if(hRequest<>nil) then
HttpSendRequest(hRequest, nil, 0, nil, 0);
InternetCloseHandle(hNet);
except
on E : Exception do
ShowMessage(E.ClassName+' error raised, with message : '+E.Message);
end;
end
end;
</code></pre>
<p>But this doesn't do anything (I am sniffing network http traffic to see if it works).
I have successfully used InternetOpenURL but I also need to send POST request and that function doesn't do that.</p>
<p>Could someone show me a simple example? The result I want is to get the http response page in a var as string.</p>
http://stackoverflow.com/questions/1825110/the-values-of-a-form-can-not-be-passed-on-to-the-action-file-or-the-action-file-c0The 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 formSteven2009-12-01T09:45:34Z2009-12-01T09:59:15Z
<p>This is the PHP code:</p>
<pre><code>$html=<<<eod
<div>Your current account balance is <span style="color:red">$$balance</span></div><br/>
<form id="digitalchange" action="digitalchange.php?" action="post">
<input type="hidden" name="tid" value=$announcementid />
<table rules=all FRAME=BOX><tr><td>Balance:<span class="price">$balance</span></td><td>Current Shortfall:$shortfall</td>
<td>Unit Price:<span class="price">$$unitprice</span></td></tr>
<tr><td>Add Balance:$<input type="text" id="addbalance" name="addbalance" size="5" /></td>
<td>Add Shortall:<input type="text" id="addquota" name="addquota" size="4" /></td><td></td></tr>
<tr><td></td><td>Reduce Shortfall:<input type="text" id="reducequota" name="reducequota" size="4" /></td><td></td></tr></table>
Please click Confirm only once.
<input type="submit" value="Confirm" /></form>
<hr>
eod;
echo $html;
</code></pre>
<p>Below are the first two lines in digitalchange.php:</p>
<pre><code>$addbalance=$_POST['addbalance'];
echo "What is wrong".$addblance;
</code></pre>
<p>Outputs:</p>
<blockquote>
<p>What is wrong</p>
</blockquote>
<p>digitalchange.php simply can not get the value of addbalance,I tried $_REQUEST, but still failed. The inputbox of addbalance is not empty. But it seems that the values of the form of digitalchange can not be passed on to digitalchange.php. What's wrong?</p>
http://stackoverflow.com/questions/1822131/iphone-xmlrequest0iPhone XMLRequestPloetzeneder2009-11-30T20:14:32Z2009-12-01T06:30:26Z
<p>Hello,
I have an API which sends an XML Request to a server:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<request type="handle" action="update">
<userdata>
<username>YourUsername</username>
<password>YourPassword</password>
</userdata>
<handledata type="PERSON" id="HandleId">
<name>Mustermann</name>
<firstname>Max</firstname>
<organization>Firma KG</organization>
<street>Musterstrasse 1</street>
<postalcode>11111</postalcode>
<city>Musterstadt</city>
<state>Niedersachsen</state>
<country>DE</country>
<email>email@adresse.de</email>
<phone>+43-111-111111</phone>
<fax>+43-111-111111</fax>
<remarks>remarks</remarks>
</handledata>
</request>
</code></pre>
<p>How do I do this on the iPhone?</p>
http://stackoverflow.com/questions/1813280/cant-get-jsf-input-field-value-on-java-backend1Can't get JSF input field value on JAVA backendsergionni2009-11-28T18:22:29Z2009-11-28T19:11:08Z
<p>Hello.</p>
<p>I have following UI part on JSF - it's simple search form with input field and submit:</p>
<pre><code> <h:form>
<h:commandButton action="#{operation.found}" value="#{msg.search}" />
<h:inputText name="searchParam"/>
</h:form>
</code></pre>
<p>And correspondingly, on backend, i attempt to get value of input field next way:</p>
<pre><code>public List<Store> getFound() {
String name = (String) FacesContext.getCurrentInstance()
.getExternalContext().getRequestParameterMap().get(
"searchParam");
SessionFactory sessionFactory = new Configuration().configure()
.buildSessionFactory();
HibernateTemplate hbt = new HibernateTemplate();
hbt.setSessionFactory(sessionFactory);
foundStores = hbt.find(BEAN_PATH + " WHERE name = ?",
new Object[] { name });
return foundStores;
}
</code></pre>
<p>And null name is passed to backend.</p>
<p>It seems that problem in .jsf part, but from first glance looks ok...</p>
http://stackoverflow.com/questions/1806686/is-it-possible-to-send-a-http-request-only-to-get-the-last-modified-time1Is it possible to send a http request only to get the last modified time?Mask2009-11-27T04:14:36Z2009-11-27T04:36:16Z
<p>Instead of the file itself?</p>
<p><strong>EDIT</strong></p>
<p>Best with a demo in PHP?</p>
http://stackoverflow.com/questions/1038466/logging-raw-http-request-response-in-asp-net-mvc-iis76Logging raw HTTP request/response in ASP.NET MVC & IIS7Greg Beech2009-06-24T13:44:31Z2009-11-26T13:48:54Z
<p>I'm writing a web service (using ASP.NET MVC) and for support purposes we'd like to be able to log the requests and response in as close as possible to the raw, on-the-wire format (i.e including HTTP method, path, all headers, and the body) into a database. </p>
<p>What I'm not sure of is how to get hold of this data in the least 'mangled' way. I can re-constitute what I believe the request looks like by inspecting all the properties of the <code>HttpRequest</code> object and building a string from them (and similarly for the response) but I'd really like to get hold of the actual request/response data that's sent on the wire.</p>
<p>I'm happy to use any interception mechanism such as filters, modules, etc. and the solution can be specific to IIS7. However, I'd prefer to keep it in managed code only.</p>
<p>Any recommendations?</p>
<p><strong>Edit:</strong> I note that <code>HttpRequest</code> has a <a href="http://msdn.microsoft.com/en-us/library/system.web.httprequest.saveas.aspx" rel="nofollow"><code>SaveAs</code></a> method which can save the request to disk but this reconstructs the request from the internal state using a load of internal helper methods that cannot be accessed publicly (quite why this doesn't allow saving to a user-provided stream I don't know). So it's starting to look like I'll have to do my best to reconstruct the request/response text from the objects... groan.</p>
<p><strong>Edit 2:</strong> Please note that I said the <em>whole</em> request including method, path, headers etc. The current responses only look at the body streams which does not include this information.</p>
<p><strong>Edit 3:</strong> Does nobody read questions around here? Five answers so far and yet not one even hints at a way to get the whole raw on-the-wire request. Yes, I know I can capture the output streams and the headers and the URL and all that stuff from the request object. I already said that in the question, see:</p>
<blockquote>
<p>I can re-constitute what I believe the request looks like by inspecting all the properties of the HttpRequest object and building a string from them (and similarly for the response) but I'd really like to get hold of the actual request/response data that's sent on the wire.</p>
</blockquote>
<p>If you know the <em>complete</em> raw data (including headers, url, http method, etc.) simply cannot be retrieved then that would be useful to know. Similarly if you know how to get it all in the raw format (yes, I still mean including headers, url, http method, etc.) without having to reconstruct it, which is what I asked, then that would be very useful. But telling me that I can reconstruct it from the <code>HttpRequest</code>/<code>HttpResponse</code> objects is not useful. I know that. I already said it.</p>
<p><hr /></p>
<p><em>Please note: Before anybody starts saying this is a bad idea, or will limit scalability, etc., we'll also be implementing throttling, sequential delivery, and anti-replay mechanisms in a distributed environment, so database logging is required anyway. I'm not looking for a discussion of whether this is a good idea, I'm looking for how it can be done.</em></p>
http://stackoverflow.com/questions/1667652/iis-abort-handler-work-on-client-connection-close0IIS: Abort handler work on client connection closeAlfeG2009-11-03T14:27:01Z2009-11-26T10:06:12Z
<p>I have a handler that do some hard work under images.
It's look like <em><a href="http://example.com/webservice.ashx?imageparam1=100&imageparam2=200" rel="nofollow">http://example.com/webservice.ashx?imageparam1=100&imageparam2=200</a></em></p>
<p>Each request to this handler take about 2-3 seconds.</p>
<p>I need a way to abort image generation if client close connection(i.e. close page or send request for another image). </p>
<p>Is there is a way to do this?</p>
http://stackoverflow.com/questions/1790355/php-soapclient-request1PHP SoapClient requestAaron2009-11-24T14:16:27Z2009-11-24T15:40:14Z
<p>I'm trying to send a SOAP request to a newsletter service using this WSDL:</p>
<p>dev-service.go.mayoris.com/wcf/SubscriptionService.wsdl?wsdl</p>
<p>Here's my PHP:</p>
<pre><code>$client = new SoapClient($wsdl_url, array(
'login' => 'myusername',
'password' => 'mypassword',
'trace' => true
));
$client->AddSubscriber(
new SoapParam('MyFirstName', 'FirstName'),
new SoapParam('MyLastName', 'LastName'),
new SoapParam('myemail@someaddress.com', 'Email')
);
</code></pre>
<p>I'm getting the exception:</p>
<p>End element 'Body' from namespace 'schemas.xmlsoap.org/soap/envelope/' expected. Found element 'LastName' from namespace ''. Line 2, position 156.</p>
<p>Here's what the service is expecting for AddSubscriber:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<AuthHeader xmlns="admin.ekeryx.com">
<Username>string</Username>
<Password>string</Password>
<AccountID>string</AccountID>
</AuthHeader>
</soap:Header>
<soap:Body>
<AddSubscriber xmlns="admin.ekeryx.com">
<subscriber>
<ID>string</ID>
<FirstName>string</FirstName>
<LastName>string</LastName>
<Email>string</Email>
</subscriber>
<overwritable>boolean</overwritable>
</AddSubscriber>
</soap:Body>
</soap:Envelope>
</code></pre>
<p>Here's what's being sent:</p>
<pre><code><SOAP-ENV:Envelope xmlns:SOAP-ENV="schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="tempuri.org/">
<SOAP-ENV:Body>
<ns1:AddSubscriber/>
<LastName>MyLastName</LastName>
<Email>myemail@someaddress.com</Email>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
</code></pre>
<p>I'm not very familar with SOAP, and I've been looking for documentation all over the place, but I can't seem to find a very good reference for what I'm doing. </p>
<p>Any guidance would be very much appreciated! Thank you.</p>
http://stackoverflow.com/questions/1781264/where-to-load-the-request0where to load the request ?hib2009-11-23T05:30:48Z2009-11-23T16:57:32Z
<p>Hello all,</p>
<p>I am developing an iPhone application in that I have come across a problem regarding loading the request at right place .</p>
<p>The scenario is something like this :</p>
<p>In the home table view I am loading something like categories </p>
<ol>
<li>Tapping on any category takes you to another controller in that you will see events in that category .</li>
<li>Tapping on any event will takes you to the details view of that event (another table view )</li>
</ol>
<p>My problem is that where should I call the request to load the events :</p>
<p>Two options:</p>
<ul>
<li>on <code>didSelectRowAtIndexPath</code> in the category view or </li>
<li>in the events view <code>viewWillAppear</code> ?</li>
</ul>
<p>Tell whichever is well suited with proper reason.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1777662/twitpic-api-not-connecting-multipart-form-data-objective-c0twitpic API not connecting (multipart/form-data) objective-cbegdev2009-11-22T02:47:51Z2009-11-22T04:31:59Z
<p>I've put together this code from lots of research.
Information on the twitpic API is here: </p>
<blockquote>
<p><a href="http://twitpic.com/api.do#uploadAndPost" rel="nofollow">http://twitpic.com/api.do#uploadAndPost</a></p>
</blockquote>
<p>Through debugging i can tell that the dictionary is good, and that it gets through all the methods, the request gets submitted, but then the NSLog method returns <>.</p>
<p>I'm not sure where I could be going wrong, i don't know much about the multipart/form-data structure. Maybe I'm doing something wrong with my connection?</p>
<p>Code below.</p>
<pre><code> -(void)uploadBoth {
//Create dictionary of post arguments
NSArray *keys = [[NSArray alloc] initWithObjects:@"media",@"username",@"password",@"message",nil];
NSArray *objects = [[NSArray alloc] initWithObjects:
imageData, twitterUserSave, twitterPassSave, [NSString stringWithFormat:@"%@",messageView.text], nil];
NSDictionary *keysDict = [[NSDictionary alloc] initWithObjects:objects forKeys:keys];
NSLog(@"%@", keysDict);
//create twitpic photo post
NSURLRequest *twitpicPost = [self twitpicRequest:keysDict withData:imageData];
//send request, return YES if successful
NSURLConnection *twitpicConnection = [[NSURLConnection alloc] initWithRequest: twitpicPost delegate:self];
if (!twitpicConnection) {
NSLog(@"Failed to submit request");
} else {
NSLog(@"Request submitted");
NSData *receivedData = [[NSMutableData data] retain];
NSLog(@"%@", receivedData); // THIS PART RETURNS <>
}
}
</code></pre>
<p>The NSURLRequest part</p>
<pre><code>-(NSURLRequest *)twitpicRequest:(NSDictionary *)postKeys withData:(NSData *)data {
NSLog(@"got this far");
//create the URL POST Request to twitpic
NSURL *twitpicURL = [NSURL URLWithString:@"http://twitpic.com/api/uploadAndPost"];
NSMutableURLRequest *twitpicPost = [NSMutableURLRequest requestWithURL:twitpicURL];
[twitpicPost setHTTPMethod:@"POST"];
//Add the header info
NSString *stringBoundary = [NSString stringWithString:@"0xAbCdEfGbOuNdArY"];
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",stringBoundary];
[twitpicPost addValue:contentType forHTTPHeaderField: @"Content-Type"];
//create the body
NSMutableData *postBody = [NSMutableData data];
[postBody appendData:[[NSString stringWithFormat:@"--%@\r\n",stringBoundary] dataUsingEncoding:NSUTF8StringEncoding]];
//add key values from the NSDictionary object
NSEnumerator *keys = [postKeys keyEnumerator];
int i;
for (i = 0; i < [postKeys count]; i++) {
NSString *tempKey = [keys nextObject];
[postBody appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"\r\n\r\n",tempKey] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"%@",[postKeys objectForKey:tempKey]] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",stringBoundary] dataUsingEncoding:NSUTF8StringEncoding]];
}
//add data field and file data
[postBody appendData:[[NSString stringWithString:@"Content-Disposition: form-data; name=\"data\"\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[NSData dataWithData:data]];
[postBody appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",stringBoundary] dataUsingEncoding:NSUTF8StringEncoding]];
//add the body to the post
[twitpicPost setHTTPBody:postBody];
return twitpicPost;
}
</code></pre>
http://stackoverflow.com/questions/1773290/rails-restful-routing-add-a-post-for-member-i-etips-60Rails - RESTful Routing - Add a POST for Member i.e(tips/6)ludicco2009-11-20T21:16:41Z2009-11-21T16:05:22Z
<p>Hello there,</p>
<p>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 this it would be very well appreciated.</p>
<p>If noticed that for RESTful routes we have (the uncommented ones)</p>
<pre><code>collection
:index => 'GET'
:create => 'POST'
#:? => 'PUT'
#:? => 'DELETE'
member
:show => 'GET'
#:? => 'POST'
:update => 'PUT'
:destroy => 'DELETE'
</code></pre>
<p>in this case I'm only talking about base level action or the ones that occur directly inside i.e <b> <a href="http://domain.com/screename/tips" rel="nofollow">http://domain.com/screename/tips</a></b> or <b>http://domain.com/screename/tips/16</b></p>
<p>but at the same time I notice that there's no POST possibility for the members, anybody knows why?</p>
<p>What if I'm trying to create a self contained item that clones itself with another onwer?</p>
<p>I'm almost sure that this would be nicely generated by a POST method inside the member action, but unfortunately it looks like that there's no default methods on the map.resources on rails for this.</p>
<p>I tried something using :member, or :new but it doesn't work like this</p>
<pre><code> map.resources :tips, :path_prefix => ':user', :member => {:add => :post}
</code></pre>
<p>so this would be accessed inside <b>http://domain.com/screename/tips/16/add</b> and not <b>http://domain.com/screename/tips/16</b>.</p>
<p>So how would it be possible to create a "default" POST method for the member in a RESTful route? </p>
<p>I was thinking that maybe this isn't in there because it's not part of REST declaration, but as a quick search over it I found:</p>
<p><b>POST</b></p>
<p><b>for collections :</b>
Create a new entry in the collection where the ID is assigned automatically by the collection. The ID created is usually included as part of the data returned by this operation.</p>
<p><b>for members :</b>
Treats the addressed member as a collection in its own right and creates a new subordinate of it.</p>
<p>So this concept still the same if you think about the <b>DELETE</b> method or <b>PUT</b> for the collection. What if I want to delete all the collection instead just one member? or even replace them(<b>PUT</b>)?</p>
<p>So how could I create this specific methods that seems to be missing on map.resources?</p>
<p>That's it, I hope its easy to understand.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1769532/getting-server-name-in-contextloaderlistener0Getting server name in ContextLoaderListener Trick2009-11-20T10:15:11Z2009-11-20T10:24:53Z
<p>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 - getServerName()) to know where this happened.</p>
<p>How can I come to this information??</p>
<pre><code>import javax.servlet.ServletContextEvent;
import net.f.core.service.util.CacheUtil;
import org.apache.log4j.Logger;
import org.springframework.web.context.ContextLoaderListener;
/**
* Application Lifecycle Listener implementation class OnContextLoadListener
*
*/
public class OnContextLoadListener extends ContextLoaderListener {
private static final Logger log = Logger
.getLogger(OnContextLoadListener.class);
@Override
public void contextDestroyed(
@SuppressWarnings("unused") ServletContextEvent sce) {
// nothing here
}
@Override
public void contextInitialized(
@SuppressWarnings("unused") ServletContextEvent sce) {
try {
CacheUtil.getInstance();
} catch (ExceptionInInitializerError e) {
log.error("Problem with application start!", e);
// notify me
}
}
</code></pre>
http://stackoverflow.com/questions/1762074/potentially-dangerous-request-form-value-exception0Potentially dangerous Request.Form value - Exceptionlasseespeholt2009-11-19T09:43:57Z2009-11-19T11:05:18Z
<p>Hi,</p>
<p>today I receive multiple (50->*) e-mails regarding: </p>
<pre><code>A potentially dangerous Request.Form value was detected from the client (ctl00$Content$InputStreet="OzgYPY <a href="http://effe...").
</code></pre>
<p>and</p>
<pre><code>A potentially dangerous Request.Form value was detected from the client (ctl00$Content$InputStreet="GVdtWm <a href="http://mxif...").
</code></pre>
<p>and</p>
<p>...</p>
<p>on one of my websites. In Global I have some code which sends e-mail when exceptions occur.</p>
<p>The IP address the requests come from is not the same. Is my site under a virus attack?</p>
<p>Best regards
Lasse Espeholt</p>
http://stackoverflow.com/questions/1599910/seeing-duplicate-http-requests-in-server-logs2Seeing duplicate http requests in server logsleela2009-10-21T10:20:06Z2009-11-19T01:50:04Z
<p>Hi,</p>
<p>I have started a small django application in my machine. When i have seen the request logs I figured out that It is actually logging the same requests twice.</p>
<p>After a little investigation, I disabled all of my add-ons in my browser and tried. To my surprise i din't see duplicate requests in logs After that.</p>
<p>After some trials I found that, If YSlow and firebug are enabled, Browser is sending duplicate requests. Otherwise i see only a single request in logs.</p>
<p>My machine is centos. And firefox version is 2.0.0.11. Yslow 2.0.1 and firebug 1.3.0</p>
<p>Did any body see this sort of issue? Any ideas what's going on actually?</p>
http://stackoverflow.com/questions/1755987/grails-gwt-request-handling-via-controllers0grails + gwt request handling via controllersprabha2009-11-18T13:32:49Z2009-11-18T15:02:06Z
<p>I am new to gwt. I am trying to integrate gwt+grails.Can anybody provide me a good example for handling the request using grails controllers and not a custom servlet.I will be really thankful if anybody can guide me :)</p>
http://stackoverflow.com/questions/1755020/add-text-in-http-request-string-url0add text in http request string urlpradeep2009-11-18T10:23:30Z2009-11-18T10:28:21Z
<p>Hello all
ok i made a midlet through which i can connect to server pages and get soem information as response.
For example i made a midlet through which i acced url: <a href="http://example.com/?u=nepal&t=1" rel="nofollow">http://example.com/?u=nepal&t=1</a>
Now i want to change the value of u as per users input.
I made a text field through which users can input desired name in u=<strong>*</strong>
Now how can i add user inputted string to the url and featch it?
i tried to add the textfield directly to link it didnot worked.
i tried to pass s=textfield.getString(); and made url: example.com/?u="+s+"&t=1
But after i did it jar file donot run and says null exception error.
Please help how can i.. change the value of u as per users input through the app.
Thanks</p>
http://stackoverflow.com/questions/1748988/c-httpwebrequest-to-a-web-page-iphone-version0c# httpwebrequest to a web page iphone versionzanque2009-11-17T13:44:56Z2009-11-17T13:51:38Z
<p>hello guys,</p>
<p>i want to make an httwebrequest to a web page and get the response html of that page.</p>
<p>the problem is i want to generate the request as i'm requesting it on iPhone so that the website gives me the iphone version of the page</p>
<p>some told me to set the user agent to some string.. i did but its not working i think i need to modify some other headers of the request.</p>
<p>appreciate your help</p>
http://stackoverflow.com/questions/1740569/how-to-find-if-a-request-is-for-js-or-css-in-httphandler0How to find if a request is for js or css in httpHandlerPankaj Kumar2009-11-16T07:12:24Z2009-11-16T08:08:38Z
<p>Hi guys,</p>
<p>is there any way to find if a particular request is for JS or CSS in httphandler</p>
<p>to improve the performance of my website i was using HttpCompress from Code Project
<a href="http://www.codeproject.com/KB/aspnet/httpcompression.aspx?msg=2544100" rel="nofollow">http://www.codeproject.com/KB/aspnet/httpcompression.aspx?msg=2544100</a></p>
<p>but since it is combining all the js it is breaking my javascript in many places...so i want to write a httphandler so that iwould be able to serve the js and css compressed.( <strong>i have already minified them using YUICompressor</strong>). i know this will cause multiple http request but in my case i have a deadline and so dont want combining of javascripts and css.</p>
<p>so any approach to do so???????</p>
<p>also i have seen in the source codes of compression module that they check if the file is already on the browser and send a <strong>304 Not Modified response header</strong> but it is a little confusing to me so can anyone break it down as to how to proceed if i want to do the same....</p>
<p>i do not want whole answer just simple pointers would do...</p>
<p>thanks a lot</p>
<p><strong>P.S i am on shared hosting and do not have access to IIS</strong></p>
http://stackoverflow.com/questions/1641420/flash-and-php-become-very-slow-same-code0Flash and php become very slow, same code!!wonderer092009-10-29T03:12:17Z2009-11-16T08:00:06Z
<p>I did a flash application, login form in flash, authenticate in php, that was 3 months ago, the sending requests and response is very fast, means, when i click submit button, within 3 - 5 seconds it will has response from php.</p>
<p>Recently, i do another login in flash, using similar code as the previously i have done. Now, the sending request and respond is very long, each time may take up to 10 seconds to respond. Why is it taking so long yet the previous one is fast? </p>
<p>Same host, same php files, similar swf(not much changes in swf)</p>
http://stackoverflow.com/questions/1610638/which-requests-cause-a-w3wp-process-to-grow-considerably0Which requests cause a w3wp process to grow considerably?Nick2009-10-22T23:42:16Z2009-11-13T14:14:26Z
<p>On a production environment, how can one discover which Asp.Net http requests, whether aspx or asmx or custom, are causing the most memory pressure within a w3wp.exe process?
I don't mean memory leaks here. It's a good healthy application that disposes all it's objects nicely. Microsoft's generational GC does it's work fine.
Some requests however, cause the w3wp process to grow its memory footprint considerably, but only for the duration of the request.<p>
It is simply a question of the cost-efficiency and scalability of a production environment for a SAAS app, in order to regularly report back to the development department on their most memory hogging "pages", to return that (memory) pressure where it belongs, so to speak.
<P>
There doesn't seem to be anything like:<br>
HttpContext.Request.PeakPrivateBytes or .CurrentPrivateBytes<br>
or<br>
Session.PeakPrivateBytes</p>
http://stackoverflow.com/questions/1727898/fire-off-an-internal-servletrequest-in-tomcat2Fire off an internal ServletRequest in TomcatThilo2009-11-13T08:29:16Z2009-11-13T11:55:33Z
<p>I am using Quartz to schedule background tasks for a web application. Some of these tasks just fire off requests against the same web application.</p>
<p>I want to avoid depending on any kind of network settings (for example a request with my own domain name might not be routed properly if made from within the data center). Is there a Java API to fire off a ServletRequest and have it handled by Tomcat internally (without any actual HTTP involved)?</p>
<p>I still want to wrap the work into a Servlet request rather than calling the Java code for the background tasks directly, so that I can go back to regular HTTP request as a configuration option.</p>
<p>Tomcat-specific code is acceptable.</p>
http://stackoverflow.com/questions/1019370/are-cookies-sent-with-image-requests2Are cookies sent with image requests?Joe2009-06-19T18:21:39Z2009-11-12T01:03:47Z
<p>Hi,</p>
<p>If I have a site (e.g. foo.com) and on the home page of foo.com, there is a image request where the src=bar.com..., will the cookies on the bar.com domain be sent to the bar.com servers?</p>
<p>Thanks!</p>