-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Weird url when I run my app #160
Comments
Hi, how's the url mapping of faces servlet in web.xml? |
Does it work with RC20? |
With RC20 its working perfect.
The url mapping looks like this
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
Best Regards
Francis Njoroge Mwariri
P.O. Box 63-01028 Gatukuyu,Kenya.
Email:[email protected]
Whatsap: +254788647116
java enterprise application developer at mobsofts company
…On Wed, 13 Feb 2019 at 13:42, Rafael M. Pestano ***@***.***> wrote:
Does it work with RC20?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#160 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AGBSwfDw-gwMphMl26FnXh0HBp62Hf1mks5vM-wrgaJpZM4a4ya8>
.
|
It's probably related to this. I'll do some tests here. |
can't you have a login and index (initial page) page on your application? For example this works for me:
|
benkard
added a commit
to benkard/admin-template
that referenced
this issue
May 3, 2020
This fixes the case where a redirect to, say, /index.xhtml comes out as http:/index.xhtml instead of the correct URI. This usually happens when the application prefix is empty and its path is /, which matches the first slash after the URI scheme. This patch handles that case by skipping over the URI scheme when looking for the start of the prefix in the request URI. If the scheme cannot be detected in the request URI, the behavior is unchanged. Fixes adminfaces#160.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I run my app, the url is not properly formed.
This is my admin configuration
admin.indexPage=login.htm
admin.renderMessages=false
.....
when I run, it gives the url like this
http://localhost:8080/http:/login.htm
Instead of
http://localhost:8080/login.htm
I can add you on bit-bucket.
The text was updated successfully, but these errors were encountered: