Re: How to get Html Source of a Page

2011-12-22 Thread Bo Gao
Thank you, Chris, this is what I am looking for. On Dec 22, 2011, at 6:40 PM, Christian Köberl wrote: > 2011-12-22 11:21, Bo Gao: >> I have a page, how can I get the page's HTML source as a String in another >> page or Service method? > > You can get the real Source by Class#getResource

Re: How to get Html Source of a Page

2011-12-22 Thread Christian Köberl
2011-12-22 11:21, Bo Gao: > I have a page, how can I get the page's HTML source as a String in another > page or Service method? You can get the real Source by Class#getResourceAsStream(String), e.g. Index.class.getResourceAsStream("/test/Index.tml"); If you want to generate content of your temp

Re: How to get Html Source of a Page

2011-12-22 Thread Christian Riedel
what do you want to do with the source? whatever it is, I think it's going to be very inefficient. except you want to use it for testing. for that case I recommend the PageTester. Am 22.12.2011 um 11:21 schrieb Bo Gao: > I have a page, how can I get the page's HTML source as a String in another

How to get Html Source of a Page

2011-12-22 Thread Bo Gao
I have a page, how can I get the page's HTML source as a String in another page or Service method? -- Bo Gao eli...@gmail.com