Re: Wicket and youtube browser based upload

2011-04-20 Thread Pavol Zibrita
I wonder why there aren't any reusable components out there for stuff like this. Is there some wicket common components market, or something similar where I could possibly post components I would create for me, regarding YT? pavol On Tue, Apr 19, 2011 at 3:24 PM, Martin Grigorov

Re: Wicket and youtube browser based upload

2011-04-20 Thread Martin Grigorov
https://github.com/wicketstuff/core This is the place for such components. On Wed, Apr 20, 2011 at 10:04 AM, Pavol Zibrita pavol.zibr...@gmail.comwrote: I wonder why there aren't any reusable components out there for stuff like this. Is there some wicket common components market, or

Re: Wicket and youtube browser based upload

2011-04-19 Thread Pavol Zibrita
Hi! Ytd is bunch of servlets and jsp. And I want it to work in wicket. But I have problems I have described. Thanx, Pavol On Apr 19, 2011 1:33 AM, Zilvinas Vilutis cika...@gmail.com wrote: I think it is YouTubeDirect that you're looking for:

Re: Wicket and youtube browser based upload

2011-04-19 Thread James Carman
Why not look at the source for YTD and see if there's anything you can borrow from them? On Tue, Apr 19, 2011 at 2:11 AM, Pavol Zibrita pavol.zibr...@gmail.com wrote: Hi!  Ytd is bunch of servlets and jsp. And I want it to work in wicket. But I have problems I have described. Thanx, Pavol

Re: Wicket and youtube browser based upload

2011-04-19 Thread Pavol Zibrita
Hi! Well I know how to do it, I just don't know how to do it in wicket... in ytd a form is created, where target url is the url to youtube site, going as POST with some aditional parameters. No, with that I have problem in wicket, as I was writing. How do I create a form where I can specify

Re: Wicket and youtube browser based upload

2011-04-19 Thread James Carman
Perhaps you can submit the form yourself using something like Apache HttpClient? I don't know if it's worth it or not, but if you really want to manage your form using Wicket, then you can submit your form to your Wicket code and once you have the information gathered, you then manually submit

Re: Wicket and youtube browser based upload

2011-04-19 Thread Sven Meier
See: http://apache-wicket.1842946.n4.nabble.com/Returning-XML-to-JS-tp1873294p1873298.html -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-and-youtube-browser-based-upload-tp3458767p3459719.html Sent from the Users forum mailing list archive at Nabble.com

Re: Wicket and youtube browser based upload

2011-04-19 Thread Pavol Zibrita
Will it work? I mean, the submitting should upload a file from the client, which I don't want to upload to my server, but to youtube. Therefor it is called browser-based upload. I would rather need to do some redirect, that would redirect the browser to youtube with aditional parameters. Is that

Re: Wicket and youtube browser based upload

2011-04-19 Thread Pavol Zibrita
, 2011 at 9:51 AM, Sven Meier s...@meiers.net wrote: See: http://apache-wicket.1842946.n4.nabble.com/Returning-XML-to-JS-tp1873294p1873298.html -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-and-youtube-browser-based-upload-tp3458767p3459719.html Sent from

Re: Wicket and youtube browser based upload

2011-04-19 Thread James Carman
In your case, you'd need to temporarily upload the file to your server. As I said, I don't know if it's worth it. :) On Tue, Apr 19, 2011 at 3:55 AM, Pavol Zibrita pavol.zibr...@gmail.com wrote: Will it work? I mean, the submitting should upload a file from the client, which I don't want to

Re: Wicket and youtube browser based upload

2011-04-19 Thread James Carman
-and-youtube-browser-based-upload-tp3458767p3459719.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: Wicket and youtube browser based upload

2011-04-19 Thread Pavol Zibrita
OK, uploading to server is not possible for me. So I need to create a form than with custom target. Maybe one more question. I need to specify some return url where will youtube add some parameters. How is done this in wicket? Thanx, Pavol On Tue, Apr 19, 2011 at 9:56 AM, James Carman

Re: Wicket and youtube browser based upload

2011-04-19 Thread Pavol Zibrita
some validation. On Tue, Apr 19, 2011 at 3:51 AM, Sven Meier s...@meiers.net wrote: See: http://apache-wicket.1842946.n4.nabble.com/Returning-XML-to-JS-tp1873294p1873298.html -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-and-youtube-browser-based

Re: Wicket and youtube browser based upload

2011-04-19 Thread James Carman
Meier s...@meiers.net wrote: See: http://apache-wicket.1842946.n4.nabble.com/Returning-XML-to-JS-tp1873294p1873298.html -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-and-youtube-browser-based-upload-tp3458767p3459719.html Sent from the Users forum

Re: Wicket and youtube browser based upload

2011-04-19 Thread Pavol Zibrita
...@meiers.net wrote: See: http://apache-wicket.1842946.n4.nabble.com/Returning-XML-to-JS-tp1873294p1873298.html -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-and-youtube-browser-based-upload-tp3458767p3459719.html Sent from the Users forum

Re: Wicket and youtube browser based upload

2011-04-19 Thread Martin Grigorov
On Tue, Apr 19, 2011 at 10:43 AM, James Carman ja...@carmanconsulting.comwrote: Perhaps you can submit the form yourself using something like Apache HttpClient? I don't know if it's worth it or not, but if you really want to manage your form using Wicket, then you can submit your form to

Wicket and youtube browser based upload

2011-04-18 Thread Pavol Zibrita
Hi There! I'm quite new to wicket and I'm doing a web application where user's can upload videos to youtube. For that, there is an youtube API from google. The problem I have is that I need to use browser-based upload, which means, that the actual upload should go directly to youtube and not

Re: Wicket and youtube browser based upload

2011-04-18 Thread Zilvinas Vilutis
I think it is YouTubeDirect that you're looking for: http://code.google.com/p/youtube-direct/wiki/GettingStarted Regards Žilvinas Vilutis Mobile:   (+370) 652 38353 E-mail:   cika...@gmail.com On Mon, Apr 18, 2011 at 2:25 PM, Pavol Zibrita pavol.zibr...@gmail.com wrote: Hi There!   I'm