|
From: Mathieu M. <mat...@gm...> - 2010-01-05 10:51:21
|
Hi,
I've been following bimserver progress since september and must say
that it is impressive ! So impressive that we decided to use it
inhouse to make our ifc software able to communicate with it :-)
I just downloaded the bimserver-0.8.war and installed in on a fresh
tomcat6 installation on a ubuntu 9.10 computer.
I had to add
grant {
permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
};
to the /etc/tomcat6/policy.d/04webapps.policy file in order for the
webapp to start and see the login screen. But I have the same
NullPointerException than reported earlier, after reading the login
issues replies on the mailing list, I found out that I do not have a
database folder/file created under my WEB-INF folder.
I went through the logs and discovered that when the webapp starts, it
has another kind of NullPointerException when trying to get the schema
from the Ifc schema file.
>From the log it seems that the IFC file is found but somehow not parsed...
Any ideas ?
==> /var/lib/tomcat6/logs/catalina.2010-01-05.log <==
5 janv. 2010 11:11:58 org.bimserver.ServerInitializer contextInitialized
INFO: Starting ServerInitializer
5 janv. 2010 11:11:58 org.bimserver.ServerInitializer loadIfcSchema
INFO: IFC-Schema file found
5 janv. 2010 11:11:58 org.bimserver.ServerInitializer contextInitialized
SEVERE:
java.lang.NullPointerException
at nl.tue.buildingsmart.express.parser.ExpressSchemaParser.getSchema(ExpressSchemaParser.java:106)
at org.bimserver.ServerInitializer.loadIfcSchema(ServerInitializer.java:207)
at org.bimserver.ServerInitializer.contextInitialized(ServerInitializer.java:77)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3934)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4429)
at org.apache.catalina.core.StandardContext.reload(StandardContext.java:3190)
at org.apache.catalina.manager.ManagerServlet.reload(ManagerServlet.java:918)
at org.apache.catalina.manager.HTMLManagerServlet.reload(HTMLManagerServlet.java:544)
at org.apache.catalina.manager.HTMLManagerServlet.doGet(HTMLManagerServlet.java:121)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at sun.reflect.GeneratedMethodAccessor30.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:269)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:301)
at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:283)
at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:56)
at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:189)
at java.security.AccessController.doPrivileged(Native Method)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:525)
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:293)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454)
at java.lang.Thread.run(Thread.java:619)
Best regards,
--
Mathieu
O< ascii ribbon campaign - stop html mail - www.asciiribbon.org
|
|
From: Ruben de L. <ru...@rd...> - 2010-01-07 12:54:04
|
Hello Mathieu,
It is strange that the BIMserver can find the schema file, but not parse it.
If I send you a version of the server that is more verbose about the
parsing of the schema file, would you be able to try that version and
send me the results?
Kind regards,
Ruben de Laat
On Tue, Jan 5, 2010 at 11:51 AM, Mathieu MARACHE
<mat...@gm...> wrote:
> Hi,
>
> I've been following bimserver progress since september and must say
> that it is impressive ! So impressive that we decided to use it
> inhouse to make our ifc software able to communicate with it :-)
>
> I just downloaded the bimserver-0.8.war and installed in on a fresh
> tomcat6 installation on a ubuntu 9.10 computer.
>
> I had to add
> grant {
> permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
> };
>
> to the /etc/tomcat6/policy.d/04webapps.policy file in order for the
> webapp to start and see the login screen. But I have the same
> NullPointerException than reported earlier, after reading the login
> issues replies on the mailing list, I found out that I do not have a
> database folder/file created under my WEB-INF folder.
>
> I went through the logs and discovered that when the webapp starts, it
> has another kind of NullPointerException when trying to get the schema
> from the Ifc schema file.
>
> >From the log it seems that the IFC file is found but somehow not parsed...
>
> Any ideas ?
>
>
>
> ==> /var/lib/tomcat6/logs/catalina.2010-01-05.log <==
> 5 janv. 2010 11:11:58 org.bimserver.ServerInitializer contextInitialized
> INFO: Starting ServerInitializer
> 5 janv. 2010 11:11:58 org.bimserver.ServerInitializer loadIfcSchema
> INFO: IFC-Schema file found
> 5 janv. 2010 11:11:58 org.bimserver.ServerInitializer contextInitialized
> SEVERE:
> java.lang.NullPointerException
> at nl.tue.buildingsmart.express.parser.ExpressSchemaParser.getSchema(ExpressSchemaParser.java:106)
> at org.bimserver.ServerInitializer.loadIfcSchema(ServerInitializer.java:207)
> at org.bimserver.ServerInitializer.contextInitialized(ServerInitializer.java:77)
> at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3934)
> at org.apache.catalina.core.StandardContext.start(StandardContext.java:4429)
> at org.apache.catalina.core.StandardContext.reload(StandardContext.java:3190)
> at org.apache.catalina.manager.ManagerServlet.reload(ManagerServlet.java:918)
> at org.apache.catalina.manager.HTMLManagerServlet.reload(HTMLManagerServlet.java:544)
> at org.apache.catalina.manager.HTMLManagerServlet.doGet(HTMLManagerServlet.java:121)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
> at sun.reflect.GeneratedMethodAccessor30.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:269)
> at java.security.AccessController.doPrivileged(Native Method)
> at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
> at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:301)
> at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:283)
> at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:56)
> at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:189)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
> at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
> at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
> at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:525)
> 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:293)
> at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849)
> at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
> at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454)
> at java.lang.Thread.run(Thread.java:619)
>
>
> Best regards,
> --
> Mathieu
> O< ascii ribbon campaign - stop html mail - www.asciiribbon.org
>
> ------------------------------------------------------------------------------
> This SF.Net email is sponsored by the Verizon Developer Community
> Take advantage of Verizon's best-in-class app development support
> A streamlined, 14 day to market process makes app distribution fast and easy
> Join now and get one step closer to millions of Verizon customers
> http://p.sf.net/sfu/verizon-dev2dev
> _______________________________________________
> Bimserver-users mailing list
> Bim...@li...
> https://lists.sourceforge.net/lists/listinfo/bimserver-users
>
|
|
From: Mathieu M. <mat...@gm...> - 2010-01-07 17:48:51
|
Hi Ruben,
Sure I would gladly help you understand my issues by any means you
find useful.
Kind regards,
Mathieu
Le 7 janv. 2010 à 12:59, Ruben de Laat <ru...@rd...> a
écrit :
> Hello Mathieu,
>
> It is strange that the BIMserver can find the schema file, but not
> parse it.
> If I send you a version of the server that is more verbose about the
> parsing of the schema file, would you be able to try that version and
> send me the results?
>
> Kind regards,
> Ruben de Laat
>
> On Tue, Jan 5, 2010 at 11:51 AM, Mathieu MARACHE
> <mat...@gm...> wrote:
>> Hi,
>>
>> I've been following bimserver progress since september and must say
>> that it is impressive ! So impressive that we decided to use it
>> inhouse to make our ifc software able to communicate with it :-)
>>
>> I just downloaded the bimserver-0.8.war and installed in on a fresh
>> tomcat6 installation on a ubuntu 9.10 computer.
>>
>> I had to add
>> grant {
>> permission java.lang.reflect.ReflectPermission
>> "suppressAccessChecks";
>> };
>>
>> to the /etc/tomcat6/policy.d/04webapps.policy file in order for the
>> webapp to start and see the login screen. But I have the same
>> NullPointerException than reported earlier, after reading the login
>> issues replies on the mailing list, I found out that I do not have a
>> database folder/file created under my WEB-INF folder.
>>
>> I went through the logs and discovered that when the webapp starts,
>> it
>> has another kind of NullPointerException when trying to get the
>> schema
>> from the Ifc schema file.
>>
>>> From the log it seems that the IFC file is found but somehow not
>>> parsed...
>>
>> Any ideas ?
>>
>>
>>
>> ==> /var/lib/tomcat6/logs/catalina.2010-01-05.log <==
>> 5 janv. 2010 11:11:58 org.bimserver.ServerInitializer
>> contextInitialized
>> INFO: Starting ServerInitializer
>> 5 janv. 2010 11:11:58 org.bimserver.ServerInitializer loadIfcSchema
>> INFO: IFC-Schema file found
>> 5 janv. 2010 11:11:58 org.bimserver.ServerInitializer
>> contextInitialized
>> SEVERE:
>> java.lang.NullPointerException
>> at
>> nl.tue.buildingsmart.express.parser.ExpressSchemaParser.getSchema
>> (ExpressSchemaParser.java:106)
>> at org.bimserver.ServerInitializer.loadIfcSchema
>> (ServerInitializer.java:207)
>> at org.bimserver.ServerInitializer.contextInitialized
>> (ServerInitializer.java:77)
>> at org.apache.catalina.core.StandardContext.listenerStart
>> (StandardContext.java:3934)
>> at org.apache.catalina.core.StandardContext.start
>> (StandardContext.java:4429)
>> at org.apache.catalina.core.StandardContext.reload
>> (StandardContext.java:3190)
>> at org.apache.catalina.manager.ManagerServlet.reload
>> (ManagerServlet.java:918)
>> at org.apache.catalina.manager.HTMLManagerServlet.reload
>> (HTMLManagerServlet.java:544)
>> at org.apache.catalina.manager.HTMLManagerServlet.doGet
>> (HTMLManagerServlet.java:121)
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:
>> 617)
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:
>> 717)
>> at sun.reflect.GeneratedMethodAccessor30.invoke(Unknown
>> Source)
>> at sun.reflect.DelegatingMethodAccessorImpl.invoke
>> (DelegatingMethodAccessorImpl.java:25)
>> at java.lang.reflect.Method.invoke(Method.java:597)
>> at org.apache.catalina.security.SecurityUtil$1.run
>> (SecurityUtil.java:269)
>> at java.security.AccessController.doPrivileged(Native Method)
>> at javax.security.auth.Subject.doAsPrivileged(Subject.java:
>> 517)
>> at org.apache.catalina.security.SecurityUtil.execute
>> (SecurityUtil.java:301)
>> at org.apache.catalina.security.SecurityUtil.doAsPrivilege
>> (SecurityUtil.java:162)
>> at
>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter
>> (ApplicationFilterChain.java:283)
>> at org.apache.catalina.core.ApplicationFilterChain.access$000
>> (ApplicationFilterChain.java:56)
>> at org.apache.catalina.core.ApplicationFilterChain$1.run
>> (ApplicationFilterChain.java:189)
>> at java.security.AccessController.doPrivileged(Native Method)
>> at org.apache.catalina.core.ApplicationFilterChain.doFilter
>> (ApplicationFilterChain.java:185)
>> at org.apache.catalina.core.StandardWrapperValve.invoke
>> (StandardWrapperValve.java:233)
>> at org.apache.catalina.core.StandardContextValve.invoke
>> (StandardContextValve.java:191)
>> at org.apache.catalina.authenticator.AuthenticatorBase.invoke
>> (AuthenticatorBase.java:525)
>> 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:293)
>> at org.apache.coyote.http11.Http11Processor.process
>> (Http11Processor.java:849)
>> at org.apache.coyote.http11.Http11Protocol
>> $Http11ConnectionHandler.process(Http11Protocol.java:583)
>> at org.apache.tomcat.util.net.JIoEndpoint$Worker.run
>> (JIoEndpoint.java:454)
>> at java.lang.Thread.run(Thread.java:619)
>>
>>
>> Best regards,
>> --
>> Mathieu
>> O< ascii ribbon campaign - stop html mail - www.asciiribbon.org
>>
>> ---
>> ---
>> ---
>> ---------------------------------------------------------------------
>> This SF.Net email is sponsored by the Verizon Developer Community
>> Take advantage of Verizon's best-in-class app development support
>> A streamlined, 14 day to market process makes app distribution fast
>> and easy
>> Join now and get one step closer to millions of Verizon customers
>> http://p.sf.net/sfu/verizon-dev2dev
>> _______________________________________________
>> Bimserver-users mailing list
>> Bim...@li...
>> https://lists.sourceforge.net/lists/listinfo/bimserver-users
>>
>
> ---
> ---
> ---
> ---------------------------------------------------------------------
> This SF.Net email is sponsored by the Verizon Developer Community
> Take advantage of Verizon's best-in-class app development support
> A streamlined, 14 day to market process makes app distribution fast
> and easy
> Join now and get one step closer to millions of Verizon customers
> http://p.sf.net/sfu/verizon-dev2dev
> _______________________________________________
> Bimserver-users mailing list
> Bim...@li...
> https://lists.sourceforge.net/lists/listinfo/bimserver-users
|
|
From: Ruben de L. <ru...@rd...> - 2010-01-08 13:10:17
|
Hi Mathieu, Thanks for helping. I have prepared a new war file which should hopefully tell us what the problem is. You can download it at: http://tools.bimtoolset.org/BIMServer/latest%20nightlybuild/20100108_bimserver.test.war Please let me know what the results are. Kind regards, Ruben de Laat On Thu, Jan 7, 2010 at 6:47 PM, Mathieu Marache <mat...@gm...> wrote: > Hi Ruben, > > Sure I would gladly help you understand my issues by any means you > find useful. > > Kind regards, > Mathieu > > > Le 7 janv. 2010 à 12:59, Ruben de Laat <ru...@rd...> a > écrit : > >> Hello Mathieu, >> >> It is strange that the BIMserver can find the schema file, but not >> parse it. >> If I send you a version of the server that is more verbose about the >> parsing of the schema file, would you be able to try that version and >> send me the results? >> >> Kind regards, >> Ruben de Laat >> >> On Tue, Jan 5, 2010 at 11:51 AM, Mathieu MARACHE >> <mat...@gm...> wrote: >>> Hi, >>> >>> I've been following bimserver progress since september and must say >>> that it is impressive ! So impressive that we decided to use it >>> inhouse to make our ifc software able to communicate with it :-) >>> >>> I just downloaded the bimserver-0.8.war and installed in on a fresh >>> tomcat6 installation on a ubuntu 9.10 computer. >>> >>> I had to add >>> grant { >>> permission java.lang.reflect.ReflectPermission >>> "suppressAccessChecks"; >>> }; >>> >>> to the /etc/tomcat6/policy.d/04webapps.policy file in order for the >>> webapp to start and see the login screen. But I have the same >>> NullPointerException than reported earlier, after reading the login >>> issues replies on the mailing list, I found out that I do not have a >>> database folder/file created under my WEB-INF folder. >>> >>> I went through the logs and discovered that when the webapp starts, >>> it >>> has another kind of NullPointerException when trying to get the >>> schema >>> from the Ifc schema file. >>> >>>> From the log it seems that the IFC file is found but somehow not >>>> parsed... >>> >>> Any ideas ? >>> >>> >>> >>> ==> /var/lib/tomcat6/logs/catalina.2010-01-05.log <== >>> 5 janv. 2010 11:11:58 org.bimserver.ServerInitializer >>> contextInitialized >>> INFO: Starting ServerInitializer >>> 5 janv. 2010 11:11:58 org.bimserver.ServerInitializer loadIfcSchema >>> INFO: IFC-Schema file found >>> 5 janv. 2010 11:11:58 org.bimserver.ServerInitializer >>> contextInitialized >>> SEVERE: >>> java.lang.NullPointerException >>> at >>> nl.tue.buildingsmart.express.parser.ExpressSchemaParser.getSchema >>> (ExpressSchemaParser.java:106) >>> at org.bimserver.ServerInitializer.loadIfcSchema >>> (ServerInitializer.java:207) >>> at org.bimserver.ServerInitializer.contextInitialized >>> (ServerInitializer.java:77) >>> at org.apache.catalina.core.StandardContext.listenerStart >>> (StandardContext.java:3934) >>> at org.apache.catalina.core.StandardContext.start >>> (StandardContext.java:4429) >>> at org.apache.catalina.core.StandardContext.reload >>> (StandardContext.java:3190) >>> at org.apache.catalina.manager.ManagerServlet.reload >>> (ManagerServlet.java:918) >>> at org.apache.catalina.manager.HTMLManagerServlet.reload >>> (HTMLManagerServlet.java:544) >>> at org.apache.catalina.manager.HTMLManagerServlet.doGet >>> (HTMLManagerServlet.java:121) >>> at javax.servlet.http.HttpServlet.service(HttpServlet.java: >>> 617) >>> at javax.servlet.http.HttpServlet.service(HttpServlet.java: >>> 717) >>> at sun.reflect.GeneratedMethodAccessor30.invoke(Unknown >>> Source) >>> at sun.reflect.DelegatingMethodAccessorImpl.invoke >>> (DelegatingMethodAccessorImpl.java:25) >>> at java.lang.reflect.Method.invoke(Method.java:597) >>> at org.apache.catalina.security.SecurityUtil$1.run >>> (SecurityUtil.java:269) >>> at java.security.AccessController.doPrivileged(Native Method) >>> at javax.security.auth.Subject.doAsPrivileged(Subject.java: >>> 517) >>> at org.apache.catalina.security.SecurityUtil.execute >>> (SecurityUtil.java:301) >>> at org.apache.catalina.security.SecurityUtil.doAsPrivilege >>> (SecurityUtil.java:162) >>> at >>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter >>> (ApplicationFilterChain.java:283) >>> at org.apache.catalina.core.ApplicationFilterChain.access$000 >>> (ApplicationFilterChain.java:56) >>> at org.apache.catalina.core.ApplicationFilterChain$1.run >>> (ApplicationFilterChain.java:189) >>> at java.security.AccessController.doPrivileged(Native Method) >>> at org.apache.catalina.core.ApplicationFilterChain.doFilter >>> (ApplicationFilterChain.java:185) >>> at org.apache.catalina.core.StandardWrapperValve.invoke >>> (StandardWrapperValve.java:233) >>> at org.apache.catalina.core.StandardContextValve.invoke >>> (StandardContextValve.java:191) >>> at org.apache.catalina.authenticator.AuthenticatorBase.invoke >>> (AuthenticatorBase.java:525) >>> 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:293) >>> at org.apache.coyote.http11.Http11Processor.process >>> (Http11Processor.java:849) >>> at org.apache.coyote.http11.Http11Protocol >>> $Http11ConnectionHandler.process(Http11Protocol.java:583) >>> at org.apache.tomcat.util.net.JIoEndpoint$Worker.run >>> (JIoEndpoint.java:454) >>> at java.lang.Thread.run(Thread.java:619) >>> >>> >>> Best regards, >>> -- >>> Mathieu >>> O< ascii ribbon campaign - stop html mail - www.asciiribbon.org >>> >>> --- >>> --- >>> --- >>> --------------------------------------------------------------------- >>> This SF.Net email is sponsored by the Verizon Developer Community >>> Take advantage of Verizon's best-in-class app development support >>> A streamlined, 14 day to market process makes app distribution fast >>> and easy >>> Join now and get one step closer to millions of Verizon customers >>> http://p.sf.net/sfu/verizon-dev2dev >>> _______________________________________________ >>> Bimserver-users mailing list >>> Bim...@li... >>> https://lists.sourceforge.net/lists/listinfo/bimserver-users >>> >> >> --- >> --- >> --- >> --------------------------------------------------------------------- >> This SF.Net email is sponsored by the Verizon Developer Community >> Take advantage of Verizon's best-in-class app development support >> A streamlined, 14 day to market process makes app distribution fast >> and easy >> Join now and get one step closer to millions of Verizon customers >> http://p.sf.net/sfu/verizon-dev2dev >> _______________________________________________ >> Bimserver-users mailing list >> Bim...@li... >> https://lists.sourceforge.net/lists/listinfo/bimserver-users > > ------------------------------------------------------------------------------ > This SF.Net email is sponsored by the Verizon Developer Community > Take advantage of Verizon's best-in-class app development support > A streamlined, 14 day to market process makes app distribution fast and easy > Join now and get one step closer to millions of Verizon customers > http://p.sf.net/sfu/verizon-dev2dev > _______________________________________________ > Bimserver-users mailing list > Bim...@li... > https://lists.sourceforge.net/lists/listinfo/bimserver-users > |
|
From: Mathieu M. <mat...@gm...> - 2010-01-08 14:00:10
Attachments:
bimserver-test.zip
|
Hi Ruben, Here are the log files and the tree listing of files after a successful deploy and unsuccessful login Kinds regards, Mathieu Le 8 janv. 10 à 14:10, Ruben de Laat a écrit : > Hi Mathieu, > > Thanks for helping. I have prepared a new war file which should > hopefully tell us what the problem is. > You can download it at: > http://tools.bimtoolset.org/BIMServer/latest%20nightlybuild/20100108_bimserver.test.war > > Please let me know what the results are. > > Kind regards, > Ruben de Laat Mathieu |
|
From: Ruben de L. <ru...@rd...> - 2010-01-08 14:09:40
|
Hello Mathieu,
This still looks like there are not sufficient rights to read files
from the bimserver context.
Can you try with a permission file containing:
grant {
permission java.security.AllPermission;
};
I think that will solve the problem with loading the schema file.
Kind regards,
Ruben
On Fri, Jan 8, 2010 at 2:59 PM, Mathieu Marache
<mat...@gm...> wrote:
> Hi Ruben,
>
> Here are the log files and the tree listing of files after a successful
> deploy and unsuccessful login
>
> Kinds regards,
> Mathieu
>
> Le 8 janv. 10 à 14:10, Ruben de Laat a écrit :
>
>> Hi Mathieu,
>>
>> Thanks for helping. I have prepared a new war file which should
>> hopefully tell us what the problem is.
>> You can download it at:
>>
>> http://tools.bimtoolset.org/BIMServer/latest%20nightlybuild/20100108_bimserver.test.war
>>
>> Please let me know what the results are.
>>
>> Kind regards,
>> Ruben de Laat
>
> Mathieu
>
> ------------------------------------------------------------------------------
> This SF.Net email is sponsored by the Verizon Developer Community
> Take advantage of Verizon's best-in-class app development support
> A streamlined, 14 day to market process makes app distribution fast and easy
> Join now and get one step closer to millions of Verizon customers
> http://p.sf.net/sfu/verizon-dev2dev
> _______________________________________________
> Bimserver-users mailing list
> Bim...@li...
> https://lists.sourceforge.net/lists/listinfo/bimserver-users
>
>
|
|
From: Mathieu M. <mat...@gm...> - 2010-01-08 14:14:19
|
Hello again Ruben,
Yes that did the trick (not very safe though :-) )
Thanks a lot !
Kind regards,
Mathieu
Le 8 janv. 10 à 15:09, Ruben de Laat a écrit :
> Hello Mathieu,
>
> This still looks like there are not sufficient rights to read files
> from the bimserver context.
> Can you try with a permission file containing:
>
> grant {
> permission java.security.AllPermission;
> };
>
> I think that will solve the problem with loading the schema file.
>
> Kind regards,
> Ruben
|
|
From: Ruben de L. <ru...@rd...> - 2010-01-08 14:55:11
|
No problem.
You could always try a a permission file that grants file access to
your context directory (and the reflection one you already had).
On Fri, Jan 8, 2010 at 3:13 PM, Mathieu Marache
<mat...@gm...> wrote:
> Hello again Ruben,
>
> Yes that did the trick (not very safe though :-) )
>
> Thanks a lot !
>
> Kind regards,
> Mathieu
>
> Le 8 janv. 10 à 15:09, Ruben de Laat a écrit :
>
>> Hello Mathieu,
>>
>> This still looks like there are not sufficient rights to read files
>> from the bimserver context.
>> Can you try with a permission file containing:
>>
>> grant {
>> permission java.security.AllPermission;
>> };
>>
>> I think that will solve the problem with loading the schema file.
>>
>> Kind regards,
>> Ruben
>
>
> ------------------------------------------------------------------------------
> This SF.Net email is sponsored by the Verizon Developer Community
> Take advantage of Verizon's best-in-class app development support
> A streamlined, 14 day to market process makes app distribution fast and easy
> Join now and get one step closer to millions of Verizon customers
> http://p.sf.net/sfu/verizon-dev2dev
> _______________________________________________
> Bimserver-users mailing list
> Bim...@li...
> https://lists.sourceforge.net/lists/listinfo/bimserver-users
>
|