[Resin-interest] Runing Red5 within Resin

2006-12-21 Thread Lucas Pereira
Hi all.
Just figured out that it's possible to run Red5 Media Server within the Resin Container, but still haven't find out what to I really have to do in order to accomplish that. I already have Resin and Red5 Installed but all i see is how to use resin with apache and IIS. Can anyone help?

Any help will be welcome

Thanks

LucasDon't just search. Find. MSN Search Check out the new MSN Search!


___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] viewing a php w. resin.

2006-12-29 Thread Lucas Pereira

there's a pretty good tutorial on www.caucho.com that shows you how to run php scripts within resin. look for quercus - php over java - ! try to get the hello-world.php sample running:)
Lucas




From:"Steve Burrus" [EMAIL PROTECTED]Reply-To:General Discussion for the Resin application serverresin-interest@caucho.comTo:resin-interest@caucho.comSubject:Re: [Resin-interest] viewing a php w. resin.Date:Fri, 29 Dec 2006 15:34:07 -0600 From: "Steve Burrus" [EMAIL PROTECTED] Reply-To: General Discussion for the Resin application serverresin-interest@caucho.com To: resin-interest@caucho.com Subject: [Resin-interest] viewing a php w. resin. Date: Thu, 28 Dec 2006 18:02:01 -0600  I would very much like to know just how I can see/view a php file with the resin server. Which deployment folder should I put the file into? i 
have done some limited viewing of a php file with the apache server but NEVER yet with resin!!___ resin-interest mailing list resin-interest@caucho.com http://maillist.caucho.com/mailman/listinfo/resin-interest___resin-interest mailing listresin-interest@caucho.comhttp://maillist.caucho.com/mailman/listinfo/resin-interestExpress yourself instantly with MSN Messenger! MSN Messenger Download today it's FREE!


___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


[Resin-interest] How to deny directory listing with Resin?

2007-01-10 Thread Lucas Pereira
Hi all,

I'm currently using Resin-3.1.0 as a standalone web server, and my question is how to deny the listing of the directorys that i am using. 
For instance, i have a php folder,wich contains all my.php files)inside the webapps folder, and when i browse for http://localhost:8080/php i get the list of all my php files, and that also for other folders, like images. I've tried to use the .htaccessinside the folders but no success (since i don't no if i'm supose to use that of is the content of the file is correct.

.htaccess
Directory /phpAllowOverride NoneDeny From All/Directory

Thanks

LucasDon't just search. Find. MSN Search Check out the new MSN Search!


___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] How to deny directory listing with Resin?

2007-01-10 Thread Lucas Pereira
Hei, just commented 
servlet servlet-name="directory" servlet-class="com.caucho.servlets.DirectoryServlet"/
on resin.conf and when try to access foldersa 404 Not Found Error Shows. It should be a 403 Permission Denied(since the folder exists)but it's ok with me!
Thanks
Lucas


From: Mattias Jiderhamn [EMAIL PROTECTED]Reply-To: General Discussion for the Resin application serverresin-interest@caucho.comTo: General Discussion for the Resin application serverresin-interest@caucho.com, resin-interest@caucho.comSubject: Re: [Resin-interest] How to deny directory listing with Resin?Date: Wed, 10 Jan 2007 22:08:42 +0100At least with 3.0, just uncomment this from resin.conf servlet servlet-name="directory" servlet-class="com.caucho.servlets.DirectoryServlet"/At 2007-01-10 21:53, Lucas Pereira wrote:
Hi all,I'm currently using Resin-3.1.0 as a standalone web server, and my question is how to deny the listing of the directorys that i am using. For instance, i have a php folder, wich contains all my .php files) inside the webapps folder, and when i browse for http://localhost:8080/php i get the list of all my php files, and that also for other folders, like images. I've tried to use the .htaccess inside the folders but no success (since i don't no if i'm supose to use that of is the content of the file is correct..htaccessDirectory /phpAllowOverride NoneDeny From All/DirectoryThanksLucas
___resin-interest mailing listresin-interest@caucho.comhttp://maillist.caucho.com/mailman/listinfo/resin-interest
Express yourself instantly with MSN Messenger! MSN Messenger Download today it's FREE!


___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


[Resin-interest] xmlrpc on quercus

2007-02-13 Thread Lucas Pereira

Hi all,
i've seen somewhere that XMLRPC its not implemented in Quercus.
Any plans to implement that in future versions?
Or, is it possible to just perform operations that require xmlrcp using some extra php lib such as http://phpxmlrpc.sourceforge.net/?

ThanksFREE pop-up blocking with the new MSN Toolbar MSN Toolbar Get it now!



___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] php and resin.

2007-02-18 Thread Lucas Pereira

Hi
just add a new folder into webapps folder... 
inside folder web-inf (created automaticaly in your new folder) place a xml file called web.xml with the following on it
web-app xmlns="http://caucho.com/ns/resin"
  servlet-mapping url-pattern="*.php"
   servlet-class="com.caucho.quercus.servlet.QuercusServlet"
init
  script-encodingiso-8859-1/script-encoding
/init
  /servlet-mapping
/web-appafter this, create any .php script (well, not any, for instance, i'm not beingable to run amfphp under resin) and place it into the root of your new folder!I guess this is what your seeking, and has quoted by Knut Forkalsrud  this is all very well documented in caucho websiteHope this helps





From:Knut Forkalsrud [EMAIL PROTECTED]Reply-To:General Discussion for the Resin application serverresin-interest@caucho.comTo:General Discussion for the Resin application serverresin-interest@caucho.comSubject:Re: [Resin-interest] php and resin.Date:Sun, 18 Feb 2007 14:12:59 -0800This is relatively well described in the documentation, specifically the"Quick Start" guide:http://www.caucho.com/resin-3.1/doc/starting.xtp#Adding Contenthttp://www.caucho.com/resin-3.1/doc/starting.xtp#Adding%20ContentDoes that help?-KnutSteve Burrus wrote:  well however much this helps. my os platform is windows xp professional. 
and  i just simply wanna know which of the folders in the whole resin server  installation I should be putting the php file into to be able to then see it  in my webbrowser.  ___resin-interest mailing listresin-interest@caucho.comhttp://maillist.caucho.com/mailman/listinfo/resin-interestExpress yourself instantly with MSN Messenger! MSN Messenger Download today it's FREE!



___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


[Resin-interest] Resin 3.1 and AMFPHP1.9

2007-02-27 Thread Lucas Pereira
Hi.
As anybody tried to run AMFPHP under Resin 3.1? Does it work?
I can't figure out a way to make it work!!!

All help is welcome
:(Express yourself instantly with MSN Messenger! MSN Messenger Download today it's FREE!



___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest