Tagged Questions
The requestcontext tag has no wiki summary.
5
votes
5answers
2k views
Can I access virtual directory name in global.asax.cs?
The property HttpContext.Current.Request.ApplicationPath represents the virtual directory in IIS or WebDev.WebServer.
HttpContext.Current.Request.ApplicationPath evaluates to "/virtualdirectory"
...
4
votes
1answer
2k views
Clarify how GWT RequestFactory and RequestContext work
I am trying to implement RequestFactory and the Editor framework into my app. I'm finding even after researching the forum, the Google Developer forum, and others that there is something fundamental ...
3
votes
1answer
62 views
Can I set a default field value of an EntityProxy?
Say I have this:
TimeEntryProxy timeEntry = someRequestContext.create(TimeEntryProxy.class);
The created proxy is empty. Is there a way to set some of it's fields with a default value? For example, ...
3
votes
2answers
1k views
How do I access the RequestContext Outside the Controller?
Background
I am trying to move business logic out from the controllers into their own services.
Controller
public class AccountController : Controller
{
private readonly IAccountService ...
3
votes
3answers
817 views
Why on earth do I have to pass RequestContext in all of my responses?
I want to highlight the current page in the navigation menu. Obviously I need to give the menu links a class like 'active' when you are on their page. This is a classic problem and I've seen many ...
1
vote
1answer
59 views
Creating singletons in django, or any other way for global, per-request available object
While developing "widgets" (objects, which - rendered - use some custom javascript files), I faced the need of creating kind of "included-scripts-manager" (to avoid double inclusion of same JS file ...
1
vote
2answers
91 views
Convert ASMX webservice using HTTP to WCF webservice using netTcpBinding means alternative to using HttpContext
I've been studying WCF and been refactoring my ASMX webservice solution (multiple projects) slowly according to "best practices" I've found and I've come upon some design/architecture issues where I ...
1
vote
1answer
134 views
How to prevent redundant persistence calls from GWT RequestFactory context?
In a project of mine I have a GWT EntityProxy simplified as follows:
@ProxyFor(value = Item.class, locator = ItemService.class)
public interface ItemProxy extends EntityProxy
{
String getName();
...
1
vote
1answer
143 views
Parse MVC route custom file extension from RequestContext
I have set up two custom extensions to enable MVC in IIS6.
So the site can be accessed with a URL of either something like...
mysite/mycontroller.europe/myaction
or like...
...
1
vote
1answer
455 views
How to send a POJO as a callback param using PrimeFaces' RequestContext?
I can send callback param(s) and it works perfectly as long as I am only sending some primitive types like String. But the same thing does not work for even the simplest POJO. PrimeFaces guide says ...
1
vote
2answers
983 views
Is there a way to get direct_to_template to pass RequestContext in django?
I have found myself writing the same view over and over. It is basically this:
def home_index(request):
return render_to_response('home/index.html', RequestContext(request))
To keep with the ...
0
votes
0answers
46 views
Return RequestContext with json_response django
Edit : I am using Django.
I am using the following function. Since this function is being used for posting data I need to add csrf protection to it. So, I add @csrf_protect before the function. Also, ...
0
votes
1answer
77 views
Django RequestContext and media doesnt work
I'm beginner, but I've been looking everywhere for solution. I can't see uploaded images (404).
Error from image link (for example:http://192.168.1.1:8000/media/portfolio/icon.png/ -> by the way, ...
0
votes
1answer
54 views
Django: Failure to render Request Context
I have this in my views.py:
def announcements(request):
return render_to_response('events.html', {
'posts1': Blog.objects.filter(category__title="Announcements")
}, ...
0
votes
1answer
49 views
GWT RequestContext ENum in the request
If we use enum as one of the attribute in the Request invocation , it throws an UnsupportedOpeationException and does not even invoke the service method on the server.
@Service(value = ...
0
votes
1answer
298 views
ASP.NET MVC Injecting Http/Request/Controller context
Is there a recommended approach for injecting Http/Request/Controller context in an ASP.NET MVC application?
Previously I've only done this with HttpContext like so (I'm using StructureMap):
...
0
votes
0answers
111 views
Benefits to having multiple Request Context Classes
I have been playing with the request context stuff. Projects, Tasks and Resource, where a task can have multiple resources and a project can have multiple tasks, I would assume that I would have 3 ...
0
votes
1answer
123 views
Obtaining a RequestContext for a templatetag included on every page
I have a templatetag which generates a form, this therefore requires the {% csrf_token %} for security, which in turn requires a RequestContext object instead of the standard Context object.
Now, ...
0
votes
1answer
96 views
Django - Passing a filtered result to a template
Inside of my Django view I am trying to retrieve results from my database and then pass them on to my template with the following code:
f = request.GET.get('f')
try:
fb_friends_found= ...
0
votes
2answers
122 views
RequestContext returns 404 error for my imagaes?
I stumbled on a silly situation with Django's RequestContext thing. Here is my question:
I stored all my images in my media/uploads file. In my template I'm simply using :
{% for photo in photos %}
...
0
votes
1answer
132 views
Accessing RequestContext from with my MembershipProvider
Is there an easier/better way to access the RequestContext from within a custom Membership Provider than the following (and further, will this method even work):
private static RequestContext ...
0
votes
2answers
308 views
does the `context_instance=RequestContext(request)` use cookies in django
when i change the homepage view:
def home(request):
return render_to_response('homepage.html')
to
def home(request):
return ...
0
votes
1answer
278 views
turbogears request/user object in templates and request context
I am currently making the switch from Django to Turbogears 2.1 and am running into some problems that I could not find the answers to in the Turbogears docs. If tg developers read this, let me tell ...