Hello everybody
My company decide to use Xwiki for online applications help. The goal is to have an address like http://my.server.intranet/application1 or http://my.server.intranet/application2 to point directly to xwiki for the application1 or the application2 through an Apache reidrection mechanism.
Each application wiki are provided by differents teams to put in production by export/import.
We want to use Tomcat5 and Oracle 10g database.
To reach this goal, I thought to use Xwiki Enterprise Manager to handle virtual Xwiki (one for each application).
Here are my questions :
- is this the good solution ?
- I understood that I can have only one database for all wikis. If not, may I use Oracle schemas to do this ?
- I tried using xwiki 1.4.2 without any problems. So I installed Application Manager (plugin and application), Wiki Manager (plugin and application) and set xwiki.virtual to 1. But this failed... (Cannot initialize main wiki context). Is this the right way ?
- Are there some restrictions on the database naming ?
That's all for the moment
Thanks in advance and sorry for my poor english spoken.
F Gallois
Hey!
Does anybody know if i can change the LoginSubmit Process? I want , the
users have to set their email adress as their username. but when they submit
the form, they should only logged in with their aliases (thisone(a)thisnot.com
)
Is it possible?
And my next question: If yes, where?
Greetz
Greg
Hey Hoh,
I have a small (or big) problem...
I wanted to configure my LDAP Authentication on XWS. There I have used the
settings of my XE, but it won't work...
Its strange, because if i disable
xwiki.authentication.authclass=com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl
i can login with the LDAP User, but then i have no access rights. Also the
User won't be added to the User Database.
Also Admin can't login.
If i enable this authclass, i can't login with a LDAP User but with the
Admin account...
My Settings:
#-------------------------------------------------------------------------------------
# LDAP
#-------------------------------------------------------------------------------------
#-# new LDAP authentication service
xwiki.authentication.authclass=com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl
#-# Turn LDAP authentication on - otherwise only XWiki authentication
#-# 0: disable
#-# 1: enable
xwiki.authentication.ldap=1
#-# LDAP Server (Active Directory, eDirectory, OpenLDAP, etc.)
xwiki.authentication.ldap.server=192.168.111.234
xwiki.authentication.ldap.port=389
#-# LDAP login, empty = anonymous access, otherwise specify full dn
#-# {0} is replaced with the username, {1} with the password
xwiki.authentication.ldap.bind_DN=uid={0},ou=people,dc=dalim,dc=fr
xwiki.authentication.ldap.bind_pass={1}
#-# Force to check password after LDAP connection
#-# 0: disable
#-# 1: enable
xwiki.authentication.ldap.validate_password=0
#-# only members of the following group will be verified in the LDAP
# otherwise only users that are found after searching starting from the
base_DN
#
xwiki.authentication.ldap.user_group=cn=developers,ou=groups,o=MegaNova,c=US
#-# base DN for searches
xwiki.authentication.ldap.base_DN=ou=people,dc=dalim,dc=fr
#-# specifies the LDAP attribute containing the identifier to be used as the
XWiki name (default=cn)
xwiki.authentication.ldap.UID_attr=uid
#-# retrieve the following fields from LDAP and store them in the XWiki user
object (xwiki-attribute=ldap-attribute)
#-# ldap_dn=dn -- dn is set by class, caches dn in XWiki.user object for
faster access
xwiki.authentication.ldap.fields_mapping=name=uid,last_name=sn,first_name=givenName,fullname=cn,email=mail,ldap_dn=dn
#-# [SINCE 1.3M2, XWikiLDAPAuthServiceImpl]
#-# on every login update the mapped attributes from LDAP to XWiki otherwise
this happens only once when the XWiki account is created.
xwiki.authentication.ldap.update_user=1
#-# [SINCE 1.3M2, XWikiLDAPAuthServiceImpl]
#-# mapps XWiki groups to LDAP groups, separator is "|"
#xwiki.authentication.ldap.group_mapping=XWiki.Service=uid=service,ou=people,dc=dalim,dc=fr
| XWiki.IT=uid=it,ou=people,dc=dalim,dc=fr |
XWiki.Sales=uid=sales,ou=people,dc=dalim,dc=fr |
XWiki.QC=uid=qc,ou=people,dc=dalim,dc=fr |
XWiki.Marketing=uid=marketing,ou=people,dc=dalim,dc=fr |
XWiki.Manufacturing=uid=manufacturing,ou=people,dc=dalim,dc=fr |
XWiki.Finance=uid=finance,ou=people,dc=dalim,dc=fr |
XWiki.Administration=uid=administration,ou=people,dc=dalim,dc=fr
#-# [SINCE 1.3M2, XWikiLDAPAuthServiceImpl]
#-# time in s after which the list of members in a group is refreshed from
LDAP (default=3600*6)
# xwiki.authentication.ldap.groupcache_expiration=21800
#-# [SINCE 1.3M2, XWikiLDAPAuthServiceImpl]
#-# - create : synchronize group membership only when the user is first
created
#-# - always: synchronize on every login
# xwiki.authentication.ldap.mode_group_sync=always
#-# [SINCE 1.3M2, XWikiLDAPAuthServiceImpl]
#-# if ldap authentication fails for any reason, try XWiki DB authentication
with the same credentials
xwiki.authentication.ldap.trylocal=1
#-# [SINCE 1.3M2, XWikiLDAPAuthServiceImpl]
#-# SSL connection to LDAP server
#-# 0: normal
#-# 1: SSL
# xwiki.authentication.ldap.ssl=0
#-# [SINCE 1.3M2, XWikiLDAPAuthServiceImpl]
#-# The keystore file to use in SSL connection
# xwiki.authentication.ldap.ssl.keystore=
The errormessage i get is :
16:48:31,611 [
http://wiki.kehl.dalim.com:8080/work/bin/loginsubmit/XWiki/XWikiLogin]
[P1-19] DEBUG LDAP.XWikiLDAPAuthServiceImpl - Trying authentication
against XWiki DB
16:48:31,614 [
http://wiki.kehl.dalim.com:8080/work/bin/loginsubmit/XWiki/XWikiLogin]
[P1-19] WARN LDAP.XWikiLDAPAuthServiceImpl - LDAP authentication failed.
com.xpn.xwiki.plugin.ldap.XWikiLDAPException: Error number 0 in 5: LDAP bind
failed with LDAPException.
Wrapped Exception: Invalid Credentials
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:178)
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:109)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.ldapAuthenticate(XWikiLDAPAuthServiceImpl.java:190)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.authenticate(XWikiLDAPAuthServiceImpl.java:104)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.authenticate(MyFormAuthenticator.java:195)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:128)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:113)
at
com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl.checkAuth(XWikiAuthServiceImpl.java:213)
at com.xpn.xwiki.XWiki.checkAuth(XWiki.java:3412)
at
com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl.checkAccess(XWikiRightServiceImpl.java:137)
at com.xpn.xwiki.XWiki.checkAccess(XWiki.java:3420)
at com.xpn.xwiki.XWiki.prepareDocuments(XWiki.java:4382)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:189)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:830)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:821)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:471)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1565)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:633)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1517)
at org.mortbay.http.HttpServer.service(HttpServer.java:954)
at org.mortbay.http.HttpConnection.service(HttpConnection.java:816)
at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:983)
at org.mortbay.http.HttpConnection.handle(HttpConnection.java:833)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:244)
at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
Wrapped Exception:
LDAPException: Invalid Credentials (49) Invalid Credentials
LDAPException: Matched DN:
at com.novell.ldap.LDAPResponse.getResultException(Unknown Source)
at com.novell.ldap.LDAPResponse.chkResultCode(Unknown Source)
at com.novell.ldap.LDAPConnection.chkResultCode(Unknown Source)
at com.novell.ldap.LDAPConnection.bind(Unknown Source)
at com.novell.ldap.LDAPConnection.bind(Unknown Source)
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:170)
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:109)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.ldapAuthenticate(XWikiLDAPAuthServiceImpl.java:190)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.authenticate(XWikiLDAPAuthServiceImpl.java:104)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.authenticate(MyFormAuthenticator.java:195)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:128)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:113)
at
com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl.checkAuth(XWikiAuthServiceImpl.java:213)
at com.xpn.xwiki.XWiki.checkAuth(XWiki.java:3412)
at
com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl.checkAccess(XWikiRightServiceImpl.java:137)
at com.xpn.xwiki.XWiki.checkAccess(XWiki.java:3420)
at com.xpn.xwiki.XWiki.prepareDocuments(XWiki.java:4382)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:189)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:830)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:821)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:471)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1565)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:633)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1517)
at org.mortbay.http.HttpServer.service(HttpServer.java:954)
at org.mortbay.http.HttpConnection.service(HttpConnection.java:816)
at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:983)
at org.mortbay.http.HttpConnection.handle(HttpConnection.java:833)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:244)
at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
I hope you can help me!
Greetz
Greg
Hi,
I want to display the comments of my wiki, so I've copy/paste the "List
Last10 XWiki Comments Snippet" (
http://code.xwiki.org/xwiki/bin/view/Snippets/ListLast10XWikiCommentsSnippet).
But this doesn't work. I'm hosted on a XWiki 1.1.1 (but I think that's XEM).
Any idea why it doesn't work ?
Thanks,
Antonio
I want to create a table when you can see the events who are added in the
calendar.
This table is in the WebHome, and there is a class for the calendar.
So I writted this script:
#set ($hql = ", BaseObject as obj where obj.name=doc.fullName
and obj.className='XWiki.CalendarEvent' and
obj.name<>'XWiki.CalendarEventTemplate'")
#set ($dates= $xwiki.searchDocuments($hql))
{table}
nom|date|lieu|type
#foreach ($CalendarEvent in $dates)
#set ($CalendarEventDoc = $xwiki.getDocument($CalendarEvent))
#set ($CalendarEventObj =
$CalendarEventDoc.getObject("XWiki.CalendarEvent"))
[$CalendarEventObj.title>$CalendarEvent] | $CalendarEventObj.startDate |
$CalendarEventObj.location | $CalendarEventObj.category
#end
{table}
When I added a first event in Calendar, it was ok (It appeared in table).
But for the second, it doesn't work: I see the second event in "Event List",
in Calendar.But not in my table.
Thanks for helping.
--
View this message in context: http://n2.nabble.com/table-with-new-events-tp1402455p1402455.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi !
I installed recently the 1.6 version of XWiki and found that a new
functionnality allows to add logical groups to the group members list :
great ! This recursive inclusion is properly managed in global rights (like
allowing a global group for accessing a space) but this does not seem to be
included in velo xwiki API. For example I have one client that belongs to
its company group XWiki.MyClientCompanyGroup that I added to the group
XWiki.Clients. I have a dedicated part of my menu for clients and I tests
whether the current user is a client or not with the test
`$xwiki.user.isUserInGroup("XWiki.Clients")` which always return false :(
Maybe a special macro could help... anyone has a clue ?
--
Hoani CROSS
Globotraders Tahiti Founder [http://globotraders-tahiti.com]
Sorry, this may be a bit of a pedestrian question, but I've searched the
forum, tried the examples given, and followed the examples in the
documentation guide all with no avail.
On a page, I have a table:
<table width="100%" border="0">
<tr>
<td>
<h3>Blah Blah Blah...</h3>
<h3>Blah Blah Blah...</h3>
</td>
<td>
{image:Some_image.jpg|400|300| |right}
</td>
</tr>
</table>
But for the life of me, I can't get it to render without borders. The
border="0" attribute doesn't seem to be working, I tried adding an in-line
css to the <table> tag (<table style="border:0;">), this also didn't work.
I searched the forums here for some ideas, and it was suggested to edit the
table.css file accordingly. The only table.css file I have on my
installation is for the albatross skin (which I'm not using). Anyways, just
for the sake of being complete, I tried editing this file, and completely
REMOVED anything about borders, then restarted Tomcat, and the table still
renders with borders.
Does anyone have any ideas? It's so simple, yet so aggrivating... Thanks
ahead of time guys.
--
View this message in context: http://n2.nabble.com/Table-style-not-being-affected-tp1395116p1395116.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Quick question regarding the 'parent' feature. I'd like to be able to use
pages within a space as parents for other pages in that space, to provide a
more complete breadcrumbs trail for the user to see.
As of now, whenever I create a new page, it is created under the the current
space being viewed. I have no problem with this, but I need to be able to
provide a more substaintial hierarchy within a space.
So, instead of something like this:
Space
-> Page 1
-> Page 2
-> Page 3
-> Page 4
Could I arrange something like this:
Space
-> Page 1
-> Page 3
-> Page 4
-> Page 2
-> Page 5
-> Page 6
Is this functionality possible, and if so, how do I change the parent of an
already existing page to use a different page as it's parent (instead of the
space it resides in)? So many questions, so little time...
Thanks again all you fellow XWiki users and Developers, your help is
appreciated.
--
View this message in context: http://n2.nabble.com/Use-page-as-parent-instead-of-space-tp1400305p1400305.…
Sent from the XWiki- Users mailing list archive at Nabble.com.
All,
I have a problem. I logging in, after I'm close the window of my wiki
When I open my site, I follow loggin in. So I clean all the cookies, the
cache, but I always follow loggin in.
Thanks in advance
Hello all,
I'm not sure if I'm explaining this correctly but here goes...
I'm using XWiki Enterprise 1.6.1.13621 with Tomcat 6.0.16. Everything works
fine when I access the XWiki site through the URL:
http://www.my_ip_address:8080/xwiki/, I can login fine, everything works
etc...
However, when I use a service to route a domain name to that URL, I am
unable to login using pre-existing usernames/passwords.
To clarify, for example: I use the service to route the URL:
http://www.my_domain_name.ca/ to this URL:
http://www.my_ip_address:8080/xwiki/.
This works in basic functionality, as when I enter the domain name in a
browser, the XWiki login page appears, however if I try to login using my
login/password that already exists, I am unable to.
The domain service I'm using has a feature called 'URLKeeper', which in
effect hides the IP address the domain is mapped to from the user. When
this feature is turned on, the above behaviour is in effect (can't login,
but page displays). When the feature is turned off, I can login using
pre-existing XWiki accounts.
However, I want the functionality of hiding the IP address from the user.
When the feature is turned off, and http://www.my_domain_name.ca/ is entered
into the browser, it is then simply converted (and displayed to the user)
as: http://www.my_ip_address:8080/xwiki/.
Does anyone know if there is a setting in some .cfg file that sets the
'Server Base Url:' (like in Confluence) or something similar? Or has anyone
else experienced this difficulty and may be able to lend me a helping hand?
Thanks in advance, regards!
--
View this message in context: http://n2.nabble.com/Login-troubles-when-using-a-domain-name-instead-of-IP-…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi all,
First issue:
I'm currently working with XWiki 1.4M1 (the standalone installation)
and when I go the Event Calendar I get an empty Category list in the
New Event area.
I did already some research but I just can't find the place to add new
categories which can be used by the Event Calendar. I found the page
where you can add categories to the Blog (/bin/Blog/Categories) but I
was wondering if there is a similar page for the Event Calendar? Or do
I need to hard-code the list in /bin/XWiki/CalendarSheet?viewer=code?
Second issue:
I have added tags to pages in my wiki but they are not appearing on
the Tags page. I renamed the xwiki folder (in webapps) but I can't
imagine that this is the problem, to be sure I searched for xwiki/bin
in all the files and replaced it were necessary. But still the tags
are not appearing, who knows what to change?
Thank you!
Gijs.
Hi!
In the next XWiki version, is it possible (I'm actually asking or
advising, as you wish) to create "edit section" spans into the heading
(lalalaedit)? Because it becomes hard to manage these sections using
negative margins and absolute positions, besides that, it would be
logical that edit section is included in corresponding heading.
Ar cieņu, Mihails
I've set up XWiki 1.6 for my IT department, and configured the LDAP
authentication (the new, default XWikiLDAPAuthServiceImpl) to point to our
corporate Active Directory server. For all users in the "US-IS"
ActievDirectory group, it works fine; however, I have some users that are
split off into "US-info_mgmt" that can't log in. I don't have the power to
alter the Active Directory group membership or structure, so I'm stuck with
it how it is.
#-# only members of the following group will be verified in the LDAP
#-# otherwise only users that are found after searching starting from
the base_DN
xwiki.authentication.ldap.user_group=cn=US-IS,cn=Users,dc=XXXX,dc=YYYY
After looking through the XWikiLDAPAuthServiceImpl, it looks like this is a
single value, not multiple. So, I can't simply list two groups.
My next thought was to comment this out because the
XWikiLDAPAuthServiceImpl looks like it will ignore the group check if its
not set to a value. However, when I did this, no one could log in... sort
of. Actually, I was able to log in, but then the custom logo in the skin
didn't show up, and the comments area showed another login screen embedded
within the page.
Any ideas on how I can configure this?
Regards,
Brian.
-----------------------------------------
CONFIDENTIALITY STATEMENT:
This e-mail transmission contains information that is intended to
be confidential. It is intended only for the addressee named
above. If you receive this e-mail in error, please do not read,
copy, or disseminate it. If you are not the intended recipient,
any disclosure, copying, distribution or use of the contents of
this information is prohibited. Please reply to the message
immediately by informing the sender that the message was
misdirected. After replying, please erase it from your computer
system. Your assistance in correcting this error is appreciated.
I have a space in one of our databases on one of our xwiki servers.
We would like to isolate this space and move it to it's own database
on another server. Is there any easy way to do this?
Some of the things I saw involved moving the entire database (which I
don't want to do) and I'm not sure the rename space page snippet code
will help me move it to another server.
Any ideas?
Sam
Bonjour,
We've just upgraded to Xwiki 1.6 and I have some questions from a user
that are not necessarily 1.6 specific.
1. Is it possible to have a page name with a period (.) in the name.
e.g. [Release 1.6]? In Xwiki 1.0 it renders as underlined 6. In Xwiki
2.0, it doesn't even render as a link. In fact, I can't get any Xwiki
2.0 links to render at all.
2. Is it possible to have Xwiki store attachments with spaces in the
name? Say I want to store a file that is called "Marketing Plan Oct
2008.pdf". Xwiki seems to take all the spaces out and munge the
filename, especially if it is a long one, it puts in tildes (~). I want
my users to be able to download the plan without having to rename it
themselves. How do I do that?
3. How beta is the Confluence 1.0 rendering? I made a page like this:
h1. header1
h2. header2
h3. header3
h4. header4
Only the h1 rendered correctly, everything else showed up as plan text.
That has got to be the most basic page imaginable.
Do I have something installed incorrectly?
Thanks,
-Dave
--
Dave Mangot
Terracotta Inc.
650 Townsend St. Suite 325
San Francisco, CA 94103 USA
+1 415 738 4059
dmangot(a)terracottatech.com
This e-mail incorporates Terracotta's confidentiality policy, which is
online at http://www.terracottatech.com/emailconfidentiality.shtml
Hi
We have been using the Mindmap Sitemap Snippet for our Site index for quite
a while now.
A problem has arisen with a particluar computer setup.
Trying to access the MindMapIndex wiki page (only contains the snippet code)
and the applet won't load the .mm file. Opening the URL to the .mm file from
the browser directly works fine (i.e. have permission on server).
Hope someone has come across this or can give some advise on what the error
tracing means and how to fix it?
Regards,
Todd
Details:
mindmap browser 0.7.1
xwiki 1.3.2.9174
Using MindmapSitemapSnippet from here:
http://code.xwiki.org/xwiki/bin/view/Snippets/MindmapSitemapSnippet
XP SP3 - OK
- FireFox 2.0.0.17
- Java Plug-in 1.6.0_07
Vista
- FireFox 3.0.3 Error - no access to file exception!
- Java Plug-in 1.6.0_10
##########################################################
Java Console Trace Error Message:
basic: Added progress listener:
sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@df0438
basic: Applet loaded.
basic: Applet resized and added to parent container
basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt
148577 us, pluginInit dt 88946415 us, TotalTime: 89094992 us
network: No certificate info for unsigned JAR file:
http://{serverName}/xwiki/freemind/freemind.jar
<http://{serverName}/xwiki/freemind/freemind.jar>
<http://{serverName}/xwiki/freemind/freemind.jar
<http://{serverName}/xwiki/freemind/freemind.jar> >
<http://{serverName}/xwiki/freemind/freemind.jar > >
Warning: the font you have set as standard - null - is not available.
network: Cache entry not found [url:
<http://{serverName}/xwiki/freemind/freemind.jar > >Warning: the font you
have set as standard - null - is not available.network: Cache entry not
found [url:>
http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm>
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm> >
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm > > ,
version: null]
network: Connecting
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm > > ,
version: null]network: Connecting>
http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm>
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm> >
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm > >
with proxy=DIRECT
network: Connecting
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm > >
with proxy=DIRECTnetwork: Connecting> http://{serverName}/
<http://{serverName}/> <http://{serverName}/ <http://{serverName}/> >
<http://{serverName}/ > > with proxy=DIRECT
basic: Starting applet teardown
basic: Finished applet teardown
network: Server <http://{serverName}/ > > with proxy=DIRECTbasic: Starting
applet teardownbasic: Finished applet teardownnetwork: Server>
http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm>
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm> >
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm > >
requesting to set-cookie with "JSESSIONID=a5800sh1orgk;Path=/xwiki"
network: Cache entry not found [url:
<http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm > >
requesting to set-cookie with "JSESSIONID=a5800sh1orgk;Path=/xwiki"network:
Cache entry not found [url:>
http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk>
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk>
>
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk
> > , version: null]
network: Connecting
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk
> > , version: null]network: Connecting>
http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk>
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk>
>
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk
> > with proxy=DIRECT
network: Connecting
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk
> > with proxy=DIRECTnetwork: Connecting> http://{serverName}/
<http://{serverName}/> <http://{serverName}/ <http://{serverName}/> >
<http://{serverName}/ > > with proxy=DIRECT
java.io.IOException: Server returned HTTP response code: 401 for URL:
<http://{serverName}/ > > with proxy=DIRECTjava.io.IOException: Server
returned HTTP response code: 401 for URL:>
http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk>
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk>
>
<http://{serverName}/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=a5800sh1orgk
> >
java.lang.Exception
at
freemind.modes.browsemode.BrowseMapModel.load(BrowseMapModel.java:115)
at
freemind.modes.browsemode.BrowseController.load(BrowseController.java:205)
at
freemind.modes.browsemode.BrowseController.loadURL(BrowseController.java:181)
at freemind.modes.browsemode.BrowseMode.activate(BrowseMode.java:74)
at freemind.controller.Controller.changeToMode(Controller.java:325)
at freemind.main.FreeMindApplet.init(FreeMindApplet.java:262)
at
sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown
Source)
at java.lang.Thread.run(Unknown Source)
basic: Applet initialized
basic: Loading Java Applet ...
basic: Removed progress listener:
sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@df0438
asic: Applet made visible
basic: Starting applet
[Freemind-Developer-Internal-Warning (do not write a bug report, please)]:
Tried to get view without being able to get map module.
View is null.
basic: Applet started
basic: Told clients applet is started
###############################################################
Jave Trace that works:
Java Plug-in 1.6.0_07
Using JRE version 1.6.0_07 Java HotSpot(TM) Client VM
basic: Referencing classloader: sun.plugin.ClassLoaderInfo@116471f,
refcount=1
basic: Added progress listener: sun.plugin.util.GrayBoxPainter@162522b
basic: Loading applet ...
basic: Initializing applet ...
basic: Starting applet ...
basic: completed perf rollup
Warning: the font you have set as standard - null - is not available.
network: Cache entry not found [url:
http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm,
version: null]
network: Connecting
http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm with
proxy=DIRECT
network: Connecting
http://{serverName}/xwiki/bin/download/Optrak/MindMapIndex/sitemap.mm with
cookie "JSESSIONID=6gsdv7el7mbg; style=null; language=en;
username=LnS5fGpu+gBGHYktowzcuA__; password=DEFMJACE1gr4CkNoRttOCg__;
rememberme=false; validation=06c5372426174edb8435e734cdb9e9b6"
liveconnect: JavaScript: calling Java system code
liveconnect: JavaScript: UniversalJavaPermission enabled
liveconnect: JavaScript: calling Java system code
liveconnect: JavaScript: UniversalJavaPermission enabled
liveconnect: JavaScript: calling Java system code
liveconnect: JavaScript: UniversalJavaPermission enabled
liveconnect: JavaScript: calling Java system code
liveconnect: JavaScript: UniversalJavaPermission enabled
liveconnect: JavaScript: calling Java system code
liveconnect: JavaScript: UniversalJavaPermission enabled
liveconnect: JavaScript: calling Java system code
liveconnect: JavaScript: UniversalJavaPermission enabled
--
View this message in context: http://n2.nabble.com/Mindmap-file-not-loading%2C-java.io.IOException%3A-Ser…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
in XWiki XE 1.6 and 1.6.1 the application "Wiki administration - Groups"
behaves buggy.
As member count always 0 (zero) users are displayed.
After selection of a group the new window is not opened in inline mode. So
it's not possible to create new groups or add a user to a group. No user is
shown as a member.
Changing to online mode and trying to add a user leads to the message "Some
users already exist in the group" (XWikiGroups object of this user already
exists). Adding of a realy new member let the member list still empty.
I'm using virtual XWiki XE in virtual mode (XEM plugin),
Oracle 9iR2 Database,
JBoss 4.2.1 GA
I'll try out XE 1.7 next.
Is there a known problem?
Thanks,
Rudolf
--
View this message in context: http://n2.nabble.com/Administration-of-Groups-not-valid-since-1.6-tp1364242…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello all,
So, I have a space 'Research Projects', and this space has a class (template
and sheet) associated with it called ProjetClass. It has some properties
such as 'Code', 'Title', 'Researcher', etc....
There are a few things that seem strange and buggy to me, and I'm not sure
what is causing the behaviour.
First off, whenever I click on the button on the space home page to 'create
a new project', there is an error the pops up in the Tomcat window like the
following:
2008-10-27 12:07:17,154
[http://my_ip_address:8080/xwiki/bin/inline/Research%20Projects/X1?parent=Re…]
[http-8080-2] ERROR web.XWikiAction
Where X1 is the name of the newly created research project object, and
'Research Projects' is the parent space.
I'm not sure what's going on here, as the error message does not supply any
information as to what the error is exactly.
For more information, the 'Research Projects' 'WebHome' page is almost
identical to the FAQ listing page, a simple html form with submit button to
create a new form, and then a list below that of already existing
'Projects'. The html form code I'm using is as follows:
<form action="" id="newproject">
<input type="hidden" name="parent" value="Research Projects.WebHome" />
<input type="hidden" name="template" value="Research
Projects.ProjectClassTemplate" />
<input type="hidden" name="sheet" value="1" />
<input type="hidden" name="webname" value="Research Projects"/>
<input type="hidden" name="name" value=""/>
<table>
<tr>
<td>
<input type="text" name="project" value="Project Code (without
title)" size="40"/>
</td>
<td>
<input type="submit" value="Add this Project" onclick='if
(updateName(this.form.project,this.form.name)) { action="../../inline/" +
this.form.webname.value + "/" + this.form.name.value; this.form.submit(); }'
/>
</td>
</tr>
</table>
</form>
The second strange behaviour that I have been noting, is regarding this list
of 'already existing projects'. For some reason, this list is not updating
itself whenever a new 'Project' is created and saved. For the list to
actually update, I have to go into edit mode of the page, and then save the
content again (changing NOTHING), then when it goes back to the view mode,
the new additions will be represented. I build this list with the following
velocity/hql:
#set ($results = $xwiki.search("select obj.name from BaseObject obj where
obj.className='Research Projects.ProjectClass' and obj.name<>'Research
Projects.ProjectClassTemplate'"))
#foreach ($item in $results)
#set ($project = $xwiki.getDocument(${item}))
#if ($velocityCount == 1)
<h3>Existing Projects:</h3>
#end
* [${project.display("code")} - ${project.display("title")}>${item}]
#end
Also, whenever I go into edit mode of this page, a warning message appears
on the Tomcat screen, as follows:
WARNING: Parameters: Invalid chunk ignored.
Oct 27, 2008 12:20:10 PM org.apache.tomcat.util.http.Parameters
processParameters
Does anyone have any ideas as to what I'm doing wrong here? The basic
functionality of everything is working, I can create new instances of the
class, and they exist in the parent space. They will also be listed in the
'Existing' section, but only after I re-save the pre-existing code. Seems
quite strange, but I'm not a seasoned XWiki veteran.
Any help or suggestions would be greatly beneficial, thanks for your help!
--
View this message in context: http://n2.nabble.com/Strange-behaviour-when-page-tries-to-list-objects-of-c…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi All,
I connect XwikiWorkspaces( ver 1.1.1) with LDAP , the problem has been
occurred ( Internal error) when Log-in user name has dot (.) (for example
John.smith), So does any one can help me to solve this problem ?
Thanks in advance.
Here is the log file that reportd the problem:
2008-10-27 06:14:18,528
[http://localhost:8080/xwiki/bin/loginsubmit/XWiki/XWikiLogin] [P1-19] WARN
LDAP.XWikiLDAPAuthServiceImpl - LDAP authentication failed.
com.xpn.xwiki.plugin.ldap.XWikiLDAPException: Error number 0 in 5: LDAP bind
failed with LDAPException.
Wrapped Exception: Invalid Credentials
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:178)
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:109)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.ldapAuthenticate(XWikiLDAPAuthServiceImpl.java:190)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.authenticate(XWikiLDAPAuthServiceImpl.java:104)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.authenticate(MyFormAuthenticator.java:195)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:128)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:113)
at
com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl.checkAuth(XWikiAuthServiceImpl.java:213)
at com.xpn.xwiki.XWiki.checkAuth(XWiki.java:3412)
at
com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl.checkAccess(XWikiRightServiceImpl.java:167)
at
com.xpn.xwiki.store.XWikiHibernateStore.searchDocuments(XWikiHibernateStore.java:2342)
at
com.xpn.xwiki.store.XWikiHibernateStore.searchDocuments(XWikiHibernateStore.java:2803)
at
com.xpn.xwiki.store.XWikiHibernateStore.searchDocuments(XWikiHibernateStore.java:2764)
at
com.xpn.xwiki.store.XWikiHibernateStore.searchDocuments(XWikiHibernateStore.java:2752)
at
com.xpn.xwiki.store.XWikiHibernateStore.searchDocuments(XWikiHibernateStore.java:2704)
at
com.xpn.xwiki.store.XWikiCacheStore.searchDocuments(XWikiCacheStore.java:329)
at
com.xpn.xwiki.plugin.applicationmanager.core.doc.objects.classes.AbstractXClassManager.searchXObjectDocumentsByFields(AbstractXClassManager.java:802)
at
com.xpn.xwiki.plugin.applicationmanager.core.doc.objects.classes.AbstractXClassManager.searchXObjectDocuments(AbstractXClassManager.java:764)
at
com.xpn.xwiki.plugin.applicationmanager.ApplicationManager.getApplicationList(ApplicationManager.java:184)
at
com.xpn.xwiki.plugin.applicationmanager.ApplicationManager.updateAllApplicationTranslation(ApplicationManager.java:378)
at
com.xpn.xwiki.plugin.applicationmanager.ApplicationManagerPlugin.init(ApplicationManagerPlugin.java:92)
at
com.xpn.xwiki.plugin.XWikiPluginManager.initPlugin(XWikiPluginManager.java:155)
at
com.xpn.xwiki.plugin.XWikiPluginManager.addPlugin(XWikiPluginManager.java:92)
at
com.xpn.xwiki.plugin.XWikiPluginManager.addPlugins(XWikiPluginManager.java:120)
at com.xpn.xwiki.XWiki.preparePlugins(XWiki.java:880)
at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:810)
at com.xpn.xwiki.XWiki.<init>(XWiki.java:732)
at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:318)
at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:515)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:136)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:830)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:821)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:471)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1565)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:633)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1517)
at org.mortbay.http.HttpServer.service(HttpServer.java:954)
at org.mortbay.http.HttpConnection.service(HttpConnection.java:816)
at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:983)
at org.mortbay.http.HttpConnection.handle(HttpConnection.java:833)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:244)
at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
Wrapped Exception:
LDAPException: Invalid Credentials (49) Invalid Credentials
LDAPException: Matched DN:
at com.novell.ldap.LDAPResponse.getResultException(Unknown Source)
at com.novell.ldap.LDAPResponse.chkResultCode(Unknown Source)
at com.novell.ldap.LDAPConnection.chkResultCode(Unknown Source)
at com.novell.ldap.LDAPConnection.bind(Unknown Source)
at com.novell.ldap.LDAPConnection.bind(Unknown Source)
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:170)
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:109)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.ldapAuthenticate(XWikiLDAPAuthServiceImpl.java:190)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.authenticate(XWikiLDAPAuthServiceImpl.java:104)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.authenticate(MyFormAuthenticator.java:195)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:128)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:113)
at
com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl.checkAuth(XWikiAuthServiceImpl.java:213)
at com.xpn.xwiki.XWiki.checkAuth(XWiki.java:3412)
at
com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl.checkAccess(XWikiRightServiceImpl.java:167)
at
com.xpn.xwiki.store.XWikiHibernateStore.searchDocuments(XWikiHibernateStore.java:2342)
at
com.xpn.xwiki.store.XWikiHibernateStore.searchDocuments(XWikiHibernateStore.java:2803)
at
com.xpn.xwiki.store.XWikiHibernateStore.searchDocuments(XWikiHibernateStore.java:2764)
at
com.xpn.xwiki.store.XWikiHibernateStore.searchDocuments(XWikiHibernateStore.java:2752)
at
com.xpn.xwiki.store.XWikiHibernateStore.searchDocuments(XWikiHibernateStore.java:2704)
at
com.xpn.xwiki.store.XWikiCacheStore.searchDocuments(XWikiCacheStore.java:329)
at
com.xpn.xwiki.plugin.applicationmanager.core.doc.objects.classes.AbstractXClassManager.searchXObjectDocumentsByFields(AbstractXClassManager.java:802)
at
com.xpn.xwiki.plugin.applicationmanager.core.doc.objects.classes.AbstractXClassManager.searchXObjectDocuments(AbstractXClassManager.java:764)
at
com.xpn.xwiki.plugin.applicationmanager.ApplicationManager.getApplicationList(ApplicationManager.java:184)
at
com.xpn.xwiki.plugin.applicationmanager.ApplicationManager.updateAllApplicationTranslation(ApplicationManager.java:378)
at
com.xpn.xwiki.plugin.applicationmanager.ApplicationManagerPlugin.init(ApplicationManagerPlugin.java:92)
at
com.xpn.xwiki.plugin.XWikiPluginManager.initPlugin(XWikiPluginManager.java:155)
at
com.xpn.xwiki.plugin.XWikiPluginManager.addPlugin(XWikiPluginManager.java:92)
at
com.xpn.xwiki.plugin.XWikiPluginManager.addPlugins(XWikiPluginManager.java:120)
at com.xpn.xwiki.XWiki.preparePlugins(XWiki.java:880)
at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:810)
at com.xpn.xwiki.XWiki.<init>(XWiki.java:732)
at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:318)
at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:515)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:136)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:830)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:821)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:471)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1565)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:633)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1517)
at org.mortbay.http.HttpServer.service(HttpServer.java:954)
at org.mortbay.http.HttpConnection.service(HttpConnection.java:816)
at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:983)
at org.mortbay.http.HttpConnection.handle(HttpConnection.java:833)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:244)
at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
2008-10-27 06:14:19,741
[http://localhost:8080/xwiki/bin/loginsubmit/XWiki/XWikiLogin] [P1-19] WARN
LDAP.XWikiLDAPAuthServiceImpl - LDAP authentication failed.
com.xpn.xwiki.plugin.ldap.XWikiLDAPException: Error number 0 in 5: LDAP bind
failed with LDAPException.
Wrapped Exception: Invalid Credentials
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:178)
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:109)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.ldapAuthenticate(XWikiLDAPAuthServiceImpl.java:190)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.authenticate(XWikiLDAPAuthServiceImpl.java:104)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.authenticate(MyFormAuthenticator.java:195)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:128)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:113)
at
com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl.checkAuth(XWikiAuthServiceImpl.java:213)
at com.xpn.xwiki.XWiki.checkAuth(XWiki.java:3412)
at
com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl.checkAccess(XWikiRightServiceImpl.java:137)
at com.xpn.xwiki.XWiki.checkAccess(XWiki.java:3420)
at com.xpn.xwiki.XWiki.prepareDocuments(XWiki.java:4382)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:189)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:830)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:821)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:471)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1565)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:633)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1517)
at org.mortbay.http.HttpServer.service(HttpServer.java:954)
at org.mortbay.http.HttpConnection.service(HttpConnection.java:816)
at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:983)
at org.mortbay.http.HttpConnection.handle(HttpConnection.java:833)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:244)
at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
Wrapped Exception:
LDAPException: Invalid Credentials (49) Invalid Credentials
LDAPException: Matched DN:
at com.novell.ldap.LDAPResponse.getResultException(Unknown Source)
at com.novell.ldap.LDAPResponse.chkResultCode(Unknown Source)
at com.novell.ldap.LDAPConnection.chkResultCode(Unknown Source)
at com.novell.ldap.LDAPConnection.bind(Unknown Source)
at com.novell.ldap.LDAPConnection.bind(Unknown Source)
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:170)
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:109)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.ldapAuthenticate(XWikiLDAPAuthServiceImpl.java:190)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.authenticate(XWikiLDAPAuthServiceImpl.java:104)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.authenticate(MyFormAuthenticator.java:195)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:128)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:113)
at
com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl.checkAuth(XWikiAuthServiceImpl.java:213)
at com.xpn.xwiki.XWiki.checkAuth(XWiki.java:3412)
at
com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl.checkAccess(XWikiRightServiceImpl.java:137)
at com.xpn.xwiki.XWiki.checkAccess(XWiki.java:3420)
at com.xpn.xwiki.XWiki.prepareDocuments(XWiki.java:4382)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:189)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:830)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:821)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:471)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1565)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:633)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1517)
at org.mortbay.http.HttpServer.service(HttpServer.java:954)
at org.mortbay.http.HttpConnection.service(HttpConnection.java:816)
at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:983)
at org.mortbay.http.HttpConnection.handle(HttpConnection.java:833)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:244)
at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
--
View this message in context: http://n2.nabble.com/Login-UserName-Problem-tp1382066p1382066.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hey Guys,
does anybody know if it is possible to show or hide the links of the spaces
according to the access rights of the user?
Happy Coding ;-)
Greg
Hi all,
how is it possible to edit the xhtml.xsl file?
I have changed some elements in this file, but the changes aren't used in
the XE.
Is it possible that the file isn't implemented?
Greetz
Hi! Thomas,
There are errors we see on the ldap server on authenicating users with
LDAP for XWiki. It is critical to fix this issue for us to be able to
use xwiki. This is what seems to be happening. Normally when you do a
'DoBind' with a LDAP directory it establishes the connection after
successful authentication. Once you establish the connection you may ask
for information within the LDAP directory or simple logout with a
'DoUnbind'. Since you did not ask for any more information or issue a
DoUnbind the LDAP directory tried to extend your session, which was
eventually dropped. Also below is an example of a Bind with simple
authentication and then an UnBind. we would like to see a 'DoUnbind'
following a 'Dobind' when authenticating to the LDAP directory. Could you
please advise.
10:48:27 B0EB7BB0 LDAP: New cleartext connection 0x8352b08 from x.x.x.x,
monitor = 0x7ac4dbb0, index = 6
10:48:27 B32C0BB0 LDAP: (x.x.x.x)(0x0044:0x60) DoBind on connection
0x8352b08
10:48:27 B32C0BB0 LDAP: (x.x.x.x)(0x0044:0x60) Bind name:cn=abc,ou=xyz,
version:3, authentication:simple
10:48:27 B32C0BB0 LDAP: (x.x.x.x)(0x0044:0x60) Sending operation result
0:"":"" to connection 0x8352b08
10:48:27 B32C0BB0 LDAP: (x.x.x.x)(0x0044:0x60) Operation 0x44:0x60 on
connection 0x8352b08 completed in 0 seconds
10:48:27 7FBC5BB0 LDAP: (x.x.x.x)(0x0045:0x77) DoExtended on connection
0x8352b08
10:48:27 7FBC5BB0 LDAP: (x.x.x.x)(0x0045:0x77) DoExtended: Extension
Request OID: 0.0.0.0
10:48:27 7FBC5BB0 LDAP: (x.x.x.x)(0x0045:0x77) Unable to find extension
handler 0.0.0.0 in extension list
10:48:27 7FBC5BB0 LDAP: (x.x.x.x)(0x0045:0x77) Sending operation result
2:"":"Unrecognized extended operation" to connection 0x8352b08
10:48:27 7FBC5BB0 LDAP: (x.x.x.x)(0x0045:0x77) Operation 0x45:0x77 on
connection 0x8352b08 completed in 0 seconds
Trace Example 'Successful Bind and UnBind'
14:06:54 B0AB6BB0 LDAP: New TLS connection 0x838b948 from x.x.x.x, monitor
= 0x969a4bb0, index = 6
14:06:54 969A4BB0 LDAP: Monitor 0x969a4bb0 initiating TLS handshake on
connection 0x838b948
14:06:54 89F1EBB0 LDAP: (x.x.x.x)(0x0000:0x00) DoTLSHandshake on
connection 0x838b948
14:06:54 89F1EBB0 LDAP: (x.x.x.x)(0x0000:0x00) Completed TLS handshake on
connection 0x838b948
14:06:54 4C1FFBB0 LDAP: (x.x.x.x)(0xca72:0x60) DoBind on connection
0x838b948
14:06:54 4C1FFBB0 LDAP: (x.x.x.x)(0xca72:0x60) Bind name:cn=abc,ou=xyz,,
version:3, authentication:simple
14:06:54 4C1FFBB0 LDAP: (x.x.x.x)(0xca72:0x60) Sending operation result
0:"":"" to connection 0x838b948
14:06:54 4C1FFBB0 LDAP: (x.x.x.x)(0xca72:0x60) Operation 0xca72:0x60 on
connection 0x838b948 completed in 0 seconds
14:06:54 8CB10BB0 LDAP: (x.x.x.x)(0xca73:0x42) DoUnbind on connection
0x838b948
14:06:54 8CB10BB0 LDAP: Connection 0x838b948 closed
Thanks.
Sharan.
Engineer
DAS eCommerceEngineering,
GTI, JPMorgan Chase
Houston.
Ph:713-216-0725
-----------------------------------------
This communication is for informational purposes only. It is not
intended as an offer or solicitation for the purchase or sale of
any financial instrument or as an official confirmation of any
transaction. All market prices, data and other information are not
warranted as to completeness or accuracy and are subject to change
without notice. Any comments or statements made herein do not
necessarily reflect those of JPMorgan Chase & Co., its subsidiaries
and affiliates.
This transmission may contain information that is privileged,
confidential, legally privileged, and/or exempt from disclosure
under applicable law. If you are not the intended recipient, you
are hereby notified that any disclosure, copying, distribution, or
use of the information contained herein (including any reliance
thereon) is STRICTLY PROHIBITED. Although this transmission and any
attachments are believed to be free of any virus or other defect
that might affect any computer system into which it is received and
opened, it is the responsibility of the recipient to ensure that it
is virus free and no responsibility is accepted by JPMorgan Chase &
Co., its subsidiaries and affiliates, as applicable, for any loss
or damage arising in any way from its use. If you received this
transmission in error, please immediately contact the sender and
destroy the material in its entirety, whether in electronic or hard
copy format. Thank you.
Please refer to http://www.jpmorgan.com/pages/disclosures for
disclosures relating to UK legal entities.
At present, I'm training on class, sheet and template, with tutorials
So I create my class , edit properties, create sheet and template (on XE)
When I want to create a new question in my FAQ class, It doesn't work
instantaneous. I see any form.
I have to wait the next day , and it works normally , without any
modification.
What is the problem? bug? configuration?
Thanks for helping!
--
View this message in context: http://n2.nabble.com/Class-doesn%27t-work-directly-tp1372006p1372006.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi All,
Thanks for your support to make FoXWiki a public plugin :)
Btw, if you have any suggestions for new features you expect in a future
version of FoXWiki, please dump them in this thread ;)
- Asiri
On Sat, Oct 25, 2008 at 7:42 AM, Mozilla Add-ons <nobody(a)mozilla.org> wrote:
> Congratulations! Your nominated add-on, FoXWiki, has been reviewed by a
> Mozilla Add-ons editor who approved your add-on to be public.
>
> Your most recent version (1.0b) has also been made public.
>
> You can view your public add-on now at:
> http://addons.mozilla.org/addon/2358
>
> Review Information:
> Reviewer: shane hansen
> Comments: Congratulations, your addon has been approved for public
> status.<br />
> <br />
> Keep up the good work!<br />
> I did notice that you had an empty "general" preferences tab, which is kind
> of distracting for users.
> If you have questions about this review, please e-mail
> amo-editors(a)mozilla.org or join #addons on irc.mozilla.org.
>
> Mozilla Add-ons
> http://addons.mozilla.org
>
>
hello,
I'm trying connect xwiki to the ldap using this manual
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Authentication#HGeneric…
but have problem with auth..
i'm using:
slapd 2.3.30-5+etch2
apache-tomcat-6.0.18
xwiki-enterprise-web-1.7-milestone-1.war
jdk1.6.0_07
xwiki.cfg ldap section:
xwiki.authentication.authclass=com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl
xwiki.authentication.ldap=1
xwiki.authentication.ldap.server=127.0.0.1
xwiki.authentication.ldap.port=389
xwiki.authentication.ldap.bind_DN=cn={0},ou=people,dc=xxx,dc=com
xwiki.authentication.ldap.bind_pass={1}
xwiki.authentication.ldap.validate_password=0
#
xwiki.authentication.ldap.user_group=cn=developers,ou=groups,o=MegaNova,c=US
#
xwiki.authentication.ldap.exclude_group=cn=admin,ou=groups,o=MegaNova,c=US
xwiki.authentication.ldap.base_DN=ou=people,dc=xxx,dc=com
xwiki.authentication.ldap.UID_attr=cn
used "when xwiki.authentication.ldap.validate_password" is set to 1
xwiki.authentication.ldap.password_field=userPassword
#
xwiki.authentication.ldap.group_classes=group,groupOfNames,groupOfUniqueNames,dynamicGroup,dynamicGroupAux,groupWiseDistributionList
# xwiki.authentication.ldap.group_memberfields=member,uniqueMember
xwiki.authentication.ldap.fields_mapping=last_name=sn,first_name=givenName,fullname=fullName,email=mail,ldap_dn=dn
xwiki.authentication.ldap.update_user=1
#
xwiki.authentication.ldap.group_mapping=XWiki.XWikiAdminGroup=cn=AdminRole,ou=groups,o=MegaNova,c=US|\
#
XWiki.Organisation=cn=testers,ou=groups,o=MegaNova,c=US
# xwiki.authentication.ldap.groupcache_expiration=21800
# xwiki.authentication.ldap.mode_group_sync=always
xwiki.authentication.ldap.trylocal=1
xwiki.authentication.ldap.ssl=0
xwiki.authentication.ldap.ssl.keystore=
#
xwiki.authentication.ldap.ssl.secure_provider=com.sun.net.ssl.internal.ssl.Provider
java LDAP debug module exeption:
/
21:07:39,624 [http://localhost:8080/bin/loginsubmit/XWiki/XWikiLogin]
[http-8080-7] DEBUG LDAP.XWikiLDAPAuthServiceImpl - LDAP
authentication failed: login null
21:07:39,627 [http://localhost:8080/bin/loginsubmit/XWiki/XWikiLogin]
[http-8080-7] DEBUG ldap.XWikiLDAPConnection - Connection to LDAP
server [127.0.0.1:389]
21:07:39,641 [http://localhost:8080/bin/loginsubmit/XWiki/XWikiLogin]
[http-8080-7] DEBUG ldap.XWikiLDAPConnection - Binding to LDAP
server with credentials login=[cn=user1,ou=people,dc=xxx,dc=com ]
password=[user1]
21:07:39,644 [http://localhost:8080/bin/loginsubmit/XWiki/XWikiLogin]
[http-8080-7] DEBUG LDAP.XWikiLDAPAuthServiceImpl - Found user dn with
the user object: cn=user1,ou=people,dc=xxx,dc=com
21:07:39,646 [http://localhost:8080/bin/loginsubmit/XWiki/XWikiLogin]
[http-8080-7] DEBUG LDAP.XWikiLDAPAuthServiceImpl - LDAP attributes
will be used to update XWiki attributes.
21:07:39,646 [http://localhost:8080/bin/loginsubmit/XWiki/XWikiLogin]
[http-8080-7] DEBUG ldap.XWikiLDAPConfig - Ready to create
user from LDAP with fields
last_name=sn,first_name=givenName,fullname=fullName,email=mail,ldap_dn=dn
21:07:39,649 [http://localhost:8080/bin/loginsubmit/XWiki/XWikiLogin]
[http-8080-7] DEBUG LDAP.XWikiLDAPAuthServiceImpl - Updating existing
user with LDAP attribues located at cn=user1,ou=people,dc=xxx,dc=com
21:07:39,650 [http://localhost:8080/bin/loginsubmit/XWiki/XWikiLogin]
[http-8080-7] DEBUG ldap.XWikiLDAPConfig - Ready to create
user from LDAP with fields
last_name=sn,first_name=givenName,fullname=fullName,email=mail,ldap_dn=dn
21:07:39,651 [http://localhost:8080/bin/loginsubmit/XWiki/XWikiLogin]
[http-8080-7] DEBUG LDAP.XWikiLDAPAuthServiceImpl - Local LDAP
authentication failed.
java.lang.NullPointerException
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.updateUserFromLDAP(XWikiLDAPAuthServiceImpl.java:730)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.syncUser(XWikiLDAPAuthServiceImpl.java:497)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.ldapAuthenticateInContext(XWikiLDAPAuthServiceImpl.java:410)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.ldapAuthenticate(XWikiLDAPAuthServiceImpl.java:198)
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.authenticate(XWikiLDAPAuthServiceImpl.java:149)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.authenticate(MyFormAuthenticator.java:239)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:165)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:148)
at
com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl.checkAuth(XWikiAuthServiceImpl.java:205)
at com.xpn.xwiki.XWiki.checkAuth(XWiki.java:3564)
at
com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl.checkAccess(XWikiRightServiceImpl.java:139)
at com.xpn.xwiki.XWiki.checkAccess(XWiki.java:3572)
at com.xpn.xwiki.XWiki.prepareDocuments(XWiki.java:4478)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:190)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:96)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:287)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
21:07:39,653 [http://localhost:8080/bin/loginsubmit/XWiki/XWikiLogin]
[http-8080-7] DEBUG LDAP.XWikiLDAPAuthServiceImpl - Trying
authentication against XWiki DB/
Somebody can help me? Thanks and Greetings,
Bart
--
Bartłomiej Radziszewski
mobile: +48 509 561 540
e-mail: br(a)debian.linux.pl
JID: br(a)debian.linux.pl
ICQ: #305569725