You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(6) |
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(1) |
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
(1) |
Feb
|
Mar
(6) |
Apr
(1) |
May
|
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
(8) |
Nov
|
Dec
(1) |
2013 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(9) |
Jun
(2) |
Jul
(5) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2014 |
Jan
(1) |
Feb
|
Mar
|
Apr
(7) |
May
(6) |
Jun
(7) |
Jul
|
Aug
|
Sep
(5) |
Oct
(29) |
Nov
(14) |
Dec
(10) |
2015 |
Jan
|
Feb
(4) |
Mar
(8) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(5) |
Sep
|
Oct
(6) |
Nov
|
Dec
(2) |
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(21) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: 謝福明 <aug...@ch...> - 2014-09-29 09:01:11
|
Hi, “for a small response you may have to wait until the end of the response to get the last packet”. Yes, we are encountering this problem… We decided to use HttpAsyncClient to resolve this problem, do you have any suggestions? Thank you. From: fx....@gm... [mailto:fx....@gm...] On Behalf Of Francois-Xavier Bonnet Sent: Wednesday, September 24, 2014 9:54 PM To: Francois-Xavier Bonnet Cc: 謝福明; web...@li... Subject: Re: [EsiGate-users] long-polling in esigate 4.1 problem I just had a look at the code. I can confirm that we are streaming directly all non parsable responses but there might be a buffer issue: currently it is flushed only when the buffer is full. So for a big response, the response is streamed in packets which size depends on the servlet container buffer size but for the last packet or for a small response you may have to wait until the end of the response to get the last packet. I guess this could explain the problem you have. Unfortunately this behavior cannot be changed easily because current EsiGate version is based on Apache HttpClient, this implementation is using blocking IO. I think we might be able to fix this after migrating to HttpAsyncClient using event based content streaming like in this example<https://hc.apache.org/httpcomponents-asyncclient-dev/httpasyncclient/examples/org/apache/http/examples/nio/client/AsyncClientHttpExchangeStreaming.java> but this is planned for EsiGate 6.0 Feel free to open a bug report. Contributions are also always very much appreciated. 2014-09-24 14:41 GMT+02:00 Francois-Xavier Bonnet <fra...@ce...<mailto:fra...@ce...>>: Hi Augustus, For content types like text/html and application/xhtml+xml, EsiGate is buffering the complete response in order to parse it for ESI tags. You can override this with "parsableContentTypes" property. For all other content-types, EsiGate is streaming directly the response to the browser. What is the content-type header of the response you want to stream ? Which application server are you using (there are some differences in the way internal buffers work) ? What are the other response headers related to the cache (Cache-control, Expires, Last-Modified, E-Tag) ? 2014-09-24 12:01 GMT+02:00 <aug...@ch...<mailto:aug...@ch...>>: Hi, Dose esigate 4.1 can run in streaming mode?? It’s like fiddler streaming mode We have problem when we use long-polling in esigate 4.1, user click execute button, long-polling will create channel between client browser and backend Ap server through esigate, when channel is created, client browser will communicate with backend Ap server, but it work always when esigate socketTimeout or websocket timeout, we found this problem in org.esigate.servlet.HttpServletMediator line 193, when we click execute button, esigate will stop in org.esigate.servlet.HttpServletMediator line 193 until it timeout, then work seems like esigate is waiting long-polling close, then it start do response to client recently, we use fiddler access the app, it’s pending like esigate, but when fiddler run in streaming mode, it’s works fine! So, esigate have streaming mode?? Thank you 本信件可能包含中華電信股份有限公司機密資訊,非指定之收件者,請勿蒐集、處理或利用本信件內容,並請銷毀此信件. 如為指定收件者,應確實保護郵件中本公司之營業機密及個人資料,不得任意傳佈或揭露,並應自行確認本郵件之附檔與超連結之安全性,以共同善盡資訊安全與個資保護責任. Please be advised that this email message (including any attachments) contains confidential information and may be legally privileged. If you are not the intended recipient, please destroy this message and all attachments from your system and do not further collect, process, or use them. Chunghwa Telecom and all its subsidiaries and associated companies shall not be liable for the improper or incomplete transmission of the information contained in this email nor for any delay in its receipt or damage to your system. If you are the intended recipient, please protect the confidential and/or personal information contained in this email with due care. Any unauthorized use, disclosure or distribution of this message in whole or in part is strictly prohibited. Also, please self-inspect attachments and hyperlinks contained in this email to ensure the information security and to protect personal information. ------------------------------------------------------------------------------ Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk _______________________________________________ Webassembletool-users mailing list Web...@li...<mailto:Web...@li...> https://lists.sourceforge.net/lists/listinfo/webassembletool-users |
From: Francois-Xavier B. <fra...@ce...> - 2014-09-24 13:54:01
|
I just had a look at the code. I can confirm that we are streaming directly all non parsable responses but there might be a buffer issue: currently it is flushed only when the buffer is full. So for a big response, the response is streamed in packets which size depends on the servlet container buffer size but for the last packet or for a small response you may have to wait until the end of the response to get the last packet. I guess this could explain the problem you have. Unfortunately this behavior cannot be changed easily because current EsiGate version is based on Apache HttpClient, this implementation is using blocking IO. I think we might be able to fix this after migrating to HttpAsyncClient using event based content streaming like in this example <https://hc.apache.org/httpcomponents-asyncclient-dev/httpasyncclient/examples/org/apache/http/examples/nio/client/AsyncClientHttpExchangeStreaming.java> but this is planned for EsiGate 6.0 Feel free to open a bug report. Contributions are also always very much appreciated. 2014-09-24 14:41 GMT+02:00 Francois-Xavier Bonnet < fra...@ce...>: > Hi Augustus, > > For content types like text/html and application/xhtml+xml, EsiGate is > buffering the complete response in order to parse it for ESI tags. You can > override this with "parsableContentTypes" property. > For all other content-types, EsiGate is streaming directly the response to > the browser. > What is the content-type header of the response you want to stream ? Which > application server are you using (there are some differences in the way > internal buffers work) ? What are the other response headers related to the > cache (Cache-control, Expires, Last-Modified, E-Tag) ? > > 2014-09-24 12:01 GMT+02:00 <aug...@ch...>: > >> Hi, >> >> Dose esigate 4.1 can run in streaming mode?? It’s like fiddler >> streaming mode >> >> >> >> >> >> We have problem when we use long-polling in esigate 4.1, >> >> >> >> user click execute button, long-polling will create channel >> between client browser and backend Ap server through esigate, >> >> >> >> when channel is created, client browser will communicate with backend Ap >> server, >> >> >> >> but it work always when esigate socketTimeout or websocket timeout, >> >> >> >> we found this problem in org.esigate.servlet.HttpServletMediator >> line 193, >> >> >> >> when we click execute button, esigate will stop in >> org.esigate.servlet.HttpServletMediator line 193 until it timeout, then work >> >> >> >> seems like esigate is waiting long-polling close, then it start >> do response to client >> >> >> >> recently, we use fiddler access the app, it’s pending like >> esigate, but when fiddler run in streaming mode, it’s works fine! >> >> >> >> So, esigate have streaming mode?? >> >> >> >> >> >> Thank you >> >> >> >> >> >> >> >> >> >> *本信件可能包含中華電信股份有限公司機密資訊,非指定之收件者,請勿蒐集、處理或利用本信件內容,並請銷毀此信件. >> 如為指定收件者,應確實保護郵件中本公司之營業機密及個人資料,不得任意傳佈或揭露,並應自行確認本郵件之附檔與超連結之安全性,以共同善盡資訊安全與個資保護責任. >> Please be advised that this email message (including any attachments) >> contains confidential information and may be legally privileged. If you are >> not the intended recipient, please destroy this message and all attachments >> from your system and do not further collect, process, or use them. Chunghwa >> Telecom and all its subsidiaries and associated companies shall not be >> liable for the improper or incomplete transmission of the information >> contained in this email nor for any delay in its receipt or damage to your >> system. If you are the intended recipient, please protect the confidential >> and/or personal information contained in this email with due care. Any >> unauthorized use, disclosure or distribution of this message in whole or in >> part is strictly prohibited. Also, please self-inspect attachments and >> hyperlinks contained in this email to ensure the information security and >> to protect personal information.* >> >> >> ------------------------------------------------------------------------------ >> Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer >> Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports >> Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper >> Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer >> >> http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk >> _______________________________________________ >> Webassembletool-users mailing list >> Web...@li... >> https://lists.sourceforge.net/lists/listinfo/webassembletool-users >> >> > |
From: Francois-Xavier B. <fra...@ce...> - 2014-09-24 12:41:25
|
Hi Augustus, For content types like text/html and application/xhtml+xml, EsiGate is buffering the complete response in order to parse it for ESI tags. You can override this with "parsableContentTypes" property. For all other content-types, EsiGate is streaming directly the response to the browser. What is the content-type header of the response you want to stream ? Which application server are you using (there are some differences in the way internal buffers work) ? What are the other response headers related to the cache (Cache-control, Expires, Last-Modified, E-Tag) ? 2014-09-24 12:01 GMT+02:00 <aug...@ch...>: > Hi, > > Dose esigate 4.1 can run in streaming mode?? It’s like fiddler > streaming mode > > > > > > We have problem when we use long-polling in esigate 4.1, > > > > user click execute button, long-polling will create channel > between client browser and backend Ap server through esigate, > > > > when channel is created, client browser will communicate with backend Ap > server, > > > > but it work always when esigate socketTimeout or websocket timeout, > > > > we found this problem in org.esigate.servlet.HttpServletMediator > line 193, > > > > when we click execute button, esigate will stop in > org.esigate.servlet.HttpServletMediator line 193 until it timeout, then work > > > > seems like esigate is waiting long-polling close, then it start do > response to client > > > > recently, we use fiddler access the app, it’s pending like > esigate, but when fiddler run in streaming mode, it’s works fine! > > > > So, esigate have streaming mode?? > > > > > > Thank you > > > > > > > > > > *本信件可能包含中華電信股份有限公司機密資訊,非指定之收件者,請勿蒐集、處理或利用本信件內容,並請銷毀此信件. > 如為指定收件者,應確實保護郵件中本公司之營業機密及個人資料,不得任意傳佈或揭露,並應自行確認本郵件之附檔與超連結之安全性,以共同善盡資訊安全與個資保護責任. > Please be advised that this email message (including any attachments) > contains confidential information and may be legally privileged. If you are > not the intended recipient, please destroy this message and all attachments > from your system and do not further collect, process, or use them. Chunghwa > Telecom and all its subsidiaries and associated companies shall not be > liable for the improper or incomplete transmission of the information > contained in this email nor for any delay in its receipt or damage to your > system. If you are the intended recipient, please protect the confidential > and/or personal information contained in this email with due care. Any > unauthorized use, disclosure or distribution of this message in whole or in > part is strictly prohibited. Also, please self-inspect attachments and > hyperlinks contained in this email to ensure the information security and > to protect personal information.* > > > ------------------------------------------------------------------------------ > Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer > Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports > Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper > Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer > > http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk > _______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > |
From: 謝福明 <aug...@ch...> - 2014-09-24 10:17:35
|
Hi, Dose esigate 4.1 can run in streaming mode?? It’s like fiddler streaming mode We have problem when we use long-polling in esigate 4.1, user click execute button, long-polling will create channel between client browser and backend Ap server through esigate, when channel is created, client browser will communicate with backend Ap server, but it work always when esigate socketTimeout or websocket timeout, we found this problem in org.esigate.servlet.HttpServletMediator line 193, when we click execute button, esigate will stop in org.esigate.servlet.HttpServletMediator line 193 until it timeout, then work seems like esigate is waiting long-polling close, then it start do response to client recently, we use fiddler access the app, it’s pending like esigate, but when fiddler run in streaming mode, it’s works fine! So, esigate have streaming mode?? Thank you Please be advised that this email message (including any attachments) contains confidential information and may be legally privileged. If you are not the intended recipient, please destroy this message and all attachments from your system and do not further collect, process, or use them. Chunghwa Telecom and all its subsidiaries and associated companies shall not be liable for the improper or incomplete transmission of the information contained in this email nor for any delay in its receipt or damage to your system. If you are the intended recipient, please protect the confidential and/or personal information contained in this email with due care. Any unauthorized use, disclosure or distribution of this message in whole or in part is strictly prohibited. Also, please self-inspect attachments and hyperlinks contained in this email to ensure the information security and to protect personal information. |
From: Nicolas R. <nic...@gm...> - 2014-06-16 13:24:16
|
web.xml is not located in WEB-INF Everything works if the file is moved at this location. -- Nicolas Le 16 juin 2014 à 15:16, alexis thaveau <ale...@gm...> a écrit : > Can you try to add in esigate.properties : > providerFret.extensions=org.esigate.servlet.ServletExtension,org.esigate.extension.Esi > > > 2014-06-16 14:51 GMT+02:00 PAUCHET, Jonathan <jon...@ca...>: > Hi, > > > > I’m trying to use esigate-servlet 5.0-beta-1. My application starts but esi:* tags seem not to be replaced when I display a page (http://localhost:8080/poc/pages/hello.jsp). > > > > You can find my source code as an attachment of this mail. Do you have any idea of what prevents me from displaying the content of my provider in my page ? > > > > Thanks. > > _______________________________________________________________________ > > <image001.gif>Jonathan PAUCHET > > Consultant | Division Services > > > > Capgemini France > > www.capgemini.com > > People matter, results count. > > _______________________________________________________________________ > > Capgemini is a trading name used by the Capgemini Group of companies which includes CAPGEMINI TECHNOLOGY SERVICES SAS, > > a company registered in France (RCS : 479 766 842 – APE 6202 A NANTERRE) > > whose registered office is at Tour Europlaza – 20 avenue André Prothin – 92927 Paris La défense cedex > > > > > This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message. > ------------------------------------------------------------------------------ > HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions > Find What Matters Most in Your Big Data with HPCC Systems > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > http://p.sf.net/sfu/hpccsystems > _______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > > ------------------------------------------------------------------------------ > HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions > Find What Matters Most in Your Big Data with HPCC Systems > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > http://p.sf.net/sfu/hpccsystems_______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users |
From: PAUCHET, J. <jon...@ca...> - 2014-06-16 12:51:27
|
This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message. |
From: Francois-Xavier B. <fra...@ce...> - 2014-06-11 09:21:25
|
Hi, +1 for this new feature It looks like the limit in Akamai EdgeSuite is 5 include levels and it is not configurable: http://www.akamai.com/dl/technical_publications/esi_faq.pdf It sounds like a good value. +1 with Nicolas for an attribute in the IncomingRequest 2014-06-11 10:56 GMT+02:00 <nic...@gm...>: > Hello Kamel, > > Currently esigate does not limit the depth of ESI includes. Other > implementations may set limits (according to what I read, Akamai limits to > 10 recursive includes for instance). > > I agree we should set a limit in the ESI extension. I had this in mind for > some times but I didn't work on it yet. > The Esi renderer implementation should track depth using a request > attribute, and increment/forward it to child requests. > > Feel free to open an issue on our bug tracker for this. If you wish to > work on this, you can even send us a pull request on GitHub. > > There is another open issue which matches your use case : a new extension > which pings providers to prevent session timeout as long as the esigate > session is alive. > > Regards, > -- > Nicolas > > Le 10 juin 2014 à 14:14, "Khir, Kamel" <kam...@eu...> a écrit : > > Good afternoon to all ESIgate support, > > We faced an issue on our production ESI Gate application. > We have seen that, because of a session time out, some inclusion tags were > always returned in HTML contents. > So i try to see if an existing solution exits in order to prevent the ESI > engine to perform more than X inclusions (tag including tag including > tag...). > My idea is to implement a check on the " inclusion deep" to limit the > number of inclusions allowed. > > Does it make sense ? Do you have a solution to implement this check ? > Thank you. > *Kamel KHIR* * | EIS APS E-Commerce | Application architect* > Kam...@eu... | Europcar.com <http://www.europcar.com/> > <https://www.facebook.com/europcar.worldwide/> > <https://twitter.com/Europcar/> > <http://www.linkedin.com/company/europcar> > <http://www.youtube.com/user/europcarworldwide> > > *This message and any attachments (the "message"), contains information > that may be privileged or confidential. It is intended only for the person > to whom it is addressed. Any unauthorised use or dissemination is > prohibited. Europcar shall not be liable for the message if altered, > changed or falsified. If you receive this message in error, please notify > the sender immediately and delete all copies of this message. Thank you.* > > > ------------------------------------------------------------------------------ > HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions > Find What Matters Most in Your Big Data with HPCC Systems > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > http://p.sf.net/sfu/hpccsystems > > _______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > > > ------------------------------------------------------------------------------ > HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions > Find What Matters Most in Your Big Data with HPCC Systems > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > http://p.sf.net/sfu/hpccsystems > _______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > |
From: Nicolas R. <nic...@gm...> - 2014-06-11 08:57:03
|
Hello Kamel, Currently esigate does not limit the depth of ESI includes. Other implementations may set limits (according to what I read, Akamai limits to 10 recursive includes for instance). I agree we should set a limit in the ESI extension. I had this in mind for some times but I didn't work on it yet. The Esi renderer implementation should track depth using a request attribute, and increment/forward it to child requests. Feel free to open an issue on our bug tracker for this. If you wish to work on this, you can even send us a pull request on GitHub. There is another open issue which matches your use case : a new extension which pings providers to prevent session timeout as long as the esigate session is alive. Regards, -- Nicolas > Le 10 juin 2014 à 14:14, "Khir, Kamel" <kam...@eu...> a écrit : > > Good afternoon to all ESIgate support, > > We faced an issue on our production ESI Gate application. > We have seen that, because of a session time out, some inclusion tags were always returned in HTML contents. > So i try to see if an existing solution exits in order to prevent the ESI engine to perform more than X inclusions (tag including tag including tag...). > My idea is to implement a check on the " inclusion deep" to limit the number of inclusions allowed. > > Does it make sense ? Do you have a solution to implement this check ? > Thank you. > Kamel KHIR | EIS APS E-Commerce | Application architect > Kam...@eu... | Europcar.com > > > > This message and any attachments (the "message"), contains information that may be privileged or confidential. It is intended only for the person to whom it is addressed. Any unauthorised use or dissemination is prohibited. Europcar shall not be liable for the message if altered, changed or falsified. If you receive this message in error, please notify the sender immediately and delete all copies of this message. Thank you. > > ------------------------------------------------------------------------------ > HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions > Find What Matters Most in Your Big Data with HPCC Systems > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > http://p.sf.net/sfu/hpccsystems > _______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users |
From: Khir, K. <kam...@eu...> - 2014-06-10 12:39:31
|
Good afternoon to all ESIgate support, We faced an issue on our production ESI Gate application. We have seen that, because of a session time out, some inclusion tags were always returned in HTML contents. So i try to see if an existing solution exits in order to prevent the ESI engine to perform more than X inclusions (tag including tag including tag...). My idea is to implement a check on the " inclusion deep" to limit the number of inclusions allowed. Does it make sense ? Do you have a solution to implement this check ? Thank you. *Kamel KHIR* * | EIS APS E-Commerce | Application architect* Kam...@eu... | Europcar.com <http://www.europcar.com/> <https://www.facebook.com/europcar.worldwide/> <https://twitter.com/Europcar/> <http://www.linkedin.com/company/europcar> <http://www.youtube.com/user/europcarworldwide> -- *This message and any attachments (the "message"), contains information that may be privileged or confidential. It is intended only for the person to whom it is addressed. Any unauthorised use or dissemination is prohibited. Europcar shall not be liable for the message if altered, changed or falsified. If you receive this message in error, please notify the sender immediately and delete all copies of this message. Thank you.* |
From: Francois-Xavier B. <fra...@ce...> - 2014-05-26 14:37:21
|
+1 Le 26 mai 2014 11:23, Philippe De Oliveira <phi...@gm...>a écrit : > Oui, j'ai assisté à la prés. C'est pas mal comme idée. On peut définir en > live la conf esigate, la prendre en compte à chaud, déployer le module > jahia-esigate à distance (depuis le studio). C'est un peu dans l'idée de ce > que t'as fait pour Liferay. > Du coup, ça serait pas mal de développer une admin ESIgate qu'on pourrait > pousser dans le module Jahia et qui s'intègrerait a l'admin Jahia. > > > 2014-05-24 19:49 GMT+02:00 alexis thaveau <ale...@gm...>: > > +1 >> @philippe : Jahia devait présenter à smile leur intégration esigate, as >> tu assisté à cette pres ? >> Le 24 mai 2014 16:30, "Nicolas Richeton" <nic...@gm...> a >> écrit : >> >> Salut, >>> >>> +1 >>> Note : les logo en haut sont positionnés aléatoirement. >>> >>> a+ >>> -- >>> Nicolas >>> >>> Le 22 mai 2014 à 14:30, Philippe De Oliveira < >>> phi...@gm...> a écrit : >>> >>> Salut à tous, >>> >>> J'ai eu Jahia au téléphone et il vont bientôt présenter leur intégration >>> avec ESIGate. Ils souhaiteraient du coup rediriger vers esigate.org et >>> souhaiterait du coup y apparaître. >>> Si c'est OK pour vous, je pensais à les ajouter dans le slider en haut >>> après Smile par exemple, et pourquoi pas en bas de page dans la section sur >>> le support après CapGemini. >>> >>> Qu'est-ce que vous en dites ? >>> >>> a+ >>> >>> -- >>> Philippe De Oliveira >>> >>> ------------------------------------------------------------------------------ >>> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE >>> Instantly run your Selenium tests across 300+ browser/OS combos. >>> Get unparalleled scalability from the best Selenium testing platform >>> available >>> Simple to use. Nothing to install. Get started now for free." >>> >>> http://p.sf.net/sfu/SauceLabs_______________________________________________ >>> Webassembletool-users mailing list >>> Web...@li... >>> https://lists.sourceforge.net/lists/listinfo/webassembletool-users >>> >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE >>> Instantly run your Selenium tests across 300+ browser/OS combos. >>> Get unparalleled scalability from the best Selenium testing platform >>> available >>> Simple to use. Nothing to install. Get started now for free." >>> http://p.sf.net/sfu/SauceLabs >>> _______________________________________________ >>> Webassembletool-users mailing list >>> Web...@li... >>> https://lists.sourceforge.net/lists/listinfo/webassembletool-users >>> >>> > > > -- > Philippe De Oliveira > > > > ------------------------------------------------------------------------------ > The best possible search technologies are now affordable for all companies. > Download your FREE open source Enterprise Search Engine today! > Our experts will assist you in its installation for $59/mo, no commitment. > Test it for FREE on our Cloud platform anytime! > > http://pubads.g.doubleclick.net/gampad/clk?id=145328191&iu=/4140/ostg.clktrk > _______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > |
From: Philippe De O. <phi...@gm...> - 2014-05-26 09:24:21
|
Oui, j'ai assisté à la prés. C'est pas mal comme idée. On peut définir en live la conf esigate, la prendre en compte à chaud, déployer le module jahia-esigate à distance (depuis le studio). C'est un peu dans l'idée de ce que t'as fait pour Liferay. Du coup, ça serait pas mal de développer une admin ESIgate qu'on pourrait pousser dans le module Jahia et qui s'intègrerait a l'admin Jahia. 2014-05-24 19:49 GMT+02:00 alexis thaveau <ale...@gm...>: > +1 > @philippe : Jahia devait présenter à smile leur intégration esigate, as tu > assisté à cette pres ? > Le 24 mai 2014 16:30, "Nicolas Richeton" <nic...@gm...> a > écrit : > > Salut, >> >> +1 >> Note : les logo en haut sont positionnés aléatoirement. >> >> a+ >> -- >> Nicolas >> >> Le 22 mai 2014 à 14:30, Philippe De Oliveira < >> phi...@gm...> a écrit : >> >> Salut à tous, >> >> J'ai eu Jahia au téléphone et il vont bientôt présenter leur intégration >> avec ESIGate. Ils souhaiteraient du coup rediriger vers esigate.org et >> souhaiterait du coup y apparaître. >> Si c'est OK pour vous, je pensais à les ajouter dans le slider en haut >> après Smile par exemple, et pourquoi pas en bas de page dans la section sur >> le support après CapGemini. >> >> Qu'est-ce que vous en dites ? >> >> a+ >> >> -- >> Philippe De Oliveira >> >> ------------------------------------------------------------------------------ >> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE >> Instantly run your Selenium tests across 300+ browser/OS combos. >> Get unparalleled scalability from the best Selenium testing platform >> available >> Simple to use. Nothing to install. Get started now for free." >> >> http://p.sf.net/sfu/SauceLabs_______________________________________________ >> Webassembletool-users mailing list >> Web...@li... >> https://lists.sourceforge.net/lists/listinfo/webassembletool-users >> >> >> >> >> ------------------------------------------------------------------------------ >> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE >> Instantly run your Selenium tests across 300+ browser/OS combos. >> Get unparalleled scalability from the best Selenium testing platform >> available >> Simple to use. Nothing to install. Get started now for free." >> http://p.sf.net/sfu/SauceLabs >> _______________________________________________ >> Webassembletool-users mailing list >> Web...@li... >> https://lists.sourceforge.net/lists/listinfo/webassembletool-users >> >> -- Philippe De Oliveira |
From: alexis t. <ale...@gm...> - 2014-05-24 17:49:19
|
+1 @philippe : Jahia devait présenter à smile leur intégration esigate, as tu assisté à cette pres ? Le 24 mai 2014 16:30, "Nicolas Richeton" <nic...@gm...> a écrit : > Salut, > > +1 > Note : les logo en haut sont positionnés aléatoirement. > > a+ > -- > Nicolas > > Le 22 mai 2014 à 14:30, Philippe De Oliveira < > phi...@gm...> a écrit : > > Salut à tous, > > J'ai eu Jahia au téléphone et il vont bientôt présenter leur intégration > avec ESIGate. Ils souhaiteraient du coup rediriger vers esigate.org et > souhaiterait du coup y apparaître. > Si c'est OK pour vous, je pensais à les ajouter dans le slider en haut > après Smile par exemple, et pourquoi pas en bas de page dans la section sur > le support après CapGemini. > > Qu'est-ce que vous en dites ? > > a+ > > -- > Philippe De Oliveira > > ------------------------------------------------------------------------------ > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. > Get unparalleled scalability from the best Selenium testing platform > available > Simple to use. Nothing to install. Get started now for free." > > http://p.sf.net/sfu/SauceLabs_______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > > > > ------------------------------------------------------------------------------ > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. > Get unparalleled scalability from the best Selenium testing platform > available > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > _______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > |
From: Nicolas R. <nic...@gm...> - 2014-05-24 14:29:57
|
Salut, +1 Note : les logo en haut sont positionnés aléatoirement. a+ -- Nicolas Le 22 mai 2014 à 14:30, Philippe De Oliveira <phi...@gm...> a écrit : > Salut à tous, > > J'ai eu Jahia au téléphone et il vont bientôt présenter leur intégration avec ESIGate. Ils souhaiteraient du coup rediriger vers esigate.org et souhaiterait du coup y apparaître. > Si c'est OK pour vous, je pensais à les ajouter dans le slider en haut après Smile par exemple, et pourquoi pas en bas de page dans la section sur le support après CapGemini. > > Qu'est-ce que vous en dites ? > > a+ > > -- > Philippe De Oliveira > > ------------------------------------------------------------------------------ > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. > Get unparalleled scalability from the best Selenium testing platform available > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs_______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users |
From: Philippe De O. <phi...@gm...> - 2014-05-22 12:31:02
|
Salut à tous, J'ai eu Jahia au téléphone et il vont bientôt présenter leur intégration avec ESIGate. Ils souhaiteraient du coup rediriger vers esigate.org et souhaiterait du coup y apparaître. Si c'est OK pour vous, je pensais à les ajouter dans le slider en haut après Smile par exemple, et pourquoi pas en bas de page dans la section sur le support après CapGemini. Qu'est-ce que vous en dites ? a+ -- Philippe De Oliveira |
From: Francois-Xavier B. <fra...@ce...> - 2014-04-28 14:07:25
|
Hi Johann, The bug is fixed. Could you check with the latest snapshot ? 2014-04-24 16:20 GMT+02:00 Alexis THAVEAU <ale...@sm...>: > I added a note to the mantis. > > > > In ResponseCapturingWrapper.getResponse() line 429 : > > httpClientResponse.setEntity(new > ByteArrayEntity(internalOutputStream.toByteArray(), 0, Math.min( > bytesWritten, bufferSize), contentType)); > > We should take the max not the min. Actually, buffer size is set to 2048 > in jboss AS, this is why content is truncated. > > > > > > > > > Le 2014-04-24 16:05, Francois-Xavier Bonnet a écrit : > > Thanks for the files. I have been able to reproduce the issue. > Unfotrunately I will not have time today to investigate more on it. > > > 2014-04-24 10:56 GMT+02:00 Nicolas Richeton <nic...@gm...>: > >> Hi Johann, >> >> Thanks for these details. >> >> The bugtracker is here : >> http://sourceforge.net/apps/mantisbt/webassembletool/ >> (you can get this link on esigate.org) >> >> We moved the code to github yesterday (https://github.com/esigate/esigate). >> This is now the official code repository. Snapshots and releases are >> publish from this repo. >> >> ProxyFilter is the way to go, but is new on 5.0. This could be a bug. >> >> -> Francois-Xavier, any idea on this ? >> >> Please open an issue. If you can create a test case or a standalone app >> which demonstrate the issue, it would be even better. >> I'l take a look at this asap. >> >> -- >> Nicolas >> >> >> Le 24 avr. 2014 à 09:58, Johann Böhler <joh...@1u...> a >> écrit : >> >> Hi Nicolas, >> >> >> >> I'm new to ESIGate, so I'm sorry if my questions aren't as precise :) >> >> >> >> I'm using "org.esigate:esigate-servlet:5.0-SNAPSHOT" as the dependency >> for my .war. >> >> I added the ProxyFilter to my web.xml and deployed everything on JBoss >> 7.1.1.Final. It's a default JBoss instance, as you can download it from >> their website. >> >> >> >> So it works perfectly for small pages, but when I added the "AdminLTE" >> template (https://github.com/almasaeed2010/AdminLTE) the problems >> started to occur. I can't open the index page properly. The source ends >> with >> >> >> <div class="pull-left"> <img src="resources/img/avatar2.png" >> class="img-cir >> >> The rest of it is dropped. >> >> >> >> I don't use the "esigate.properties", instead I have a Singleton/Startup >> bean that uses the DriverFactory in a PostConstruct method to confgure it >> with a Properties instance. This is basically the code for the >> initialization: >> >> >> >> Properties properties = new Properties(); >> properties.put("esigate.remoteUrlBase","http://localhost:8080/test"); >> >> properties.put("esigate.extensions","org.esigate.servlet.ServletExtension,org.esigate.extension.Esi"); >> properties.put("esigate.mappings","/*"); >> properties.put("esigate.useCache", "false"); >> properties.put("esigate.maxObjectSize", "0"); >> DriverFactory.configure(properties); >> >> So it's pretty basic, nothing special. As I mentioned, when caching is >> turned on, the only thing I get as a response when I call >> http://localhost:8080/test/index.html is an error message as send by the >> BasicHttpCache in http-client. So I turned it off, to see something at >> least. I also already tried to replace the httcomponents library by version >> 4.3.3 without any effect. I didn't try the other caches though. But caching >> is not the biggest issue for me >> >> One more question, where can I open a bug / feature request? Do you have >> a public issue tracker? >> I also read somewhere that you will migrate the project to GitHub. Do you >> have a timeline for this? >> >> Best regards >> Johann >> >> >> >> >> ------------------------------ >> *Von:* Nicolas Richeton <nic...@gm...> >> *Gesendet:* Mittwoch, 23. April 2014 19:09 >> *An:* Johann Böhler >> *Cc:* web...@li... >> *Betreff:* Re: [EsiGate-users] Site exceeds 2KB >> >> Hi Johann, >> >> We never hit this issue. Esigate is in production on very large pages. >> >> Feel free to open a bug to discuss on it. We will need more details : >> - Which esigate version are you using ? >> - What is your setup esigate-server (standalone) / esigate-war (WAR in >> tomcat/other) / esigate-core (API) >> - logs (fetch.log/fragment.log) >> - configuration esigate.properties >> - backend/provider server used >> - does your backend/provider application uses any of these : >> 100-continue, long-polling, websockets ? >> >> Nicolas >> >> Le 23 avr. 2014 à 17:55, Johann Böhler <joh...@1u...> a >> écrit : >> >> Hi guys, >> >> >> I just had a look at your library and it’s really pretty awesome. >> >> >> But I have problem when I’m starting to render pages which exceed 2KB in >> size. First I got the error message >> >> >> Received incomplete response with Content-Length 12341234 but actual body length 2048 >> >> >> >> @ BasicHttpCache in http-client >> >> >> When I turned off caching, the website to display gets cut after it hits >> the 2KB limit. So basically I can only see the header of the website. >> >> Can you help me? >> >> >> Best regards, >> >> Johann >> >> >> >> ------------------------------------------------------------------------------ >> Start Your Social Network Today - Download eXo Platform >> Build your Enterprise Intranet with eXo Platform Software >> Java Based Open Source Intranet - Social, Extensible, Cloud Ready >> Get Started Now And Turn Your Intranet Into A Collaboration Platform >> >> http://p.sf.net/sfu/ExoPlatform_______________________________________________ >> Webassembletool-users mailing list >> Web...@li... >> https://lists.sourceforge.net/lists/listinfo/webassembletool-users >> >> >> >> ------------------------------------------------------------------------------ >> Start Your Social Network Today - Download eXo Platform >> Build your Enterprise Intranet with eXo Platform Software >> Java Based Open Source Intranet - Social, Extensible, Cloud Ready >> Get Started Now And Turn Your Intranet Into A Collaboration Platform >> http://p.sf.net/sfu/ExoPlatform >> _______________________________________________ >> Webassembletool-users mailing list >> Web...@li... >> https://lists.sourceforge.net/lists/listinfo/webassembletool-users >> >> > ------------------------------------------------------------------------------ > Start Your Social Network Today - Download eXo Platform > Build your Enterprise Intranet with eXo Platform Software > Java Based Open Source Intranet - Social, Extensible, Cloud Ready > Get Started Now And Turn Your Intranet Into A Collaboration Platformhttp://p.sf.net/sfu/ExoPlatform > > > _______________________________________________ > Webassembletool-users mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > > > ------------------------------------------------------------------------------ > Start Your Social Network Today - Download eXo Platform > Build your Enterprise Intranet with eXo Platform Software > Java Based Open Source Intranet - Social, Extensible, Cloud Ready > Get Started Now And Turn Your Intranet Into A Collaboration Platform > http://p.sf.net/sfu/ExoPlatform > _______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > |
From: Alexis T. <ale...@sm...> - 2014-04-24 14:20:16
|
I added a note to the mantis. In ResponseCapturingWrapper.getResponse() line 429 : httpClientResponse.setEntity(new ByteArrayEntity(internalOutputStream.toByteArray(), 0, Math.min( bytesWritten, bufferSize), contentType)); We should take the max not the min. Actually, buffer size is set to 2048 in jboss AS, this is why content is truncated. Le 2014-04-24 16:05, Francois-Xavier Bonnet a écrit : > Thanks for the files. I have been able to reproduce the issue. Unfotrunately I will not have time today to investigate more on it. > > 2014-04-24 10:56 GMT+02:00 Nicolas Richeton <nic...@gm...>: > >> Hi Johann, >> >> Thanks for these details. >> >> The bugtracker is here : http://sourceforge.net/apps/mantisbt/webassembletool/ [6] >> (you can get this link on esigate.org [7]) >> >> We moved the code to github yesterday (https://github.com/esigate/esigate [8]). This is now the official code repository. Snapshots and releases are publish from this repo. >> >> ProxyFilter is the way to go, but is new on 5.0. This could be a bug. >> >> -> Francois-Xavier, any idea on this ? >> >> Please open an issue. If you can create a test case or a standalone app which demonstrate the issue, it would be even better. >> I'l take a look at this asap. >> >> -- >> Nicolas >> >> Le 24 avr. 2014 à 09:58, Johann Böhler <joh...@1u...> a écrit : >> >>> Hi Nicolas, >>> >>> I'm new to ESIGate, so I'm sorry if my questions aren't as precise :) >>> >>> I'm using "org.esigate:esigate-servlet:5.0-SNAPSHOT" as the dependency for my .war. >>> >>> I added the ProxyFilter to my web.xml and deployed everything on JBoss 7.1.1.Final. It's a default JBoss instance, as you can download it from their website. >>> >>> So it works perfectly for small pages, but when I added the "AdminLTE" template (https://github.com/almasaeed2010/AdminLTE [3]) the problems started to occur. I can't open the index page properly. The source ends with >>> >>> <div class="pull-left"> >>> >>> <img src="resources/img/avatar2.png" class="img-cir >>> >>> The rest of it is dropped. >>> >>> I don't use the "esigate.properties", instead I have a Singleton/Startup bean that uses the DriverFactory in a PostConstruct method to confgure it with a Properties instance. This is basically the code for the initialization: >>> >>> Properties properties = new Properties(); >>> >>> properties.put("esigate.remoteUrlBase","http://localhost:8080/test [4]"); >>> properties.put("esigate.extensions","org.esigate.servlet.ServletExtension,org.esigate.extension.Esi"); >>> >>> properties.put("esigate.mappings","/*"); >>> properties.put("esigate.useCache", "false"); >>> >>> properties.put("esigate.maxObjectSize", "0"); >>> >>> DriverFactory.configure(properties); >>> >>> So it's pretty basic, nothing special. As I mentioned, when caching is turned on, the only thing I get as a response when I call http://localhost:8080/test/index.html [5] is an error message as send by the BasicHttpCache in http-client. So I turned it off, to see something at least. I also already tried to replace the httcomponents library by version 4.3.3 without any effect. I didn't try the other caches though. But caching is not the biggest issue for me >>> >>> One more question, where can I open a bug / feature request? Do you have a public issue tracker? >>> I also read somewhere that you will migrate the project to GitHub. Do you have a timeline for this? >>> >>> Best regards >>> Johann >>> >>> >>> >>> ------------------------- >>> >>> VON: Nicolas Richeton <nic...@gm...> >>> GESENDET: Mittwoch, 23. April 2014 19:09 >>> AN: Johann Böhler >>> CC: web...@li... >>> BETREFF: Re: [EsiGate-users] Site exceeds 2KB >>> >>> Hi Johann, >>> >>> We never hit this issue. Esigate is in production on very large pages. >>> >>> Feel free to open a bug to discuss on it. We will need more details : >>> - Which esigate version are you using ? >>> - What is your setup esigate-server (standalone) / esigate-war (WAR in tomcat/other) / esigate-core (API) >>> - logs (fetch.log/fragment.log) >>> - configuration esigate.properties >>> - backend/provider server used >>> - does your backend/provider application uses any of these : 100-continue, long-polling, websockets ? >>> >>> Nicolas >>> >>> Le 23 avr. 2014 à 17:55, Johann Böhler <joh...@1u...> a écrit : >>> >>>> Hi guys, >>>> >>>> I just had a look at your library and it's really pretty awesome. >>>> >>>> But I have problem when I'm starting to render pages which exceed 2KB in size. First I got the error message >>>> >>>> Received incomplete response with Content-Length 12341234 but actual body length 2048 >>>> >>>> @ BasicHttpCache in http-client >>>> >>>> When I turned off caching, the website to display gets cut after it hits the 2KB limit. So basically I can only see the header of the website. >>>> >>>> Can you help me? >>>> >>>> Best regards, >>>> >>>> Johann >>>> >>>> ------------------------------------------------------------------------------ >>>> Start Your Social Network Today - Download eXo Platform >>>> Build your Enterprise Intranet with eXo Platform Software >>>> Java Based Open Source Intranet - Social, Extensible, Cloud Ready >>>> Get Started Now And Turn Your Intranet Into A Collaboration Platform >>>> http://p.sf.net/sfu/ExoPlatform_______________________________________________ [1] >>>> Webassembletool-users mailing list >>>> Web...@li... >>>> https://lists.sourceforge.net/lists/listinfo/webassembletool-users [2] >> >> ------------------------------------------------------------------------------ >> Start Your Social Network Today - Download eXo Platform >> Build your Enterprise Intranet with eXo Platform Software >> Java Based Open Source Intranet - Social, Extensible, Cloud Ready >> Get Started Now And Turn Your Intranet Into A Collaboration Platform >> http://p.sf.net/sfu/ExoPlatform [9] >> _______________________________________________ >> Webassembletool-users mailing list >> Web...@li... >> https://lists.sourceforge.net/lists/listinfo/webassembletool-users [2] > > ------------------------------------------------------------------------------ > Start Your Social Network Today - Download eXo Platform > Build your Enterprise Intranet with eXo Platform Software > Java Based Open Source Intranet - Social, Extensible, Cloud Ready > Get Started Now And Turn Your Intranet Into A Collaboration Platform > http://p.sf.net/sfu/ExoPlatform [9] > > _______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users [2] Links: ------ [1] http://p.sf.net/sfu/ExoPlatform_______________________________________________ [2] https://lists.sourceforge.net/lists/listinfo/webassembletool-users [3] https://github.com/almasaeed2010/AdminLTE [4] http://localhost:8080/test [5] http://localhost:8080/test/index.html [6] http://sourceforge.net/apps/mantisbt/webassembletool/ [7] http://esigate.org [8] https://github.com/esigate/esigate [9] http://p.sf.net/sfu/ExoPlatform |
From: Francois-Xavier B. <fra...@ce...> - 2014-04-24 14:05:57
|
Thanks for the files. I have been able to reproduce the issue. Unfotrunately I will not have time today to investigate more on it. 2014-04-24 10:56 GMT+02:00 Nicolas Richeton <nic...@gm...>: > Hi Johann, > > Thanks for these details. > > The bugtracker is here : > http://sourceforge.net/apps/mantisbt/webassembletool/ > (you can get this link on esigate.org) > > We moved the code to github yesterday (https://github.com/esigate/esigate). > This is now the official code repository. Snapshots and releases are > publish from this repo. > > ProxyFilter is the way to go, but is new on 5.0. This could be a bug. > > -> Francois-Xavier, any idea on this ? > > Please open an issue. If you can create a test case or a standalone app > which demonstrate the issue, it would be even better. > I'l take a look at this asap. > > -- > Nicolas > > > Le 24 avr. 2014 à 09:58, Johann Böhler <joh...@1u...> a écrit : > > Hi Nicolas, > > > I'm new to ESIGate, so I'm sorry if my questions aren't as precise :) > > > I'm using "org.esigate:esigate-servlet:5.0-SNAPSHOT" as the dependency > for my .war. > > I added the ProxyFilter to my web.xml and deployed everything on JBoss > 7.1.1.Final. It's a default JBoss instance, as you can download it from > their website. > > > So it works perfectly for small pages, but when I added the "AdminLTE" > template (https://github.com/almasaeed2010/AdminLTE) the problems started > to occur. I can't open the index page properly. The source ends with > > > <div class="pull-left"> <img src="resources/img/avatar2.png" > class="img-cir > > The rest of it is dropped. > > > I don't use the "esigate.properties", instead I have a Singleton/Startup > bean that uses the DriverFactory in a PostConstruct method to confgure it > with a Properties instance. This is basically the code for the > initialization: > > > Properties properties = new Properties(); > properties.put("esigate.remoteUrlBase","http://localhost:8080/test"); > > properties.put("esigate.extensions","org.esigate.servlet.ServletExtension,org.esigate.extension.Esi"); > properties.put("esigate.mappings","/*"); > properties.put("esigate.useCache", "false"); > properties.put("esigate.maxObjectSize", "0"); > DriverFactory.configure(properties); > > So it's pretty basic, nothing special. As I mentioned, when caching is > turned on, the only thing I get as a response when I call > http://localhost:8080/test/index.html is an error message as send by the > BasicHttpCache in http-client. So I turned it off, to see something at > least. I also already tried to replace the httcomponents library by version > 4.3.3 without any effect. I didn't try the other caches though. But caching > is not the biggest issue for me > > One more question, where can I open a bug / feature request? Do you have > a public issue tracker? > I also read somewhere that you will migrate the project to GitHub. Do you > have a timeline for this? > > Best regards > Johann > > > > > ------------------------------ > *Von:* Nicolas Richeton <nic...@gm...> > *Gesendet:* Mittwoch, 23. April 2014 19:09 > *An:* Johann Böhler > *Cc:* web...@li... > *Betreff:* Re: [EsiGate-users] Site exceeds 2KB > > Hi Johann, > > We never hit this issue. Esigate is in production on very large pages. > > Feel free to open a bug to discuss on it. We will need more details : > - Which esigate version are you using ? > - What is your setup esigate-server (standalone) / esigate-war (WAR in > tomcat/other) / esigate-core (API) > - logs (fetch.log/fragment.log) > - configuration esigate.properties > - backend/provider server used > - does your backend/provider application uses any of these : > 100-continue, long-polling, websockets ? > > Nicolas > > Le 23 avr. 2014 à 17:55, Johann Böhler <joh...@1u...> a > écrit : > > Hi guys, > > > I just had a look at your library and it’s really pretty awesome. > > > But I have problem when I’m starting to render pages which exceed 2KB in > size. First I got the error message > > > Received incomplete response with Content-Length 12341234 but actual body length 2048 > > > > @ BasicHttpCache in http-client > > > When I turned off caching, the website to display gets cut after it hits > the 2KB limit. So basically I can only see the header of the website. > > Can you help me? > > > Best regards, > > Johann > > > > ------------------------------------------------------------------------------ > Start Your Social Network Today - Download eXo Platform > Build your Enterprise Intranet with eXo Platform Software > Java Based Open Source Intranet - Social, Extensible, Cloud Ready > Get Started Now And Turn Your Intranet Into A Collaboration Platform > > http://p.sf.net/sfu/ExoPlatform_______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > > > > > ------------------------------------------------------------------------------ > Start Your Social Network Today - Download eXo Platform > Build your Enterprise Intranet with eXo Platform Software > Java Based Open Source Intranet - Social, Extensible, Cloud Ready > Get Started Now And Turn Your Intranet Into A Collaboration Platform > http://p.sf.net/sfu/ExoPlatform > _______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > |
From: Nicolas R. <nic...@gm...> - 2014-04-24 08:56:30
|
Hi Johann, Thanks for these details. The bugtracker is here : http://sourceforge.net/apps/mantisbt/webassembletool/ (you can get this link on esigate.org) We moved the code to github yesterday (https://github.com/esigate/esigate). This is now the official code repository. Snapshots and releases are publish from this repo. ProxyFilter is the way to go, but is new on 5.0. This could be a bug. -> Francois-Xavier, any idea on this ? Please open an issue. If you can create a test case or a standalone app which demonstrate the issue, it would be even better. I'l take a look at this asap. -- Nicolas Le 24 avr. 2014 à 09:58, Johann Böhler <joh...@1u...> a écrit : > Hi Nicolas, > > I'm new to ESIGate, so I'm sorry if my questions aren't as precise :) > > I'm using "org.esigate:esigate-servlet:5.0-SNAPSHOT" as the dependency for my .war. > I added the ProxyFilter to my web.xml and deployed everything on JBoss 7.1.1.Final. It's a default JBoss instance, as you can download it from their website. > > So it works perfectly for small pages, but when I added the "AdminLTE" template (https://github.com/almasaeed2010/AdminLTE) the problems started to occur. I can't open the index page properly. The source ends with > > <div class="pull-left"> > <img src="resources/img/avatar2.png" class="img-cir > > The rest of it is dropped. > > I don't use the "esigate.properties", instead I have a Singleton/Startup bean that uses the DriverFactory in a PostConstruct method to confgure it with a Properties instance. This is basically the code for the initialization: > > Properties properties = new Properties(); > properties.put("esigate.remoteUrlBase","http://localhost:8080/test"); > properties.put("esigate.extensions","org.esigate.servlet.ServletExtension,org.esigate.extension.Esi"); > properties.put("esigate.mappings","/*"); > properties.put("esigate.useCache", "false"); > properties.put("esigate.maxObjectSize", "0"); > DriverFactory.configure(properties); > > So it's pretty basic, nothing special. As I mentioned, when caching is turned on, the only thing I get as a response when I call http://localhost:8080/test/index.html is an error message as send by the BasicHttpCache in http-client. So I turned it off, to see something at least. I also already tried to replace the httcomponents library by version 4.3.3 without any effect. I didn't try the other caches though. But caching is not the biggest issue for me > > One more question, where can I open a bug / feature request? Do you have a public issue tracker? > I also read somewhere that you will migrate the project to GitHub. Do you have a timeline for this? > > Best regards > Johann > > > Von: Nicolas Richeton <nic...@gm...> > Gesendet: Mittwoch, 23. April 2014 19:09 > An: Johann Böhler > Cc: web...@li... > Betreff: Re: [EsiGate-users] Site exceeds 2KB > > Hi Johann, > > We never hit this issue. Esigate is in production on very large pages. > > Feel free to open a bug to discuss on it. We will need more details : > - Which esigate version are you using ? > - What is your setup esigate-server (standalone) / esigate-war (WAR in tomcat/other) / esigate-core (API) > - logs (fetch.log/fragment.log) > - configuration esigate.properties > - backend/provider server used > - does your backend/provider application uses any of these : 100-continue, long-polling, websockets ? > > Nicolas > > Le 23 avr. 2014 à 17:55, Johann Böhler <joh...@1u...> a écrit : > >> Hi guys, >> >> I just had a look at your library and it’s really pretty awesome. >> >> But I have problem when I’m starting to render pages which exceed 2KB in size. First I got the error message >> >> Received incomplete response with Content-Length 12341234 but actual body length 2048 >> >> @ BasicHttpCache in http-client >> >> When I turned off caching, the website to display gets cut after it hits the 2KB limit. So basically I can only see the header of the website. >> Can you help me? >> >> Best regards, >> Johann >> >> >> ------------------------------------------------------------------------------ >> Start Your Social Network Today - Download eXo Platform >> Build your Enterprise Intranet with eXo Platform Software >> Java Based Open Source Intranet - Social, Extensible, Cloud Ready >> Get Started Now And Turn Your Intranet Into A Collaboration Platform >> http://p.sf.net/sfu/ExoPlatform_______________________________________________ >> Webassembletool-users mailing list >> Web...@li... >> https://lists.sourceforge.net/lists/listinfo/webassembletool-users > |
From: Nicolas R. <nic...@gm...> - 2014-04-23 17:09:56
|
Hi Johann, We never hit this issue. Esigate is in production on very large pages. Feel free to open a bug to discuss on it. We will need more details : - Which esigate version are you using ? - What is your setup esigate-server (standalone) / esigate-war (WAR in tomcat/other) / esigate-core (API) - logs (fetch.log/fragment.log) - configuration esigate.properties - backend/provider server used - does your backend/provider application uses any of these : 100-continue, long-polling, websockets ? Nicolas Le 23 avr. 2014 à 17:55, Johann Böhler <joh...@1u...> a écrit : > Hi guys, > > I just had a look at your library and it’s really pretty awesome. > > But I have problem when I’m starting to render pages which exceed 2KB in size. First I got the error message > > Received incomplete response with Content-Length 12341234 but actual body length 2048 > > @ BasicHttpCache in http-client > > When I turned off caching, the website to display gets cut after it hits the 2KB limit. So basically I can only see the header of the website. > Can you help me? > > Best regards, > Johann > > > ------------------------------------------------------------------------------ > Start Your Social Network Today - Download eXo Platform > Build your Enterprise Intranet with eXo Platform Software > Java Based Open Source Intranet - Social, Extensible, Cloud Ready > Get Started Now And Turn Your Intranet Into A Collaboration Platform > http://p.sf.net/sfu/ExoPlatform_______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users |
From: Francois-Xavier B. <fra...@ce...> - 2014-04-23 16:06:38
|
Hi Johann, Could you send your esigate.properties configuration file ? Is the target website publicly available so that I can try to reproduce your issue ? Which version of EsiGate are you using ? 2014-04-23 17:55 GMT+02:00 Johann Böhler <joh...@1u...>: > Hi guys, > > > > I just had a look at your library and it’s really pretty awesome. > > > > But I have problem when I’m starting to render pages which exceed 2KB in > size. First I got the error message > > > > Received incomplete response with Content-Length 12341234 but actual body length 2048 > > > > @ BasicHttpCache in http-client > > > > When I turned off caching, the website to display gets cut after it hits > the 2KB limit. So basically I can only see the header of the website. > > Can you help me? > > > > Best regards, > > Johann > > > > > > > ------------------------------------------------------------------------------ > Start Your Social Network Today - Download eXo Platform > Build your Enterprise Intranet with eXo Platform Software > Java Based Open Source Intranet - Social, Extensible, Cloud Ready > Get Started Now And Turn Your Intranet Into A Collaboration Platform > http://p.sf.net/sfu/ExoPlatform > _______________________________________________ > Webassembletool-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webassembletool-users > > |
From: Johann B. <joh...@1u...> - 2014-04-23 15:55:24
|
Hi guys, I just had a look at your library and it's really pretty awesome. But I have problem when I'm starting to render pages which exceed 2KB in size. First I got the error message Received incomplete response with Content-Length 12341234 but actual body length 2048 @ BasicHttpCache in http-client When I turned off caching, the website to display gets cut after it hits the 2KB limit. So basically I can only see the header of the website. Can you help me? Best regards, Johann |
From: Nicolas R. <nic...@gm...> - 2014-01-15 09:42:21
|
Hi all, Esigate 4.3 is released. This release fixes a bug on X-Forwarded-* headers handling. Esigate - 4.3 ============= - 0000279: [Core] X-Forwarded-* fixes (nricheton) - resolved. Artifacts are deployed as usual on maven central repository. A side note : We are actively working on esigate 5.0 which will contains major changes and improvements. We are planning to release a beta soon. In the mean time, you can get and test the current snapshot from sonatype oss repository : https://oss.sonatype.org/content/repositories/snapshots/ (https://oss.sonatype.org/content/repositories/snapshots/org/esigate/) Configuration steps have changed, take a look at esigate-war project as an example. -- Nicolas |
From: Nicolas R. <nic...@gm...> - 2013-10-22 16:48:53
|
Hi, Esigate 4.2.1 is released. This release fixes a bug on the parallel esi processing which was always working in linear mode even if it was configured for using multiple threads. (This is a test feature, not GA yet and must be enabled manually). Esigate - 4.2.1 =============== - 0000270: [Core] Parallel ESI does not use threads. (nricheton) - closed. -- Nicolas Le 21 oct. 2013 à 19:24, Nicolas Richeton <nic...@gm...> a écrit : > Hi everyone, > > Esigate 4.2 is released. This is a maintenance release : > > Esigate - 4.2 > ============= > - 0000252: [Core] mappings configuration : remove context (nricheton) - resolved. > - 0000251: [Core] Documentation issue "mappings" or "mapping" ? (nricheton) - resolved. > - 0000242: [General] Automatically deploy snapshots (nricheton) - resolved. > - 0000247: [Core] Support for ESI variables default value (nricheton) - resolved. > - 0000249: [Core] <esi:when test="expr"> does not support operators containing > or < (nricheton) - resolved. > - 0000240: [General] Site improvements(wiki, mailing lists) (nricheton) - resolved. > - 0000238: [Core] ResourceFixUp does not support the protocol-relative urls (nricheton) - closed. > - 0000239: [Core] Most status code 20x, 30x are considered as errors (nricheton) - closed. > - 0000231: [Core] ESIgate should be enable to mashup elements for an error/404 page (nricheton) - closed. > - 0000246: [Core] ESI variables are not available / replaced (nricheton) - closed. > - 0000260: [Core] Display esigate version and scm revision on startup (nricheton) - closed. > - 0000259: [Core] Display real target host in fetch logs (nricheton) - closed. > > > Artefacts will be soon available from the maven central repository. > > -- > Nicolas |
From: Nicolas R. <nic...@gm...> - 2013-10-21 17:24:39
|
Hi everyone, Esigate 4.2 is released. This is a maintenance release : Esigate - 4.2 ============= - 0000252: [Core] mappings configuration : remove context (nricheton) - resolved. - 0000251: [Core] Documentation issue "mappings" or "mapping" ? (nricheton) - resolved. - 0000242: [General] Automatically deploy snapshots (nricheton) - resolved. - 0000247: [Core] Support for ESI variables default value (nricheton) - resolved. - 0000249: [Core] <esi:when test="expr"> does not support operators containing > or < (nricheton) - resolved. - 0000240: [General] Site improvements(wiki, mailing lists) (nricheton) - resolved. - 0000238: [Core] ResourceFixUp does not support the protocol-relative urls (nricheton) - closed. - 0000239: [Core] Most status code 20x, 30x are considered as errors (nricheton) - closed. - 0000231: [Core] ESIgate should be enable to mashup elements for an error/404 page (nricheton) - closed. - 0000246: [Core] ESI variables are not available / replaced (nricheton) - closed. - 0000260: [Core] Display esigate version and scm revision on startup (nricheton) - closed. - 0000259: [Core] Display real target host in fetch logs (nricheton) - closed. Artefacts will be soon available from the maven central repository. -- Nicolas |
From: Nicolas R. <nic...@gm...> - 2013-07-29 14:35:24
|
Hi Esigate users, The development builds are now available on Sonatype OSS repository [1] for both 4.X an 5.X branches. They are automatically deployed on every change. This is an easy way to test the latest development version, especially to ensure a bug as been fixed on a dev branch. Remember using snapshot is only for testing. Any snapshot older than 15 days will be deleted automatically so there may sometimes be no snapshots available at all (but this is unlikely :-) ). [1] https://oss.sonatype.org/content/repositories/snapshots/ -- Nicolas |