Re: [xwiki-users] Tomcat Error number 11007

2017-02-07 Thread Martin Molhanec
I had the same error 11007 yesterday. In my case help me this information:

The order is important and as indicated in the error the order is:
 first and then . 

Martin

###
Martin Molhanec M.Sc., Ph.D., Assistant Professor
Czech Technical University in Prague, Faculty of Electrical Engineering, 
Department of e-Technology
Technická 2, 166 27  Prague 6, Czech Republic
###

-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of Sergiu Dumitriu
Sent: Tuesday, February 7, 2017 5:29 AM
To: XWiki Users
Subject: Re: [xwiki-users] Tomcat Error number 11007

On 02/06/2017 09:26 PM, Oliver Angélil wrote:
> The full exception report is pasted below.
> 
> I've followed the tomcat
> <http://platform.xwiki.org/xwiki/bin/view/AdminGuide/InstallationTomca
> t>
>  and mysql
> <http://platform.xwiki.org/xwiki/bin/view/AdminGuide/InstallationMySQL
> >
> installation
> instructions. I can see the tomcat homepage when navigating to h 
> ttp://192.168.1.8:8080/ in my browser, however 
> http://192.168.1.8:8080/xwiki-enterprise-web-8.4.4/bin/view/Main 
> results in the error attached.

The root cause:

> *root cause*
> 
> org.xml.sax.SAXParseException; lineNumber: 237; columnNumber: 21; The 
> content of element type "session-factory" must match 
> "(property*,mapping*,(class-cache|collection-cache)*,event*,listener*)".

Indicates that the hibernate.cfg.xml file is malformed, make sure you 
uncommented the mysql configuration properly, and you commented the default 
connection.

--
Sergiu Dumitriu
http://purl.org/net/sergiu/



Re: [xwiki-users] blog rss headers enumeration

2008-09-03 Thread Martin Molhanec


OK, I have found a resolution. I put $xwiki.flushCache() at the start of my
code and all is right.
Martin


Martin Molhanec wrote:
 
 Hello, I have written the following testing code:
 Purpose is to enumarate the headers in my blog, I want to create an XWiki
 panel which will show the headers from my blog.
 
 #set($myblogsite=http://andrea4.feld.cvut.cz:8080/xwiki/bin/view/Main/BlogRss?xpage=rdf;)
 #set($myfeed=$xwiki.feed.getFeed($myblogsite))
 Title of blog: ${myfeed.getTitle()}\\
 Link to blog site: ${myfeed.getLink()}\\
 Link to blog: $myblogsite
 #set($myfeedEntries=$myfeed.getEntries())
 #set($_i=0)
 #foreach ($item in $myfeedEntries)
   #set($_i=$_i+1)
 Item: $_i)\\
 Title: $item.getTitle()\\
 Contents:($item.getDescription().value)\\
 #end
 \\Sum: $_i message(s)\\
 
 {rss:feed=$myblogsite|full=true}
 
 The testing page is here:
 http://andrea4.feld.cvut.cz:8080/xwiki/bin/view/Sandbox/pokus4
 and here
 http://andrea4.feld.cvut.cz:8080/xwiki/bin/view/Sandbox/pokus3
 
 Interestingly my own blog has 3 messages and I can enumerate only one. 
 But, test with the blog from xwiki.com is right.
 Any help?
 
 

-- 
View this message in context: 
http://n2.nabble.com/blog-rss-headers-enumeration-tp794045p835955.html
Sent from the XWiki- Users mailing list archive at Nabble.com.

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


Re: [xwiki-users] blog rss headers enumeration

2008-09-02 Thread Martin Molhanec

OK, no one answered me yet :-( But I discover a matter.
When I restarted Tomcat, I can see all messages at once. Probably a matter
of caching?
How it is possible to disable a cache for blog before I execute a command
getFeed()?
Yes, it is a very strange behavior  :-( Help me!
So no one have made a panel with blog/rss headers yet?
-- 
View this message in context: 
http://n2.nabble.com/blog-rss-headers-enumeration-tp794045p833867.html
Sent from the XWiki- Users mailing list archive at Nabble.com.

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


Re: [xwiki-users] blog rss headers enumeration

2008-09-01 Thread Martin Molhanec

Yes, very strange. Something more about my problem. I have now this code:

#set($feed=$xwiki.feed.getFeed(http://andrea4.feld.cvut.cz:8080/xwiki/bin/view/Main/BlogRss?xpage=rdf;))
Počet: $feed.entries.size()\\
\\
#foreach($entryIndex in [0..9])
 #if($entryIndex$feed.entries.size())
  #set($entry=$!feed.entries.get($entryIndex))
 
#set($fullTitle=$entry.title.replaceAll(',\\\').replaceAll('','\\\'))
  #if ($fullTitle.length()$maxTitleLen)
   #set($myDisplayTitle=$fullTitle.substring(0,$maxTitleLen)...)
  #else
   #set($myDisplayTitle=$entry.title)
  #end
Date:  $entry.publishedDate\\
FullTitle:  $fullTitle\\
Link:  $entry.link\\
Title:  $myDisplayTitle\\
 #else
  div class=feedItem /div
 #end
\\
#end

{rss:feed=http://andrea4.feld.cvut.cz:8080/xwiki/bin/view/Main/BlogRss?xpage=rdf|full=true}

Here: http://andrea4.feld.cvut.cz:8080/xwiki/bin/view/Sandbox/pokus6
the result is only one item and it is wrong
but here: http://xena4.feld.cvut.cz:8080/xwiki/bin/view/Sandbox/pokus
the result is all three items, it is right.
The code is same, only differ the location of the code. 
Any help?
Thanx.






Martin Molhanec wrote:
 
 Hello, I have written the following testing code:
 Purpose is to enumarate the headers in my blog, I want to create an XWiki
 panel which will show the headers from my blog.
 
 #set($myblogsite=http://andrea4.feld.cvut.cz:8080/xwiki/bin/view/Main/BlogRss?xpage=rdf;)
 #set($myfeed=$xwiki.feed.getFeed($myblogsite))
 Title of blog: ${myfeed.getTitle()}\\
 Link to blog site: ${myfeed.getLink()}\\
 Link to blog: $myblogsite
 #set($myfeedEntries=$myfeed.getEntries())
 #set($_i=0)
 #foreach ($item in $myfeedEntries)
   #set($_i=$_i+1)
 Item: $_i)\\
 Title: $item.getTitle()\\
 Contents:($item.getDescription().value)\\
 #end
 \\Sum: $_i message(s)\\
 
 {rss:feed=$myblogsite|full=true}
 
 The testing page is here:
 http://andrea4.feld.cvut.cz:8080/xwiki/bin/view/Sandbox/pokus4
 and here
 http://andrea4.feld.cvut.cz:8080/xwiki/bin/view/Sandbox/pokus3
 
 Interestingly my own blog has 3 messages and I can enumerate only one. 
 But, test with the blog from xwiki.com is right.
 Any help?
 
 

-- 
View this message in context: 
http://n2.nabble.com/blog-rss-headers-enumeration-tp794045p796968.html
Sent from the XWiki- Users mailing list archive at Nabble.com.

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