Re: [xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-23 Thread Peter John Acklam
Thanks everyone!

The problem has been solved, and the odd characters are gone.

The query didn't work without some modifications. I ended up using

select xwd_fullname from xwikidoc where xwd_content like '%' || chr(1) ||
'%';

(concat() only takes two operands, so it was easier to use ||. My sqlplus
tool didn't like "%" and char(1), so I had to use '%' and chr(1).)

After this character was removed, I got complaints about 0xf. The page was
identified with the equivalent query, but using chr(15).

I also had to remove some of the old versions from the page history. Oddly
enough, the queries still report that the odd characters are present in the
database, but exporting the entire wiki works fine now, so the odd
characters are no longer a problem.

By the way, the text with the odd characters had entered the wiki when text
had been copied an pasted from UNIX terminal windows.

Agan, thanks everyone for your invaluable help!

Peter
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-23 Thread Paul Libbrecht
Hello all,

here would be the query:

select xwd_fullname from xwikidoc where xwd_content like
concat("%",char(1),"%");

(I've seen many indicate that || would be the concatenation operator,
but it seems like it is not the case in like operands)

Based on that, Peter, you should be able to filter things out.


Now, to the XML 1.1 export. In principle this is not a big deal, but we
should be clear on what it implies for parser libraries. The move to XML
1.1 has been more than frigid. Note also, that this support is pretty
limited (only  references).
I'd prefer if we find a way to get rid of such gremlins. To my
experience they are only the spurious result of copy and paste. One
particular family of documents where these gremlins happen are PDF
documents generated by TeX. The venerable typesetting had a tradition of
funky encoding, since it also had its own fonts and all that was far
before the move even to 16 bits.

I believe that the editor or the save process should remove anything
below ASCII 32 except CR, LF, and TAB.

Can the migration process be interactive to ask about them?
Should we "just" zap them or replace them by a character?
Does someone find a reason to keep them?

Paul

PS: the "gremlins" name here comes from BBEdit/TextWrangler who had a
function "Zap Gremlins" since a decade at least.


> Thomas Mortagne 
> 22 February 2016 at 14:10
> What I can say from the error is that the character is in a document
> content at least (not a title, or an object) but it does not help much
> reduce the scope.
>
> You could try to find it with a SQL request I guess, need to find how
> to search this specific character in a SQL request.
>
> On Mon, Feb 22, 2016 at 2:01 PM, Thomas Mortagne
>
>
>
> Thomas Mortagne 
> 22 February 2016 at 14:01
> On Mon, Feb 22, 2016 at 12:46 PM, Peter John Acklam  
> wrote:
>> Avoiding this problem in the future would be nice, but I already have this
>> character in my wiki, and I need to get rid of it. I don't know how it got
>> there, but more importantly, I need to find it, so I can remove it. With no
>> XAR export, we can't do our planned transision from an Oracle to a
>> PostgreSQL database.
>>
>> As for the discussion on markmail.org – I have registered there, but I
>> can't find anything on the webpage that allows me to take part in the
>> discussion.
>
> Yes you can't write from markmail, was probably not the best link to give :)
>
> I think you can sent mails from nabble (through
> http://dev.xwiki.org/xwiki/bin/view/Community/Forum or
> http://xwiki.475771.n2.nabble.com/Should-we-move-to-XML-1-1-in-XAR-td7598066.html).
>
>> Cheers,
>> Peter
>>
>>
>> 2016-02-22 12:15 GMT+01:00 Thomas Mortagne :
>>
>>> Starting a discussion on this subject on
>>> http://markmail.org/message/32vnzxchphr26phh.
>>>
>>> If you have more input on what is this character doing here please share
>>> there.
>>>
>>> On Mon, Feb 22, 2016 at 11:55 AM, Thomas Mortagne
>>>  wrote:
 Actually I do know why it's writting XML 1.0, that's because we tell it
>>> to...
 Did not know XML 1.0 was not supporting anything, I'm surprise we get
 this kind of report only know.

 Anyway thanks for the report, will take care of this.

 On Mon, Feb 22, 2016 at 11:31 AM, Thomas Mortagne
  wrote:
> What I understand from the error message is that Woodstox think it's
> writing XML 1.0 and looks like it's not possible to put anything you
> want in XML 1.0 but not sure why exactly. You happen to have a
> document containing some weird character (0x1) which is probably a
> mistake but still we should be able to export anything (especially
> when this anything can be stored in a String and in the database).
>
> In the meantime what you can try is to set the old exporter in
> xwiki.cfg (look at xwiki.action.export.xar.usewikistream property).
> Would be great if you could crate an issue on http://jira.xwiki.org
> with all the information you can gather about this bug.
>
>
> On Mon, Feb 22, 2016 at 10:18 AM, Peter John Acklam 
>>> wrote:
>> I can no longer make a XAR export of our wiki. The essential error
>>> message
>> in catalina.out seems to be
>>
>> "Invalid white space character (0x1) in text to output (in xml 1.1,
>>> could
>> output as a character entity)"
>>
>> Alas, there is no information about which wiki page contains this
>>> invalid
>> character. I can, of course, export parts of the wiki and repeat the
>> process until I find the offending page, but I suspect there has got
>>> to be
>> a more efficient way.
>>
>> The full, relevant section of catalina.out on our test server is
>>> included
>> below.
>>
>> Thanks in advance for any tips!
>>
>> Cheers,
>> Peter John 

Re: [xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-22 Thread Thomas Mortagne
What I can say from the error is that the character is in a document
content at least (not a title, or an object) but it does not help much
reduce the scope.

You could try to find it with a SQL request I guess, need to find how
to search this specific character in a SQL request.

On Mon, Feb 22, 2016 at 2:01 PM, Thomas Mortagne
 wrote:
> On Mon, Feb 22, 2016 at 12:46 PM, Peter John Acklam  
> wrote:
>> Avoiding this problem in the future would be nice, but I already have this
>> character in my wiki, and I need to get rid of it. I don't know how it got
>> there, but more importantly, I need to find it, so I can remove it. With no
>> XAR export, we can't do our planned transision from an Oracle to a
>> PostgreSQL database.
>>
>> As for the discussion on markmail.org – I have registered there, but I
>> can't find anything on the webpage that allows me to take part in the
>> discussion.
>
> Yes you can't write from markmail, was probably not the best link to give :)
>
> I think you can sent mails from nabble (through
> http://dev.xwiki.org/xwiki/bin/view/Community/Forum or
> http://xwiki.475771.n2.nabble.com/Should-we-move-to-XML-1-1-in-XAR-td7598066.html).
>
>>
>> Cheers,
>> Peter
>>
>>
>> 2016-02-22 12:15 GMT+01:00 Thomas Mortagne :
>>
>>> Starting a discussion on this subject on
>>> http://markmail.org/message/32vnzxchphr26phh.
>>>
>>> If you have more input on what is this character doing here please share
>>> there.
>>>
>>> On Mon, Feb 22, 2016 at 11:55 AM, Thomas Mortagne
>>>  wrote:
>>> > Actually I do know why it's writting XML 1.0, that's because we tell it
>>> to...
>>> >
>>> > Did not know XML 1.0 was not supporting anything, I'm surprise we get
>>> > this kind of report only know.
>>> >
>>> > Anyway thanks for the report, will take care of this.
>>> >
>>> > On Mon, Feb 22, 2016 at 11:31 AM, Thomas Mortagne
>>> >  wrote:
>>> >> What I understand from the error message is that Woodstox think it's
>>> >> writing XML 1.0 and looks like it's not possible to put anything you
>>> >> want in XML 1.0 but not sure why exactly. You happen to have a
>>> >> document containing some weird character (0x1) which is probably a
>>> >> mistake but still we should be able to export anything (especially
>>> >> when this anything can be stored in a String and in the database).
>>> >>
>>> >> In the meantime what you can try is to set the old exporter in
>>> >> xwiki.cfg (look at xwiki.action.export.xar.usewikistream property).
>>> >> Would be great if you could crate an issue on http://jira.xwiki.org
>>> >> with all the information you can gather about this bug.
>>> >>
>>> >>
>>> >> On Mon, Feb 22, 2016 at 10:18 AM, Peter John Acklam 
>>> wrote:
>>> >>> I can no longer make a XAR export of our wiki. The essential error
>>> message
>>> >>> in catalina.out seems to be
>>> >>>
>>> >>> "Invalid white space character (0x1) in text to output (in xml 1.1,
>>> could
>>> >>> output as a character entity)"
>>> >>>
>>> >>> Alas, there is no information about which wiki page contains this
>>> invalid
>>> >>> character. I can, of course, export parts of the wiki and repeat the
>>> >>> process until I find the offending page, but I suspect there has got
>>> to be
>>> >>> a more efficient way.
>>> >>>
>>> >>> The full, relevant section of catalina.out on our test server is
>>> included
>>> >>> below.
>>> >>>
>>> >>> Thanks in advance for any tips!
>>> >>>
>>> >>> Cheers,
>>> >>> Peter John Acklam
>>> >>>
>>> >>>
>>> >>> 2016-02-19 09:36:17,163 [
>>> >>>
>>> http://wiki-test/xwiki/bin/export/XWiki/XWikiPreferences?editor=globaladmin=Export
>>> ]
>>> >>> WARN c.x.x.w.XWikiAction - Uncaught exception: Error number 11015 in
>>> 11:
>>> >>> Exception while exporting
>>> >>> com.xpn.xwiki.XWikiException: Error number 11015 in 11: Exception while
>>> >>> exporting
>>> >>> at com.xpn.xwiki.web.ExportAction.render(ExportAction.java:84)
>>> >>> ~[xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>>> >>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:417)
>>> >>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>>> >>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:184)
>>> >>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>>> >>> at
>>> >>>
>>> org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:425)
>>> >>> [struts-core-1.3.10.jar:1.3.10]
>>> >>> at
>>> >>>
>>> org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:228)
>>> >>> [struts-core-1.3.10.jar:1.3.10]
>>> >>> at
>>> org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
>>> >>> [struts-core-1.3.10.jar:1.3.10]
>>> >>> at
>>> org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
>>> >>> [struts-core-1.3.10.jar:1.3.10]
>>> >>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
>>> >>> [servlet-api.jar:na]
>>> >>> at 

Re: [xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-22 Thread vinc...@massol.net
Hi Peter,

On 22 Feb 2016 at 12:46:33, Peter John Acklam 
(pjack...@gmail.com(mailto:pjack...@gmail.com)) wrote:

> Avoiding this problem in the future would be nice, but I already have this
> character in my wiki, and I need to get rid of it. I don't know how it got
> there, but more importantly, I need to find it, so I can remove it. With no
> XAR export, we can't do our planned transision from an Oracle to a
> PostgreSQL database.
>  
> As for the discussion on markmail.org – I have registered there, but I
> can't find anything on the webpage that allows me to take part in the
> discussion.

Just answering this part. Markmail is just an open archival of the xwiki 
mailing lists. You don’t need to register there (and it won’t do you any good 
to do so ;)).

The discussion you see on markmail are the one here on this list! ;)

If you wish to get an old message in your mail I guess you could use nabble 
(http://dev.xwiki.org/xwiki/bin/view/Community/Forum).

You could also ask for the list manager to get you the mail locally (we’re 
using mailman to manage the lists).

Thanks
-Vincent

> Cheers,
> Peter
>  
>  
> 2016-02-22 12:15 GMT+01:00 Thomas Mortagne :
>  
> > Starting a discussion on this subject on
> > http://markmail.org/message/32vnzxchphr26phh.
> >
> > If you have more input on what is this character doing here please share
> > there.
> >
> > On Mon, Feb 22, 2016 at 11:55 AM, Thomas Mortagne
> > wrote:
> > > Actually I do know why it's writting XML 1.0, that's because we tell it
> > to...
> > >
> > > Did not know XML 1.0 was not supporting anything, I'm surprise we get
> > > this kind of report only know.
> > >
> > > Anyway thanks for the report, will take care of this.
> > >
> > > On Mon, Feb 22, 2016 at 11:31 AM, Thomas Mortagne
> > > wrote:
> > >> What I understand from the error message is that Woodstox think it's
> > >> writing XML 1.0 and looks like it's not possible to put anything you
> > >> want in XML 1.0 but not sure why exactly. You happen to have a
> > >> document containing some weird character (0x1) which is probably a
> > >> mistake but still we should be able to export anything (especially
> > >> when this anything can be stored in a String and in the database).
> > >>
> > >> In the meantime what you can try is to set the old exporter in
> > >> xwiki.cfg (look at xwiki.action.export.xar.usewikistream property).
> > >> Would be great if you could crate an issue on http://jira.xwiki.org
> > >> with all the information you can gather about this bug.
> > >>
> > >>
> > >> On Mon, Feb 22, 2016 at 10:18 AM, Peter John Acklam  
> > wrote:
> > >>> I can no longer make a XAR export of our wiki. The essential error
> > message
> > >>> in catalina.out seems to be
> > >>>
> > >>> "Invalid white space character (0x1) in text to output (in xml 1.1,
> > could
> > >>> output as a character entity)"
> > >>>
> > >>> Alas, there is no information about which wiki page contains this
> > invalid
> > >>> character. I can, of course, export parts of the wiki and repeat the
> > >>> process until I find the offending page, but I suspect there has got
> > to be
> > >>> a more efficient way.
> > >>>
> > >>> The full, relevant section of catalina.out on our test server is
> > included
> > >>> below.
> > >>>
> > >>> Thanks in advance for any tips!
> > >>>
> > >>> Cheers,
> > >>> Peter John Acklam
> > >>>
> > >>>
> > >>> 2016-02-19 09:36:17,163 [
> > >>>
> > http://wiki-test/xwiki/bin/export/XWiki/XWikiPreferences?editor=globaladmin§ion=Export
> > ]
> > >>> WARN c.x.x.w.XWikiAction - Uncaught exception: Error number 11015 in
> > 11:
> > >>> Exception while exporting
> > >>> com.xpn.xwiki.XWikiException: Error number 11015 in 11: Exception while
> > >>> exporting
> > >>> at com.xpn.xwiki.web.ExportAction.render(ExportAction.java:84)
> > >>> ~[xwiki-platform-legacy-oldcore-7.4.1.jar:na]
> > >>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:417)
> > >>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
> > >>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:184)
> > >>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
> > >>> at
> > >>>
> > org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:425)
> > >>> [struts-core-1.3.10.jar:1.3.10]
> > >>> at
> > >>>
> > org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:228)
> > >>> [struts-core-1.3.10.jar:1.3.10]
> > >>> at
> > org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
> > >>> [struts-core-1.3.10.jar:1.3.10]
> > >>> at
> > org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
> > >>> [struts-core-1.3.10.jar:1.3.10]
> > >>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
> > >>> [servlet-api.jar:na]
> > >>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
> > >>> [servlet-api.jar:na]
> > >>> at
> > >>>
> > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:291)
> > >>> [catalina.jar:8.0.30]

Re: [xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-22 Thread Thomas Mortagne
On Mon, Feb 22, 2016 at 12:46 PM, Peter John Acklam  wrote:
> Avoiding this problem in the future would be nice, but I already have this
> character in my wiki, and I need to get rid of it. I don't know how it got
> there, but more importantly, I need to find it, so I can remove it. With no
> XAR export, we can't do our planned transision from an Oracle to a
> PostgreSQL database.
>
> As for the discussion on markmail.org – I have registered there, but I
> can't find anything on the webpage that allows me to take part in the
> discussion.

Yes you can't write from markmail, was probably not the best link to give :)

I think you can sent mails from nabble (through
http://dev.xwiki.org/xwiki/bin/view/Community/Forum or
http://xwiki.475771.n2.nabble.com/Should-we-move-to-XML-1-1-in-XAR-td7598066.html).

>
> Cheers,
> Peter
>
>
> 2016-02-22 12:15 GMT+01:00 Thomas Mortagne :
>
>> Starting a discussion on this subject on
>> http://markmail.org/message/32vnzxchphr26phh.
>>
>> If you have more input on what is this character doing here please share
>> there.
>>
>> On Mon, Feb 22, 2016 at 11:55 AM, Thomas Mortagne
>>  wrote:
>> > Actually I do know why it's writting XML 1.0, that's because we tell it
>> to...
>> >
>> > Did not know XML 1.0 was not supporting anything, I'm surprise we get
>> > this kind of report only know.
>> >
>> > Anyway thanks for the report, will take care of this.
>> >
>> > On Mon, Feb 22, 2016 at 11:31 AM, Thomas Mortagne
>> >  wrote:
>> >> What I understand from the error message is that Woodstox think it's
>> >> writing XML 1.0 and looks like it's not possible to put anything you
>> >> want in XML 1.0 but not sure why exactly. You happen to have a
>> >> document containing some weird character (0x1) which is probably a
>> >> mistake but still we should be able to export anything (especially
>> >> when this anything can be stored in a String and in the database).
>> >>
>> >> In the meantime what you can try is to set the old exporter in
>> >> xwiki.cfg (look at xwiki.action.export.xar.usewikistream property).
>> >> Would be great if you could crate an issue on http://jira.xwiki.org
>> >> with all the information you can gather about this bug.
>> >>
>> >>
>> >> On Mon, Feb 22, 2016 at 10:18 AM, Peter John Acklam 
>> wrote:
>> >>> I can no longer make a XAR export of our wiki. The essential error
>> message
>> >>> in catalina.out seems to be
>> >>>
>> >>> "Invalid white space character (0x1) in text to output (in xml 1.1,
>> could
>> >>> output as a character entity)"
>> >>>
>> >>> Alas, there is no information about which wiki page contains this
>> invalid
>> >>> character. I can, of course, export parts of the wiki and repeat the
>> >>> process until I find the offending page, but I suspect there has got
>> to be
>> >>> a more efficient way.
>> >>>
>> >>> The full, relevant section of catalina.out on our test server is
>> included
>> >>> below.
>> >>>
>> >>> Thanks in advance for any tips!
>> >>>
>> >>> Cheers,
>> >>> Peter John Acklam
>> >>>
>> >>>
>> >>> 2016-02-19 09:36:17,163 [
>> >>>
>> http://wiki-test/xwiki/bin/export/XWiki/XWikiPreferences?editor=globaladmin=Export
>> ]
>> >>> WARN c.x.x.w.XWikiAction - Uncaught exception: Error number 11015 in
>> 11:
>> >>> Exception while exporting
>> >>> com.xpn.xwiki.XWikiException: Error number 11015 in 11: Exception while
>> >>> exporting
>> >>> at com.xpn.xwiki.web.ExportAction.render(ExportAction.java:84)
>> >>> ~[xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>> >>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:417)
>> >>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>> >>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:184)
>> >>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>> >>> at
>> >>>
>> org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:425)
>> >>> [struts-core-1.3.10.jar:1.3.10]
>> >>> at
>> >>>
>> org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:228)
>> >>> [struts-core-1.3.10.jar:1.3.10]
>> >>> at
>> org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
>> >>> [struts-core-1.3.10.jar:1.3.10]
>> >>> at
>> org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
>> >>> [struts-core-1.3.10.jar:1.3.10]
>> >>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
>> >>> [servlet-api.jar:na]
>> >>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
>> >>> [servlet-api.jar:na]
>> >>> at
>> >>>
>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:291)
>> >>> [catalina.jar:8.0.30]
>> >>> at
>> >>>
>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>> >>> [catalina.jar:8.0.30]
>> >>> at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:115)
>> >>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>> >>> 

Re: [xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-22 Thread Peter John Acklam
Avoiding this problem in the future would be nice, but I already have this
character in my wiki, and I need to get rid of it. I don't know how it got
there, but more importantly, I need to find it, so I can remove it. With no
XAR export, we can't do our planned transision from an Oracle to a
PostgreSQL database.

As for the discussion on markmail.org – I have registered there, but I
can't find anything on the webpage that allows me to take part in the
discussion.

Cheers,
Peter


2016-02-22 12:15 GMT+01:00 Thomas Mortagne :

> Starting a discussion on this subject on
> http://markmail.org/message/32vnzxchphr26phh.
>
> If you have more input on what is this character doing here please share
> there.
>
> On Mon, Feb 22, 2016 at 11:55 AM, Thomas Mortagne
>  wrote:
> > Actually I do know why it's writting XML 1.0, that's because we tell it
> to...
> >
> > Did not know XML 1.0 was not supporting anything, I'm surprise we get
> > this kind of report only know.
> >
> > Anyway thanks for the report, will take care of this.
> >
> > On Mon, Feb 22, 2016 at 11:31 AM, Thomas Mortagne
> >  wrote:
> >> What I understand from the error message is that Woodstox think it's
> >> writing XML 1.0 and looks like it's not possible to put anything you
> >> want in XML 1.0 but not sure why exactly. You happen to have a
> >> document containing some weird character (0x1) which is probably a
> >> mistake but still we should be able to export anything (especially
> >> when this anything can be stored in a String and in the database).
> >>
> >> In the meantime what you can try is to set the old exporter in
> >> xwiki.cfg (look at xwiki.action.export.xar.usewikistream property).
> >> Would be great if you could crate an issue on http://jira.xwiki.org
> >> with all the information you can gather about this bug.
> >>
> >>
> >> On Mon, Feb 22, 2016 at 10:18 AM, Peter John Acklam 
> wrote:
> >>> I can no longer make a XAR export of our wiki. The essential error
> message
> >>> in catalina.out seems to be
> >>>
> >>> "Invalid white space character (0x1) in text to output (in xml 1.1,
> could
> >>> output as a character entity)"
> >>>
> >>> Alas, there is no information about which wiki page contains this
> invalid
> >>> character. I can, of course, export parts of the wiki and repeat the
> >>> process until I find the offending page, but I suspect there has got
> to be
> >>> a more efficient way.
> >>>
> >>> The full, relevant section of catalina.out on our test server is
> included
> >>> below.
> >>>
> >>> Thanks in advance for any tips!
> >>>
> >>> Cheers,
> >>> Peter John Acklam
> >>>
> >>>
> >>> 2016-02-19 09:36:17,163 [
> >>>
> http://wiki-test/xwiki/bin/export/XWiki/XWikiPreferences?editor=globaladmin=Export
> ]
> >>> WARN c.x.x.w.XWikiAction - Uncaught exception: Error number 11015 in
> 11:
> >>> Exception while exporting
> >>> com.xpn.xwiki.XWikiException: Error number 11015 in 11: Exception while
> >>> exporting
> >>> at com.xpn.xwiki.web.ExportAction.render(ExportAction.java:84)
> >>> ~[xwiki-platform-legacy-oldcore-7.4.1.jar:na]
> >>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:417)
> >>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
> >>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:184)
> >>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
> >>> at
> >>>
> org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:425)
> >>> [struts-core-1.3.10.jar:1.3.10]
> >>> at
> >>>
> org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:228)
> >>> [struts-core-1.3.10.jar:1.3.10]
> >>> at
> org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
> >>> [struts-core-1.3.10.jar:1.3.10]
> >>> at
> org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
> >>> [struts-core-1.3.10.jar:1.3.10]
> >>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
> >>> [servlet-api.jar:na]
> >>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
> >>> [servlet-api.jar:na]
> >>> at
> >>>
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:291)
> >>> [catalina.jar:8.0.30]
> >>> at
> >>>
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> >>> [catalina.jar:8.0.30]
> >>> at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:115)
> >>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
> >>> at
> >>>
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
> >>> [catalina.jar:8.0.30]
> >>> at
> >>>
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> >>> [catalina.jar:8.0.30]
> >>> at
> >>>
> org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:127)
> >>> [xwiki-platform-wysiwyg-server-7.4.1.jar:na]
> >>> at
> >>>
> 

Re: [xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-22 Thread Thomas Mortagne
Starting a discussion on this subject on
http://markmail.org/message/32vnzxchphr26phh.

If you have more input on what is this character doing here please share there.

On Mon, Feb 22, 2016 at 11:55 AM, Thomas Mortagne
 wrote:
> Actually I do know why it's writting XML 1.0, that's because we tell it to...
>
> Did not know XML 1.0 was not supporting anything, I'm surprise we get
> this kind of report only know.
>
> Anyway thanks for the report, will take care of this.
>
> On Mon, Feb 22, 2016 at 11:31 AM, Thomas Mortagne
>  wrote:
>> What I understand from the error message is that Woodstox think it's
>> writing XML 1.0 and looks like it's not possible to put anything you
>> want in XML 1.0 but not sure why exactly. You happen to have a
>> document containing some weird character (0x1) which is probably a
>> mistake but still we should be able to export anything (especially
>> when this anything can be stored in a String and in the database).
>>
>> In the meantime what you can try is to set the old exporter in
>> xwiki.cfg (look at xwiki.action.export.xar.usewikistream property).
>> Would be great if you could crate an issue on http://jira.xwiki.org
>> with all the information you can gather about this bug.
>>
>>
>> On Mon, Feb 22, 2016 at 10:18 AM, Peter John Acklam  
>> wrote:
>>> I can no longer make a XAR export of our wiki. The essential error message
>>> in catalina.out seems to be
>>>
>>> "Invalid white space character (0x1) in text to output (in xml 1.1, could
>>> output as a character entity)"
>>>
>>> Alas, there is no information about which wiki page contains this invalid
>>> character. I can, of course, export parts of the wiki and repeat the
>>> process until I find the offending page, but I suspect there has got to be
>>> a more efficient way.
>>>
>>> The full, relevant section of catalina.out on our test server is included
>>> below.
>>>
>>> Thanks in advance for any tips!
>>>
>>> Cheers,
>>> Peter John Acklam
>>>
>>>
>>> 2016-02-19 09:36:17,163 [
>>> http://wiki-test/xwiki/bin/export/XWiki/XWikiPreferences?editor=globaladmin=Export]
>>> WARN c.x.x.w.XWikiAction - Uncaught exception: Error number 11015 in 11:
>>> Exception while exporting
>>> com.xpn.xwiki.XWikiException: Error number 11015 in 11: Exception while
>>> exporting
>>> at com.xpn.xwiki.web.ExportAction.render(ExportAction.java:84)
>>> ~[xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:417)
>>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:184)
>>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>>> at
>>> org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:425)
>>> [struts-core-1.3.10.jar:1.3.10]
>>> at
>>> org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:228)
>>> [struts-core-1.3.10.jar:1.3.10]
>>> at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
>>> [struts-core-1.3.10.jar:1.3.10]
>>> at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
>>> [struts-core-1.3.10.jar:1.3.10]
>>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
>>> [servlet-api.jar:na]
>>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
>>> [servlet-api.jar:na]
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:291)
>>> [catalina.jar:8.0.30]
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>>> [catalina.jar:8.0.30]
>>> at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:115)
>>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
>>> [catalina.jar:8.0.30]
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>>> [catalina.jar:8.0.30]
>>> at
>>> org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:127)
>>> [xwiki-platform-wysiwyg-server-7.4.1.jar:na]
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
>>> [catalina.jar:8.0.30]
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>>> [catalina.jar:8.0.30]
>>> at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
>>> [tomcat-websocket.jar:8.0.30]
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
>>> [catalina.jar:8.0.30]
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>>> [catalina.jar:8.0.30]
>>> at
>>> org.xwiki.container.servlet.filters.internal.SetHTTPHeaderFilter.doFilter(SetHTTPHeaderFilter.java:63)
>>> [xwiki-platform-container-servlet-7.4.1.jar:na]
>>> at
>>> 

Re: [xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-22 Thread Thomas Mortagne
Actually I do know why it's writting XML 1.0, that's because we tell it to...

Did not know XML 1.0 was not supporting anything, I'm surprise we get
this kind of report only know.

Anyway thanks for the report, will take care of this.

On Mon, Feb 22, 2016 at 11:31 AM, Thomas Mortagne
 wrote:
> What I understand from the error message is that Woodstox think it's
> writing XML 1.0 and looks like it's not possible to put anything you
> want in XML 1.0 but not sure why exactly. You happen to have a
> document containing some weird character (0x1) which is probably a
> mistake but still we should be able to export anything (especially
> when this anything can be stored in a String and in the database).
>
> In the meantime what you can try is to set the old exporter in
> xwiki.cfg (look at xwiki.action.export.xar.usewikistream property).
> Would be great if you could crate an issue on http://jira.xwiki.org
> with all the information you can gather about this bug.
>
>
> On Mon, Feb 22, 2016 at 10:18 AM, Peter John Acklam  
> wrote:
>> I can no longer make a XAR export of our wiki. The essential error message
>> in catalina.out seems to be
>>
>> "Invalid white space character (0x1) in text to output (in xml 1.1, could
>> output as a character entity)"
>>
>> Alas, there is no information about which wiki page contains this invalid
>> character. I can, of course, export parts of the wiki and repeat the
>> process until I find the offending page, but I suspect there has got to be
>> a more efficient way.
>>
>> The full, relevant section of catalina.out on our test server is included
>> below.
>>
>> Thanks in advance for any tips!
>>
>> Cheers,
>> Peter John Acklam
>>
>>
>> 2016-02-19 09:36:17,163 [
>> http://wiki-test/xwiki/bin/export/XWiki/XWikiPreferences?editor=globaladmin=Export]
>> WARN c.x.x.w.XWikiAction - Uncaught exception: Error number 11015 in 11:
>> Exception while exporting
>> com.xpn.xwiki.XWikiException: Error number 11015 in 11: Exception while
>> exporting
>> at com.xpn.xwiki.web.ExportAction.render(ExportAction.java:84)
>> ~[xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:417)
>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:184)
>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>> at
>> org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:425)
>> [struts-core-1.3.10.jar:1.3.10]
>> at
>> org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:228)
>> [struts-core-1.3.10.jar:1.3.10]
>> at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
>> [struts-core-1.3.10.jar:1.3.10]
>> at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
>> [struts-core-1.3.10.jar:1.3.10]
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
>> [servlet-api.jar:na]
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
>> [servlet-api.jar:na]
>> at
>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:291)
>> [catalina.jar:8.0.30]
>> at
>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>> [catalina.jar:8.0.30]
>> at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:115)
>> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
>> at
>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
>> [catalina.jar:8.0.30]
>> at
>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>> [catalina.jar:8.0.30]
>> at
>> org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:127)
>> [xwiki-platform-wysiwyg-server-7.4.1.jar:na]
>> at
>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
>> [catalina.jar:8.0.30]
>> at
>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>> [catalina.jar:8.0.30]
>> at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
>> [tomcat-websocket.jar:8.0.30]
>> at
>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
>> [catalina.jar:8.0.30]
>> at
>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>> [catalina.jar:8.0.30]
>> at
>> org.xwiki.container.servlet.filters.internal.SetHTTPHeaderFilter.doFilter(SetHTTPHeaderFilter.java:63)
>> [xwiki-platform-container-servlet-7.4.1.jar:na]
>> at
>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
>> [catalina.jar:8.0.30]
>> at
>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>> [catalina.jar:8.0.30]
>> at
>> com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:66)
>> [xwiki-platform-webdav-server-7.4.1.jar:na]
>> at

Re: [xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-22 Thread Thomas Mortagne
What I understand from the error message is that Woodstox think it's
writing XML 1.0 and looks like it's not possible to put anything you
want in XML 1.0 but not sure why exactly. You happen to have a
document containing some weird character (0x1) which is probably a
mistake but still we should be able to export anything (especially
when this anything can be stored in a String and in the database).

In the meantime what you can try is to set the old exporter in
xwiki.cfg (look at xwiki.action.export.xar.usewikistream property).
Would be great if you could crate an issue on http://jira.xwiki.org
with all the information you can gather about this bug.


On Mon, Feb 22, 2016 at 10:18 AM, Peter John Acklam  wrote:
> I can no longer make a XAR export of our wiki. The essential error message
> in catalina.out seems to be
>
> "Invalid white space character (0x1) in text to output (in xml 1.1, could
> output as a character entity)"
>
> Alas, there is no information about which wiki page contains this invalid
> character. I can, of course, export parts of the wiki and repeat the
> process until I find the offending page, but I suspect there has got to be
> a more efficient way.
>
> The full, relevant section of catalina.out on our test server is included
> below.
>
> Thanks in advance for any tips!
>
> Cheers,
> Peter John Acklam
>
>
> 2016-02-19 09:36:17,163 [
> http://wiki-test/xwiki/bin/export/XWiki/XWikiPreferences?editor=globaladmin=Export]
> WARN c.x.x.w.XWikiAction - Uncaught exception: Error number 11015 in 11:
> Exception while exporting
> com.xpn.xwiki.XWikiException: Error number 11015 in 11: Exception while
> exporting
> at com.xpn.xwiki.web.ExportAction.render(ExportAction.java:84)
> ~[xwiki-platform-legacy-oldcore-7.4.1.jar:na]
> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:417)
> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:184)
> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
> at
> org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:425)
> [struts-core-1.3.10.jar:1.3.10]
> at
> org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:228)
> [struts-core-1.3.10.jar:1.3.10]
> at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
> [struts-core-1.3.10.jar:1.3.10]
> at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
> [struts-core-1.3.10.jar:1.3.10]
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
> [servlet-api.jar:na]
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
> [servlet-api.jar:na]
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:291)
> [catalina.jar:8.0.30]
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> [catalina.jar:8.0.30]
> at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:115)
> [xwiki-platform-legacy-oldcore-7.4.1.jar:na]
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
> [catalina.jar:8.0.30]
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> [catalina.jar:8.0.30]
> at
> org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:127)
> [xwiki-platform-wysiwyg-server-7.4.1.jar:na]
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
> [catalina.jar:8.0.30]
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> [catalina.jar:8.0.30]
> at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
> [tomcat-websocket.jar:8.0.30]
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
> [catalina.jar:8.0.30]
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> [catalina.jar:8.0.30]
> at
> org.xwiki.container.servlet.filters.internal.SetHTTPHeaderFilter.doFilter(SetHTTPHeaderFilter.java:63)
> [xwiki-platform-container-servlet-7.4.1.jar:na]
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
> [catalina.jar:8.0.30]
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> [catalina.jar:8.0.30]
> at
> com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:66)
> [xwiki-platform-webdav-server-7.4.1.jar:na]
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
> [catalina.jar:8.0.30]
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> [catalina.jar:8.0.30]
> at
> org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:208)
> [xwiki-platform-container-servlet-7.4.1.jar:na]
> at
> 

[xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-22 Thread Peter John Acklam
I can no longer make a XAR export of our wiki. The essential error message
in catalina.out seems to be

"Invalid white space character (0x1) in text to output (in xml 1.1, could
output as a character entity)"

Alas, there is no information about which wiki page contains this invalid
character. I can, of course, export parts of the wiki and repeat the
process until I find the offending page, but I suspect there has got to be
a more efficient way.

The full, relevant section of catalina.out on our test server is included
below.

Thanks in advance for any tips!

Cheers,
Peter John Acklam


2016-02-19 09:36:17,163 [
http://wiki-test/xwiki/bin/export/XWiki/XWikiPreferences?editor=globaladmin=Export]
WARN c.x.x.w.XWikiAction - Uncaught exception: Error number 11015 in 11:
Exception while exporting
com.xpn.xwiki.XWikiException: Error number 11015 in 11: Exception while
exporting
at com.xpn.xwiki.web.ExportAction.render(ExportAction.java:84)
~[xwiki-platform-legacy-oldcore-7.4.1.jar:na]
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:417)
[xwiki-platform-legacy-oldcore-7.4.1.jar:na]
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:184)
[xwiki-platform-legacy-oldcore-7.4.1.jar:na]
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:425)
[struts-core-1.3.10.jar:1.3.10]
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:228)
[struts-core-1.3.10.jar:1.3.10]
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
[struts-core-1.3.10.jar:1.3.10]
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
[struts-core-1.3.10.jar:1.3.10]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
[servlet-api.jar:na]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
[servlet-api.jar:na]
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:291)
[catalina.jar:8.0.30]
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
[catalina.jar:8.0.30]
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:115)
[xwiki-platform-legacy-oldcore-7.4.1.jar:na]
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
[catalina.jar:8.0.30]
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
[catalina.jar:8.0.30]
at
org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:127)
[xwiki-platform-wysiwyg-server-7.4.1.jar:na]
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
[catalina.jar:8.0.30]
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
[catalina.jar:8.0.30]
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
[tomcat-websocket.jar:8.0.30]
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
[catalina.jar:8.0.30]
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
[catalina.jar:8.0.30]
at
org.xwiki.container.servlet.filters.internal.SetHTTPHeaderFilter.doFilter(SetHTTPHeaderFilter.java:63)
[xwiki-platform-container-servlet-7.4.1.jar:na]
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
[catalina.jar:8.0.30]
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
[catalina.jar:8.0.30]
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:66)
[xwiki-platform-webdav-server-7.4.1.jar:na]
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
[catalina.jar:8.0.30]
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
[catalina.jar:8.0.30]
at
org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:208)
[xwiki-platform-container-servlet-7.4.1.jar:na]
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
[catalina.jar:8.0.30]
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
[catalina.jar:8.0.30]
at
org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:111)
[xwiki-platform-container-servlet-7.4.1.jar:na]
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
[catalina.jar:8.0.30]
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
[catalina.jar:8.0.30]
at
org.xwiki.resource.servlet.RoutingFilter.doFilter(RoutingFilter.java:137)
[xwiki-platform-resource-servlet-7.4.1.jar:na]
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
[catalina.jar:8.0.30]
at