HttpsMapper with Apache Virtual Host Appending the Wrong Path

2013-01-11 Thread Tim Urberg
I using Wicket 6.4.0 and am deploying to WebLogic server version 10.3.5.0 I have set up a simple HttpsMapper in my WebApplication like this: @Override public void init() { ... setRootRequestMapper(new HttpsMapper(getRootRequestMapper(), new HttpsConfig())); } I have a login

Re: HttpsMapper with Apache Virtual Host Appending the Wrong Path

2013-01-17 Thread Tim Urberg
Hi Vishal, Thanks for sending this. I looked into it and the Weblogic HTTP Server plugin uses a different mechanism than the solution you posted. I'm going to have to look into it further. If anyone else has experience with the Weblogic plugin, your help would be appreciated (even if it was

Re: HttpsMapper with Apache Virtual Host Appending the Wrong Path

2013-01-17 Thread Tim Urberg
Ok, I'm making *some* progress (if you can call it that). First of all, here's more about my setup. I'm using wicket-auth-roles for authentication and I have this set up in my WebApplication.class based on an example I found in wicket examples: 1) the authorization strategy getSecuritySettin

Re: Wicket + Spring

2013-01-20 Thread Tim Urberg
If you use Maven, it will take care of all the dependencies for you. That would be the easiest way to go. Make sure you make your Wicket project into a war by using the war packaging element and have the wicket project depend on the spring project. On 1/20/13 10:52 AM, JCoder wrote: Hi all,

Re: HttpsMapper with Apache Virtual Host Appending the Wrong Path

2013-01-22 Thread Tim Urberg
be nice if there was a way to tell the wicket application that "even though I'm deployed at '/myapp', I'm actually behind a proxy and my context is '/'" That would really solve the problem. I was thinking of creating a JIRA ticket or feature request f

Re: Wicket job market

2013-02-04 Thread Tim Urberg
I wouldn't discount Apache, look at how Struts took off, and look at the Apache HTTP server, the most widely used server on the web. Apache may not be a "big corporation" but they are a still a big name. On 2/4/13 7:37 AM, Ernesto Reinaldo Barreiro wrote: Hi, IMHO on countries that invest he

Re: HttpsMapper with Apache Virtual Host Appending the Wrong Path

2013-02-13 Thread Tim Urberg
ra/browse/WICKET-5000) which could possibly be closed now that I've found this work around. Tim On 1/22/13 12:32 PM, Tim Urberg wrote: First the good news, I was able to get it to work by deploying the application in the root context. Once I did that, everything worked the way it should, p

Re: HttpsMapper with Apache Virtual Host Appending the Wrong Path

2013-02-13 Thread Tim Urberg
ed the code from the original method only changing the request URI part. On 2/13/13 2:38 PM, Tim Urberg wrote: I found a solution and it's not bad at all. This works specifically with WebLogic and the HTTP WebLogic Plugin, so anyone using that setup should benefit from

Re: HttpsMapper with Apache Virtual Host Appending the Wrong Path

2013-02-14 Thread Tim Urberg
scheme.getPort(getConfig()); url += StringUtils.remove(requestUri, weblogicPrepend); if (req.getQueryString() != null) url += "?" + req.getQueryString(); return url; } On 2/13/13 5:58 PM, Tim Urberg wrote: One more thing, I needed to override c

Re: Eclipse or IntelliJ

2013-02-19 Thread Tim Urberg
Here's the thing, Intellij is great, but it costs like five zillion dollars! (slight exaggeration). So I use Eclipse since its FREE! and it works great for me (even on a Mac). The nice thing about Wicket is that you don't need any special IDE plugins to use it. As long as your IDE knows how

HttpsMapper not Switching to SSL When there is no JsessionId Cookie

2013-03-27 Thread Tim Urberg
Hi Everyone, I'm having an issue with HttpsMapper not switching to SSL when there is no JSESSIONID cookie. It's happening with wicket-auth-roles when the user goes to the home page, which need authentication. I have this code in my init method in my WebApplication class. getSecuritySetting

Re: HttpsMapper not Switching to SSL When there is no JsessionId Cookie

2013-04-03 Thread Tim Urberg
A JIRA has been created. https://issues.apache.org/jira/browse/WICKET-5129 Thanks, Tim On 3/28/13 6:52 AM, Sven Meier wrote: Please create a quickstart and attach it to a jira issue. Sven On 03/27/2013 06:41 PM, Tim Urberg wrote: Hi Everyone, I'm having an issue with HttpsMappe