sourcejammer-users Mailing List for SourceJammer (Page 8)
Brought to you by:
robertmacgrogan
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
(7) |
Nov
(8) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(19) |
Feb
(64) |
Mar
(38) |
Apr
(40) |
May
(38) |
Jun
(46) |
Jul
(10) |
Aug
(20) |
Sep
(40) |
Oct
(60) |
Nov
(38) |
Dec
(61) |
2003 |
Jan
(102) |
Feb
(92) |
Mar
(83) |
Apr
(89) |
May
(9) |
Jun
(36) |
Jul
(24) |
Aug
(23) |
Sep
(47) |
Oct
(36) |
Nov
(31) |
Dec
(33) |
2004 |
Jan
(41) |
Feb
(59) |
Mar
(37) |
Apr
(19) |
May
(27) |
Jun
(38) |
Jul
(19) |
Aug
(23) |
Sep
(8) |
Oct
(8) |
Nov
(38) |
Dec
(27) |
2005 |
Jan
(33) |
Feb
(28) |
Mar
(23) |
Apr
(32) |
May
(35) |
Jun
(23) |
Jul
(58) |
Aug
(40) |
Sep
(27) |
Oct
(35) |
Nov
(10) |
Dec
(16) |
2006 |
Jan
(18) |
Feb
(5) |
Mar
(3) |
Apr
(16) |
May
(2) |
Jun
(17) |
Jul
(6) |
Aug
|
Sep
(2) |
Oct
(1) |
Nov
(3) |
Dec
|
2007 |
Jan
(2) |
Feb
(5) |
Mar
|
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
(7) |
Sep
|
Oct
|
Nov
(7) |
Dec
|
2008 |
Jan
|
Feb
(2) |
Mar
(9) |
Apr
(1) |
May
(1) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(1) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
From: mini-vacaciones <mon...@zo...> - 2005-10-13 17:02:45
|
+ + =el fin de semana el puente la fiesta Todos los Santos unas bonitas vacaciones desde el viernes 28 de octubre al martes 1 de noviembre Precio apartamento para 2 a 4 personas 140.- (si hace la reserva hasta el 18 de octubre con un descuento del 15%) Tener un lunes de puente y un martes de fiesta no ocurre muy a menudo, por eso hemos preparado en Montaña del Mar un gran fin de semana alargado con precios muy asequibles en un entorno agradable en medio de la naturaleza, cerca de las playas de Sitges y Vilanova i la Geltrú que en esta época del año todavía pueden ser apetecibles, si el tiempo nos acompaña. Son unas pequeñas vacaciones que usted las merece. Algo que no puede dejar escapar. Montaña del Mar teléfono 938 973 311 móvil 629 759 385 fax 938 973 369 e-mail plano de situación más sobre Montaña del Mar reservar Si usted quiere que quitemos su dirección de nuestro distribuidor indicandonos la dirección a la cual le hemos mandado la publicidad. Si no sabe a cual se la hemos mandado, mándenos todas. Las borraremos y no le molestaremos más. clique aqui |
From: Ninon S. <sto...@tc...> - 2005-10-12 22:57:26
|
soleprxaprvaceamcivi maviopnaozlilebialag traeciaxacum $brexenis $ra $ 161 90 pi 170 30 pi135 30 pi lls llslls more information |
From: Robert M. <rob...@ya...> - 2005-10-11 22:33:15
|
The way I handle this sort of thing is with a combination of sharing and branching. Let's say we're developing release 1.0 of the app. I'll make a SJ folder structure like this: MyApp/1.0 Then I'll put all of my code, starting out, under that 1.0 folder. Later on we go live with 1.0. But we want to maintain our code base so we can do maintenance releases and we want to begin work on 2.0. What we do is share the 1.0 folder into a new 2.0 folder. What this does is create a new folder structure like this in SJ: MyApp/2.0 Everything under 2.0 will be exactly the same as what's in 1.0. All of the folders will be the same and all of the files will be references to the exact same files as those under 1.0 (that's what we mean by sharing). Now, as we begin development in 2.0, we individually branch each file as we modify it (using the branch on checkin feature in most cases). This way, changes we make in 2.0 don't show up in 1.0 and we've always got a clean copy of 1.0. But if we make a change in 1.0 in a file that has not yet been branched, we don't branch it so that the change we make automatically gets propogated to 2.0. As we work for a while, many of our files will remain shared, but many will end up branched. We can continue this process into new releases, by sharing the 2.0 directory into a new 3.0 folder and so on. Labels fit in a little bit differently. I generally keep a top-level label in each of my "release" folders. I rebuild this every time a major chunk of functionality has been completed. This is how I personally fit shares, branches, and labels together to organize my build structre. One issue is that you end up with a lot of x.x folders after a while, but this is easy to take care of. Once you've got multiple release of your app, you can create a "current" and "archive" folder and just move the older release folders to the "archive" folder and keep only 2 or 3 release in "current". Hopefully this is helpful, Amit. Thanks for a good question. --Rob --- Shah Amit <ami...@ho...> wrote: > Hi, > > Please pardon my inexperience with branching/labelling. I have a set of > requirements and I am confused as to how I can use sourcejammer to help me. > > I have a project checked into sourcejammer. Let us say there are 10 files in > that. Now I want to "release" versions 1.0. Do some changes to the main line > of code and release 2.0, and similarly 3.0. However after 3.0 is released, I > might want to be able to go into 1.0 and change something in one of the > files (may be to fix some minor bugs) > > I tried to use label, but label doesn't let me change any files "in" that > label, except if I rebuild the label. However in my situation, I might > already be at version 3.0 and the code has drastically changed compared to > version 1.0 (The root of the problem is, the developement is far ahead of > the release schedule so we are releasing only small portions of whatever is > ready !!) > > I tried to use the branch feature, but it says I should share a file to > branch. Now I dont really need to share a file because all i want to do is > "release" ?? > > Please advise ... > > Thanks, > Amit > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: > Power Architecture Resource Center: Free content, downloads, discussions, > and more. http://solutions.newsforge.com/ibmarch.tmpl > _______________________________________________ > SourceJammer-users mailing list > Sou...@li... > https://lists.sourceforge.net/lists/listinfo/sourcejammer-users > __________________________________ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com |
From: Nata C. <nat...@br...> - 2005-10-11 19:27:56
|
leprvacecivixasoampr vioplilealagnamabioz traeciaum $brexis $ra $x enac 161 90 pi 170 30 pi135 30 pi lls llslls get more detailed information |
From: <hwa...@ya...> - 2005-10-11 18:44:39
|
--- Shah Amit <ami...@ho...> wrote: > Hi, > > Please pardon my inexperience with > branching/labelling. I have a set of > requirements and I am confused as to how I can use > sourcejammer to help me. > > I have a project checked into sourcejammer. Let us > say there are 10 files in > that. Now I want to "release" versions 1.0. Do some > changes to the main line > of code and release 2.0, and similarly 3.0. However > after 3.0 is released, I > might want to be able to go into 1.0 and change > something in one of the > files (may be to fix some minor bugs) > > I tried to use label, but label doesn't let me > change any files "in" that > label, except if I rebuild the label. However in my > situation, I might > already be at version 3.0 and the code has > drastically changed compared to > version 1.0 (The root of the problem is, the > developement is far ahead of > the release schedule so we are releasing only small > portions of whatever is > ready !!) > > I tried to use the branch feature, but it says I > should share a file to > branch. Now I dont really need to share a file > because all i want to do is > "release" ?? > > Please advise ... > > Thanks, > Amit > This is something which Surround SCM from Seapine software handles very well. I think Source Jammer should take some ideas from it in this regard. It's the best source control system I have used for it's price. There are evaluations freely available for it which could be used to make the modifications to Source Jammer or to at least get the main ideas to put into some type of a design or concept document for future development. Wade |
From: Shah A. <ami...@ho...> - 2005-10-11 01:41:54
|
Hi, Please pardon my inexperience with branching/labelling. I have a set of requirements and I am confused as to how I can use sourcejammer to help me. I have a project checked into sourcejammer. Let us say there are 10 files in that. Now I want to "release" versions 1.0. Do some changes to the main line of code and release 2.0, and similarly 3.0. However after 3.0 is released, I might want to be able to go into 1.0 and change something in one of the files (may be to fix some minor bugs) I tried to use label, but label doesn't let me change any files "in" that label, except if I rebuild the label. However in my situation, I might already be at version 3.0 and the code has drastically changed compared to version 1.0 (The root of the problem is, the developement is far ahead of the release schedule so we are releasing only small portions of whatever is ready !!) I tried to use the branch feature, but it says I should share a file to branch. Now I dont really need to share a file because all i want to do is "release" ?? Please advise ... Thanks, Amit |
From: Geraldo A. C. <gal...@ya...> - 2005-10-08 13:01:22
|
Os melhores Modelos de Contratos e Cartas Comerciais. Como escrever uma proposta, ducumento ou carta comercial: Visite agora: http://www.gueb.de/modelosdecartascomerciais Modelos de cartas de agradecimento, modelos de cartas de demissão, modelos de cartas com mensagem mensagens de pêsames, modelos de convites, modelos de declarações, modelos de cartas de solicitação de empregos, modelos de cartas de cobranças, modelos de cartas de recomendação, modelos de cartas de recomendações, redigir cartas comerciais, modelos de propostas comerciais, modelos de respostas a propostas comerciais, dicas de como redigir, dicas de redação de cartas comerciais, modelos de pedidos, modelos de atestados médicos. Modelos de cartas em inglês, modelos de cartas de reclamação, modelos de cartas de referências, dicas de como escrever cartas comerciais, dicas de como redigir cartas comerciais, modelos de convites para festas, modelos de convites para eventos, modelos de cartas de pedidos de demissão, modelos de cartas de felicitações, modelos de cartas formais, modelos de recibos, proposta de prestação de serviços, Modelos de Contratos Como escrever um currículo, como redigir documentos: Visite agora: http://www.gueb.de/modelosdecartascomerciais Modelos de cartas Convites, Propostas, Atas, Contratos, Agradecimentos, Empregos, Solicitação, Solicitações, Apresentação, Apresentações, Demissão, Demissões, Cobranças, Pedidos, Atestados, Declarações, Declaração, Pêsames, Condolências, Batizados, Fomal, Formais, Redigir, Escrever, Escritas, Textos, Mensagens, Mensagem, Inglês, Clientes, Fornecedores, Empresas, Negócios, Marketing, Comunicados, Comunicação, Secretárias, Amigos, Parentes, Vendedores, Vendedoras, Referências, Social, Sociais, Respostas, Dicas, Médicos, Advogados, Duplicatas, Felicitação, Felicitações, Recomendação, Recomendações, Funcionários, Reclamação, Reclamações, Comunicar, Comunicados, Documentos, Viagens, Viagem, Solenidades, Confraternização, Confraternizações, Resultados, Preços, Aumentos, Entregas, Férias, Estudantes, Lançamentos, Novos, Aviso Prévio, Estágios, Escolares, Protestos, Débitos, Exposição, Exposições, Feiras, Acordos, Recibos, Procurações, Edital, Editais" modelos de cartas de demissão, modelos de cartas com mensagem mensagens de pêsames, modelos de convites, modelos de declarações, modelos de cartas de solicitação de empregos, modelos de cartas de cobranças, modelos de cartas de recomendação, modelos de cartas de recomendações, redigir cartas comerciais, modelos de propostas comerciais, modelos de respostas a propostas comerciais, dicas de como redigir, dicas de redação de cartas comerciais, modelos de pedidos. Visite agora: http://www.gueb.de/modelosdecartascomerciais modelos de cartas de demissão, modelos de cartas com mensagem mensagens de pêsames, modelos de convites, modelos de declarações, modelos de cartas de solicitação de empregos, modelos de cartas de cobranças, modelos de cartas de recomendação, modelos de cartas de recomendações, redigir cartas comerciais, modelos de propostas comerciais, modelos de respostas a propostas comerciais, dicas de como redigir, dicas de redação de cartas comerciais, modelos de pedidos, modelos de atestados médicos. Modelos de cartas em inglês, modelos de cartas de reclamação, modelos de cartas de referências, dicas de como escrever cartas comerciais, dicas de como redigir cartas comerciais, modelos de convites para festas, modelos de convites para eventos, modelos de cartas de pedidos de demissão, modelos de cartas de felicitações, modelos de cartas formais, modelos de recibos, proposta de prestação de serviços, Modelos de Contratos Cartas Comerciais, cartas, contartos, modelos, empresa, contabilidade, advocacia, advogado, direito, procuração, memorando. http://www.gueb.de/modelosdecartascomerciais propostas comerciais, dicas de como redigir, dicas de redação de cartas comerciais, modelos de pedidos, modelos de atestados médicos. Modelos de cartas em inglês, modelos de cartas de reclamação, modelos de cartas de referências, dicas de como escrever cartas comerciais, dicas de como redigir cartas comerciais, modelos de convites para |
From: Regula M. <reg...@en...> - 2005-10-06 17:31:41
|
Good day, Do yo end less On y ations? u want to sp our Meddic It's so easy with us - The websitee XaViAmLeVaCi anaiagbbivvialiial xra $entraum $is $ 3.33 3.751.21 And much more Have a nice day |
From: Robert M. <rob...@ya...> - 2005-10-06 14:12:10
|
Try modifying your server configuration to increase the size of your server's cache. I've got my set to 4000 (the default is 1000). This is MaxCacheSize in serverconf.xml --Rob --- Peter Vanderborght <pet...@ta...> wrote: > That solves it for a while... But it comes back. > > -----Original Message----- > From: Robert MacGrogan [mailto:rob...@ya...] > Sent: 05 October 2005 22:14 > To: Peter Vanderborght; SourceJammer Users > Subject: Re: SourceJammer problems > > Did you try re-starting your SJ server? > > > --- Peter Vanderborght <pet...@ta...> wrote: > > > Hi Rob, > > > > Sorry I need to contact you again, bu I'm having issues getting files > > from SJ... > > > > This is part of the log (the stack trace repeats unfinitely) > > > > >> Running cleanup. > > >> Removing temp files older than: Tue Oct 04 10:30:06 CEST 2005 > > >> Removing expired sessions older than: 1128493806031 > > :: started session 8207923912873643319 for anon > > :: ended session 8207923912873643319 for anon > > >> Running cleanup. > > >> Removing temp files older than: Tue Oct 04 11:30:06 CEST 2005 > > >> Removing expired sessions older than: 1128497406031 > > :: started session 8839141514297574338 for anon > > org.sourcejammer.server.security.ObjectLockingException: Unable to > > obtain filesystem lock on the requested node. > > at > > org.sourcejammer.project.model.filesys.NodeLibraryFS.obtainLock(Unknow > > n > > Source) > > at > > org.sourcejammer.project.model.filesys.NodeLibraryFS.getProjectNode(Un > > known > > Source) > > at > > org.sourcejammer.project.controller.ProjectController.projectNodeToPro > > ject(U > > nknown Source) > > at > > org.sourcejammer.project.controller.ProjectController.getProject(Unkno > > wn > > Source) > > at > > org.sourcejammer.project.view.MasterControlProgram.getProjectInfo(Unkn > > own > > Source) > > at sun.reflect.GeneratedMethodAccessor51.invoke(Unknown Source) at > > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccess > > orImpl > > .java:25) > > at java.lang.reflect.Method.invoke(Method.java:585) > > at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146) > > at > > org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java: > > 129) > > at > > org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.j > > ava:35 > > 4) > > at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) > > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > > at > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appli > > cation > > FilterChain.java:252) > > at > > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFi > > lterCh > > ain.java:173) > > at > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVa > > lve.ja > > va:213) > > at > > org.apache.catalina.core.StandardContextValve.invoke(StandardContextVa > > lve.ja > > va:178) > > at > > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.ja > > va:126 > > ) > > at > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.ja > > va:105 > > ) > > at > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValv > > e.java > > :107) > > at > > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java > > :148) > > at > > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java: > > 856) > > at > > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proces > > sConne > > ction(Http11Protocol.java:744) > > at > > org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoi > > nt.jav > > a:527) > > at > > org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFoll > > owerWo > > rkerThread.java:80) > > at > > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPo > > ol.jav > > a:684) > > at java.lang.Thread.run(Thread.java:595) > > org.sourcejammer.server.security.ObjectLockingException: Unable to > > obtain filesystem lock on the requested node. > > at > > org.sourcejammer.project.model.filesys.NodeLibraryFS.obtainLock(Unknow > > n > > Source) > > at > > org.sourcejammer.project.model.filesys.NodeLibraryFS.getProjectNode(Un > > known > > Source) > > at > > org.sourcejammer.project.controller.ProjectController.projectNodeToPro > > ject(U > > nknown Source) > > at > > org.sourcejammer.project.controller.ProjectController.getProject(Unkno > > wn > > Source) > > at > > org.sourcejammer.project.view.MasterControlProgram.getProjectInfo(Unkn > > own > > Source) > > at sun.reflect.GeneratedMethodAccessor51.invoke(Unknown Source) at > > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccess > > orImpl > > .java:25) > > at java.lang.reflect.Method.invoke(Method.java:585) > > at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146) > > at > > org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java: > > 129) > > at > > org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.j > > ava:35 > > 4) > > at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) > > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > > at > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appli > > cation > > FilterChain.java:252) > > at > > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFi > > lterCh > > ain.java:173) > > at > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVa > > lve.ja > > va:213) > > at > > org.apache.catalina.core.StandardContextValve.invoke(StandardContextVa > > lve.ja > > va:178) > > at > > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.ja > > va:126 > > ) > > at > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.ja > > va:105 > > ) > > at > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValv > > e.java > > :107) > > at > > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java > > :148) > > at > > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java: > > 856) > > at > > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proces > > sConne > > ction(Http11Protocol.java:744) > > at > > org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoi > > nt.jav > > a:527) > > at > > org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFoll > > owerWo > > rkerThread.java:80) > > at > > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPo > > ol.jav > > a:684) > > at java.lang.Thread.run(Thread.java:595) > > > > > > Have you ever seen this before? > > Is there anything I can do? > > Could it be related to the JRE version I'm running? ( JRE 1.5 ) Do you > > recommend any JRE version? > > > > Regards, > > Peter > > > > > > > __________________________________ > Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: > Power Architecture Resource Center: Free content, downloads, discussions, > and more. http://solutions.newsforge.com/ibmarch.tmpl > _______________________________________________ > SourceJammer-users mailing list > Sou...@li... > https://lists.sourceforge.net/lists/listinfo/sourcejammer-users > __________________________________ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com |
From: Peter V. <pet...@ta...> - 2005-10-06 02:03:18
|
That solves it for a while... But it comes back. -----Original Message----- From: Robert MacGrogan [mailto:rob...@ya...] Sent: 05 October 2005 22:14 To: Peter Vanderborght; SourceJammer Users Subject: Re: SourceJammer problems Did you try re-starting your SJ server? --- Peter Vanderborght <pet...@ta...> wrote: > Hi Rob, > > Sorry I need to contact you again, bu I'm having issues getting files > from SJ... > > This is part of the log (the stack trace repeats unfinitely) > > >> Running cleanup. > >> Removing temp files older than: Tue Oct 04 10:30:06 CEST 2005 > >> Removing expired sessions older than: 1128493806031 > :: started session 8207923912873643319 for anon > :: ended session 8207923912873643319 for anon > >> Running cleanup. > >> Removing temp files older than: Tue Oct 04 11:30:06 CEST 2005 > >> Removing expired sessions older than: 1128497406031 > :: started session 8839141514297574338 for anon > org.sourcejammer.server.security.ObjectLockingException: Unable to > obtain filesystem lock on the requested node. > at > org.sourcejammer.project.model.filesys.NodeLibraryFS.obtainLock(Unknow > n > Source) > at > org.sourcejammer.project.model.filesys.NodeLibraryFS.getProjectNode(Un > known > Source) > at > org.sourcejammer.project.controller.ProjectController.projectNodeToPro > ject(U > nknown Source) > at > org.sourcejammer.project.controller.ProjectController.getProject(Unkno > wn > Source) > at > org.sourcejammer.project.view.MasterControlProgram.getProjectInfo(Unkn > own > Source) > at sun.reflect.GeneratedMethodAccessor51.invoke(Unknown Source) at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccess > orImpl > .java:25) > at java.lang.reflect.Method.invoke(Method.java:585) > at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146) > at > org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java: > 129) > at > org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.j > ava:35 > 4) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appli > cation > FilterChain.java:252) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFi > lterCh > ain.java:173) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVa > lve.ja > va:213) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardContextVa > lve.ja > va:178) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.ja > va:126 > ) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.ja > va:105 > ) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValv > e.java > :107) > at > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java > :148) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java: > 856) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proces > sConne > ction(Http11Protocol.java:744) > at > org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoi > nt.jav > a:527) > at > org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFoll > owerWo > rkerThread.java:80) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPo > ol.jav > a:684) > at java.lang.Thread.run(Thread.java:595) > org.sourcejammer.server.security.ObjectLockingException: Unable to > obtain filesystem lock on the requested node. > at > org.sourcejammer.project.model.filesys.NodeLibraryFS.obtainLock(Unknow > n > Source) > at > org.sourcejammer.project.model.filesys.NodeLibraryFS.getProjectNode(Un > known > Source) > at > org.sourcejammer.project.controller.ProjectController.projectNodeToPro > ject(U > nknown Source) > at > org.sourcejammer.project.controller.ProjectController.getProject(Unkno > wn > Source) > at > org.sourcejammer.project.view.MasterControlProgram.getProjectInfo(Unkn > own > Source) > at sun.reflect.GeneratedMethodAccessor51.invoke(Unknown Source) at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccess > orImpl > .java:25) > at java.lang.reflect.Method.invoke(Method.java:585) > at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146) > at > org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java: > 129) > at > org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.j > ava:35 > 4) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appli > cation > FilterChain.java:252) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFi > lterCh > ain.java:173) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVa > lve.ja > va:213) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardContextVa > lve.ja > va:178) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.ja > va:126 > ) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.ja > va:105 > ) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValv > e.java > :107) > at > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java > :148) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java: > 856) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proces > sConne > ction(Http11Protocol.java:744) > at > org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoi > nt.jav > a:527) > at > org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFoll > owerWo > rkerThread.java:80) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPo > ol.jav > a:684) > at java.lang.Thread.run(Thread.java:595) > > > Have you ever seen this before? > Is there anything I can do? > Could it be related to the JRE version I'm running? ( JRE 1.5 ) Do you > recommend any JRE version? > > Regards, > Peter > __________________________________ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com |
From: Robert M. <rob...@ya...> - 2005-10-05 20:14:26
|
Did you try re-starting your SJ server? --- Peter Vanderborght <pet...@ta...> wrote: > Hi Rob, > > Sorry I need to contact you again, bu I'm having issues getting files from > SJ... > > This is part of the log (the stack trace repeats unfinitely) > > >> Running cleanup. > >> Removing temp files older than: Tue Oct 04 10:30:06 CEST 2005 > >> Removing expired sessions older than: 1128493806031 > :: started session 8207923912873643319 for anon > :: ended session 8207923912873643319 for anon > >> Running cleanup. > >> Removing temp files older than: Tue Oct 04 11:30:06 CEST 2005 > >> Removing expired sessions older than: 1128497406031 > :: started session 8839141514297574338 for anon > org.sourcejammer.server.security.ObjectLockingException: Unable to obtain > filesystem lock on the requested node. > at org.sourcejammer.project.model.filesys.NodeLibraryFS.obtainLock(Unknown > Source) > at > org.sourcejammer.project.model.filesys.NodeLibraryFS.getProjectNode(Unknown > Source) > at > org.sourcejammer.project.controller.ProjectController.projectNodeToProject(U > nknown Source) > at org.sourcejammer.project.controller.ProjectController.getProject(Unknown > Source) > at > org.sourcejammer.project.view.MasterControlProgram.getProjectInfo(Unknown > Source) > at sun.reflect.GeneratedMethodAccessor51.invoke(Unknown Source) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl > .java:25) > at java.lang.reflect.Method.invoke(Method.java:585) > at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146) > at > org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java:129) > at > org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.java:35 > 4) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application > FilterChain.java:252) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh > ain.java:173) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja > va:213) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja > va:178) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126 > ) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105 > ) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java > :107) > at > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConne > ction(Http11Protocol.java:744) > at > org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.jav > a:527) > at > org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWo > rkerThread.java:80) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav > a:684) > at java.lang.Thread.run(Thread.java:595) > org.sourcejammer.server.security.ObjectLockingException: Unable to obtain > filesystem lock on the requested node. > at org.sourcejammer.project.model.filesys.NodeLibraryFS.obtainLock(Unknown > Source) > at > org.sourcejammer.project.model.filesys.NodeLibraryFS.getProjectNode(Unknown > Source) > at > org.sourcejammer.project.controller.ProjectController.projectNodeToProject(U > nknown Source) > at org.sourcejammer.project.controller.ProjectController.getProject(Unknown > Source) > at > org.sourcejammer.project.view.MasterControlProgram.getProjectInfo(Unknown > Source) > at sun.reflect.GeneratedMethodAccessor51.invoke(Unknown Source) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl > .java:25) > at java.lang.reflect.Method.invoke(Method.java:585) > at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146) > at > org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java:129) > at > org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.java:35 > 4) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application > FilterChain.java:252) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh > ain.java:173) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja > va:213) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja > va:178) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126 > ) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105 > ) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java > :107) > at > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConne > ction(Http11Protocol.java:744) > at > org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.jav > a:527) > at > org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWo > rkerThread.java:80) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav > a:684) > at java.lang.Thread.run(Thread.java:595) > > > Have you ever seen this before? > Is there anything I can do? > Could it be related to the JRE version I'm running? ( JRE 1.5 ) > Do you recommend any JRE version? > > Regards, > Peter > __________________________________ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com |
From: Aoide K. <knu...@ll...> - 2005-09-30 23:56:33
|
Howdy Let's Have a look: Home Best Easy Fast Total = DeIiveryPrricesOrrderingShipp= ingConfidentiality VaAmLeViXaCi lbvana iuieitgraxli m $n ra a $ s $ 3.75 3.33 1.21 Get = detailed infoo special characteristics. The Tale consists simply in the A = MAN and a Lion traveled together through the forest. They soon |
From: Winston <se...@xi...> - 2005-09-30 13:44:36
|
EXPLOSIVE PICK FOR OUR MEMBERS RIDE THE STAIRWAY TO HEAVEN! Date: 30 Sep 2005 Company Name: m-Wise Stock Name: MWIS Price: $0.155 Short Term Target: $0.5 - 0.6 12month Target: $1 (!!!) *** About m-Wise Founded in February 2000, m-Wise has rapidly established itself as a leading technology provider with the de facto Service Delivery Platform and related value-added data engines for Mobile Operators, Wireless ASPs, and large content and media providers. Working closely with leading operators, ASPs and content providers, m-Wise is committed to take the lead and keep up to date with the latest industry headways in areas as diverse as content management and delivery, infotainment, mobile gaming and mobile community services. *** This stock will explode. Do not wait until it is too late! |
From: Ceara S. <sch...@tk...> - 2005-09-29 15:33:53
|
Hi Fast Best = Total Easy Home ShipPrricConfOrdeDeliv pingesidentialityringery LevXanCIAVIAA= mbVAL itraax LISGRAienIUM $ $ $ 1.213.33 3.75 Additional innformation Misfortune tests the sincerity of friends. animals he = was the most tender in his regard for man, for he had |
From: Robert M. <rob...@ya...> - 2005-09-27 14:56:44
|
Hi, Anin. Try increasing your cache size in serverconf.xml. The default value is 1000, but I generally set mine to 4000. You'll see errors like this a lot less frequently. --Rob --- Anin <ani...@pa...> wrote: > Rob, > > I am running sourcejammer server 2.1.0 on Tomcat 5.5 with JDK 5. I am > connecting using the 2.1.2 beta client. I see this error once in a while > on the server logs. It makes some directories completely unbrowsable in > the archive. The only way to fix it is to perform a restart and it goes > away.. I am thinking maybe it is something to do with the beta client > that I am using, session management problems etc. But please tell me if > something jumps out from this stack trace. > > Thanks, > Anin > > -------------------------------------------------------------------------------------- > Killed expired session -- id:7881362370056793071, user:test1 > !! Caught security exception !! > Node Name: null > File Name: null > Locked: true > Read Only: false > org.sourcejammer.server.security.SecurityException: Unable to obtain > filesystem lock on the requested node. Unable to obtain filesystem lock > on the requested node. > org.sourcejammer.server.security.ObjectLockingException: Unable to > obtain filesystem lock on the requested node. > at > org.sourcejammer.project.model.filesys.NodeLibraryFS.getFileNode(Unknown > Source) > at > org.sourcejammer.project.controller.ProjectController.projectNodeToProject(Unknown > Source) > at > org.sourcejammer.project.controller.ProjectController.getProject(Unknown > Source) > at > org.sourcejammer.project.view.MasterControlProgram.getProjectInfo(Unknown > Source) > at sun.reflect.GeneratedMethodAccessor47.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) > at java.lang.reflect.Method.invoke(Unknown Source) > at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146) > at > org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java:129) > at > org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.java:354) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) > at > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744) > at > org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) > at > org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) > at java.lang.Thread.run(Unknown Source) > org.sourcejammer.server.security.ObjectLockingException: Unable to > obtain filesystem lock on the requested node. > at > org.sourcejammer.project.model.filesys.NodeLibraryFS.obtainLock(Unknown > Source) > at > org.sourcejammer.project.model.filesys.NodeLibraryFS.getFileNode(Unknown > Source) > at > org.sourcejammer.project.controller.ProjectController.projectNodeToProject(Unknown > Source) > at > org.sourcejammer.project.controller.ProjectController.getProject(Unknown > Source) > at > org.sourcejammer.project.view.MasterControlProgram.getProjectInfo(Unknown > Source) > at sun.reflect.GeneratedMethodAccessor47.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) > at java.lang.reflect.Method.invoke(Unknown Source) > at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146) > at > org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java:129) > at > org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.java:354) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) > at > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744) > at > org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) > at > org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) > at java.lang.Thread.run(Unknown Source) > org.sourcejammer.server.security.ObjectLockingException: Unable to > obtain filesystem lock on the requested node. > at > org.sourcejammer.project.model.filesys.NodeLibraryFS.obtainLock(Unknown > Source) > at > org.sourcejammer.project.model.filesys.NodeLibraryFS.getFileNode(Unknown > Source) > at > org.sourcejammer.project.controller.ProjectController.projectNodeToProject(Unknown > Source) > at > org.sourcejammer.project.controller.ProjectController.getProject(Unknown > Source) > at > org.sourcejammer.project.view.MasterControlProgram.getProjectInfo(Unknown > Source) > at sun.reflect.GeneratedMethodAccessor47.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) > at java.lang.reflect.Method.invoke(Unknown Source) > at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146) > at > org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java:129) > at > org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.java:354) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) > at > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744) > at > org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) > at > org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) > at java.lang.Thread.run(Unknown Source) > __________________________________ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com |
From: Khayri N. <kha...@ti...> - 2005-09-24 22:17:37
|
CPLMCAVUXV IreeemAlaI AovrlbLtnA= LpiieiIraG IetdbeUaxR= SciaraiarexnMm = A $1 $3 = $3 21 .75 = 33 http://www.bardwinow.com equestrian Pontius Pilate. Well, naturally, I used = to go out for a walk. A currency and jewels. I warn you that the same sort of = thing, if not worse, |
From: Robert M. <rob...@ya...> - 2005-09-23 21:42:32
|
I haven't seen this one before. Have you tried the default solution to most problems . . . restarting your SJ server? If that doesn't fix it, it could be a problem with your _temp directory. Make sure that there's enough space on the drive in question for any files that might get streamed to this directory. --Rob --- Mac <ma...@in...> wrote: > Hi, > > We have been using Source Jammer (2.1) for the past 6 months for multiple > projects - and it has worked rather well. > > But for the past 2 days - it has started giving all sorts of errors > > When trying to checkin files - we get > Fault Code = SOAP-ENV:Server.BadTargetObjectURI > Fault String = Unable to resolve target object: IOException creating temp > file. Invalid stream header. > > Am sure - this must be something fairly straightforward for you. > > thanks, > mac > > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Mac <ma...@in...> - 2005-09-23 10:56:04
|
Hi, We have been using Source Jammer (2.1) for the past 6 months for multiple projects - and it has worked rather well. But for the past 2 days - it has started giving all sorts of errors When trying to checkin files - we get Fault Code = SOAP-ENV:Server.BadTargetObjectURI Fault String = Unable to resolve target object: IOException creating temp file. Invalid stream header. Am sure - this must be something fairly straightforward for you. thanks, mac |
From: Mac <ma...@in...> - 2005-09-20 13:29:12
|
Hi, We have been using Source Jammer (2.1) for the past 6 months for multiple projects - and it has worked rather well. But for the past 2 days - it has started giving all sorts of errors When trying to checkin files - we get Fault Code = SOAP-ENV:Server.BadTargetObjectURI Fault String = Unable to resolve target object: IOException creating temp file. Invalid stream header. Am sure - this must be something fairly straightforward for you. thanks, mac |
From: Luce K. <lu...@co...> - 2005-09-20 03:06:56
|
AMCLUVXVPC meeelIaArI= brlvtAnLoA iieirGaIpL edbtaRxUeI= niarexramA = MciaS $3 $3$1 33 .75.21 http://www.telectupoper.com= bonfire flickered and some small figures could be seen moving about. It = Secure places being scarce in communal living conditions, the master |
From: Nesrin B. <ne...@el...> - 2005-09-19 11:48:50
|
VLMVPCCU= AX AeeIrIelma= LvrAoAltbn IiiGpLeria UtdReIba= ex MraiaAciaSrexmn $3$3$1 = 75 .33.21 = http://www.chamanecon.com with her broom, the rook started the car, aiming it = straight into the ravine into the oblong hall where, behind frosted-glass = windows with gold |
From: Dulcie B. <dul...@co...> - 2005-09-16 11:55:09
|
CiXaViMeCeUlPr= VaLeAm alnaagriletroplivibi isxradiabrexameciaumtraen $1 $3 $3 21.33.75 http://www.definiteldrr.= com bookkeepers, in the box office, and in Varenukhas office. in its unwound = turban. The flies and horseflies therefore covered him |
From: Kondrat W. <kon...@ec...> - 2005-09-15 20:37:37
|
CiVaViLeMeAmUlXaPrCe alliagviribitrnaople isumratradiaenamxeciabrex $1 $3 $3= 21.75.33= http://www.skatanar.com= vestibule. But it was not the columns that struck visitors to the affiliate = row of ladies sat on stools with gilded legs, stamping the carpet |
From: Dequan <con...@ya...> - 2005-09-15 08:15:20
|
Looking for a company with some good news? Here's one! UP WE ARE LOOKING FOR A HUGH THURSDAY ! Date: 15.09.2005 Company Name: m-Wise, Inc. Trading Symbol: MWIS.OB Opening Price: $.13 10 Day Target: $.60 THIS IS THE ONE THAT COULD MAKE YOU 300-500% PROFIT!!! --- m-Wise, Inc. (OTC BB:MWIS.OB - News), a leading technology provider of mobile content solutions for operators, ASPs and content providers, today announced the launch of its MOMA Platform with Belgium-based, The Ring Ring Company, the leading Wireless Application Service Provider. m-Wise will supply Ring Ring with its MOMA Service Delivery Platform (SDP). MOMA will become Ring Ring's main technology and application platform. Ring Ring is one of the first providers of premium SMS and MMS services in Belgium and a specialist in IVR and mobile services. Ring Ring has licensed m-Wise's MOMA SDP to run its existing applications, while generating and developing new ones through the m-Wise technology. Installed locally, the MOMA SDP will allow Ring Ring to quickly and efficiently implement the new value-added mobile services to the Belgian market in the upcoming months. As a result of its direct connections with Belgian-based telecommunications operators, its client portfolio and its market knowledge, Ring Ring is currently a top-three player in the Belgian mobile communications market. Utilizing the MOMA SDP, Ring Ring can run services with ease, including SMS and MMS and the supply of information and entertainment services, Location Based Services and other interactive services. --- GET IN NOW!!! You know the old saying, buy the rumor and sell on the news. Once the news is out it is time to get ready for next rally... A $1,000 dollar investment could yield a $5,000 dollar profit in just one trade if you trade out at the top. MWIS should be one of the most profitable stocks to trade this year. In this range the stock has potentialto move in either direction in bigs wings. This means you should be able to buy at the lows and sell at the highs for months to come. We could see a GREAT STORY IN THE MAKING FOR MWIS. !!!GOOD LUCK AND TRADE OUT AT THE TOP!!!! |
From: Robert M. <rob...@ya...> - 2005-09-12 19:25:36
|
Excellent news, Steve. Thanks for the update. --Rob --- Steve Erickson <st...@av...> wrote: > Robert, > > Thanks for the prompt reply. > > The convert script problem was user-error: I entered the wrong command-line > parameter (I entered "2.0" instead of "2.1"). The conversion process > completed successfully. > > Stephen Erickson > Avenity, Inc. > > -----Original Message----- > From: Robert MacGrogan [mailto:rob...@ya...] > Sent: Friday, September 09, 2005 10:24 AM > To: st...@av...; sou...@li... > Subject: Re: [SourceJammer-users] Cannot convert 2.0.2 archive > > Steve, > > It seems that when you try to run the conversion by itself, you're actually > running the 2.0 > conversion tool. The 2.1 conversion tool will start with the following: > > **************************************** > ** SourceJammer 2.0 to 2.1 Conversion ** > **************************************** > > When you try to upgrade using the install script, what output do you see > when the conversion kicks > in? I can see by looking at the code that you're not going to get a stack > trace here either, but > whatever error message you get, I'd like to see. > > I could do a quick modification to the convert script to output any error > stack traces and to > maybe log what it's doing, but SJ does not have any sort of nice logging > features built into it. > > Let me know about the error you see when you install and I'll see about > adding the logging. > > --Rob > > > > --- Steve Erickson <st...@av...> wrote: > > > I am attempting to upgrade my archive named "SOFTWARE" from 2.0.2 to > 2.1.0. > > I initially ran the install script for 2.1.0, but it output that it could > > not convert my archive. I then tried running the convert script on its > own > > and received the output: > > > > > > > > ac - C:\Documents and > > Settings\Steve\Desktop\sourcejammer-server-2.1.0.0.gpl\Sou > > > > rceJammer2.1.0.0\scripts\conf.xml > > > > ac - C:\Program Files\Apache Software Foundation\Tomcat > > 5.0\webapps\sourcejammer > > > > \WEB-INF\conf\conf.xml > > > > sc - C:\Program Files\Apache Software Foundation\Tomcat > > 5.0\webapps\sourcejammer > > > > \WEB-INF\conf\serverconf.xml > > > > ******************************************** > > > > **SourceJammer 2.0 Archive Conversion Tool** > > > > ******************************************** > > > > > > > > > > > > Converting archive SOFTWARE. > > > > Converting Projects |!! Exception in converting SOFTWARE > > > > null > > > > skipping . . . > > > > > > > > ******************************************** > > > > **Conversion Complete ** > > > > ******************************************** > > > > > > > > Any ideas on how to tackle this? > > > > > > > > A general question is: Is there anyway I can turn on logging for the > > conversion process so that I can see a stack trace? > > > > > > > > Thanks, > > > > Stephen Erickson > > > > Avenity, Inc. > > > > > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > > > __________________________________ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com |