Tagged Questions

5
votes
3answers
2k views

C++ Nested classes forward declaration error

I am trying to declare and use a class B inside of a class A and define B outside A. I know for a fact that this is possible because Bjarne Stroustrup uses this in his book "The C++ programming …
3
votes
5answers
2k views

undefined C struct forward declaration

Hello, I have a header file port.h, port.c, and my main.c I get the following error: 'ports' uses undefined struct 'port_t' I thought as I have declared the struct in my .h file and having the …
3
votes
3answers
5k views

jsp:forward in Java without using JSP tag?

Is there a pure-Java equivalent to <jsp:forward page="..." /> that I can use within a <% ... %> block? For example, I currently have a JSP page something like this: <% String …
2
votes
1answer
522 views

Using SiteMesh with RequestDispatcher’s forward()

I'm attempting to integrate SiteMesh into a legacy application using Tomcat 5 as my a container. I have a main.jsp that I'm decorating with a simple decorator. In decorators.xml, I've just got one …
2
votes
6answers
1k views

Forward Declaration of a Base Class

Hello, I'm trying to create proper header files that don't include much other files. (To keep them clean, to speed up compiling time, ...) I encountered two problems while doing this: 1 - Forward …
1
vote
4answers
117 views

C Programming: Forward variable argument list.

Hi, I'm trying to write a function that accepts a variable number of parameters like printf, does some stuff, then passes the variable list to printf. I'm not sure how to do this, because it seems …
1
vote
1answer
185 views

How do I forward a complete email without downloading attachments?

Hello (and thanks in advance!) I'm working in Python and I got IMAP and SMTP to work with my Gmail account. I now need to forward select messages to another account (after reading their body). How …
1
vote
5answers
1k views

Does PHP Have an Equivalent of Java’s RequestDispatcher.forward?

In Java I can write a really basic JSP index.jsp like so: <% request.getRequestDispatcher("/home.action").forward(request, response); %> The effect of this is that a user requesting index.jsp …
0
votes
2answers
160 views

.htaccess Redirect to External Site and Forward POST data while Changing address bar?

Hey, I want to use .htaccess to redirect the requested page to the exact same page on a different domain, and I want it to forward all POST data while CHANGING the address bar to the new domain, like …
0
votes
0answers
140 views

jsf-facelets forward bypass servlet filters

For one week, i am playing with appfuse-jsf-basic but i noticed something. If i do not put tag to my navigation rules, i can view a page that require ROLE_ADMIN with ROLE_USER rights. Then i …
0
votes
0answers
129 views

Struts LookUpDispatchAction redirect

Hi all, We are migrating our web applications which use struts 1.2 and running on Weblogic 8.1 to Weblogic 10.3. Some action classes in our applications extend LookUpDispatchAction class. For these …
0
votes
1answer
119 views

How to receive all emails pertaining to a domain, on my production machine?

I have a strange requirement, any website user(not linux system user) will be getting a email id, say jack@mywebsite.com,sarah@mywebsite.com with which they are going to have a inbox feature built …
0
votes
2answers
668 views

Procmail Forward script to forward emails from one domain to the other

I am trying to write a procmail forward script, which will forward all the mails received at mydomain.com to mydomain.NET. To be more clear, if mail is to:jack@mydomain.com, it should forward to: …