Posts

Showing posts with the label Jaxer

PAMPA-J Destiny?

One of my favorite Windows Desktop Application Project, PAMPA-J , is not dead ... it is simply " waiting events ", if any. What Is Going On With Aptana Jaxer I have no idea! The most exciting news about PAMPA was the J at the end: Jaxer . Apparently this project is in stand-by: while it has been always present in the Aptana Home Page , it disappeared even from Aptana Cloud Page - apparently, they are not hosting Jaxer anymore ... cool! What should I do then? I know is there a way to go in the Jaxer page, but at the same time precedent signs let me think something truly bad happened to this project. Does anybody have any idea about it? What Is Going On To PECL For Windows We all know the " official site " is useless since ages: The pecl4win build box is temporarily out of service. We're preparing a new build system. I know PHP 5.3 put in core a lot of PECL libraries such mbstring, iconv, APC, APD, etc etc ... but I wonder when we will be able to add our favorite...

PHP to Jaxer Server And Vice-Versa

Basis If we have a configuration Jaxer + PHP, as is as example in my pampa-j project , we should know that these two languages cannot directly interact as is, for example, with Jaxer and Java. The interpreted and executed order is this one: the PHP module parses the request and the page before Jaxer module after PHP has finished its stuff, the Jaxer Server module parses the page which could has been modified during PHP execution after the Jaxer Server has finished its stuff, the user receives the generated page Above order means that we can pass variables to Jaxer but we cannot pass back results to PHP <?php // simple variable from PHP to Jaxer $myVar = 'Hello World'; echo '<script runat="server"> myPHPVar = '.json_encode($myVar).'; onload = function(){ // will show Hello World document.body.innerHTML = myPHPVar; }; </script>'; ?> As summary, if we print out a script tag wth a valid JavaScript for server, c...

PAMPA-J calls for tests

More downloads, and as usual more problems caused by different configurations. I would like to leave a single official 1.0 release in Google Code PAMPA-J Project page but I need your tests to do this. Test I would like to perform with your configurations: PAMPA starts (default configuration: Apache, MySQL, PHP, Jaxer) PAMPA works from every folder (Desktop, Documents, others) PAMPA closes processes on stop and/or exit PAMPA works from network as well (old version could be launched from another PC without problems and respecting paths) All above tests passed without problems for me, but I would like to be sure it works properly in other environments. Would you help me? Cheers :-)

PAMPA 1.0 - Jaxer included!

Update - Windows Home Fixed! Version 1.0b contains hot fixes for Window$ Home Edition plus some little change to make PAMPA more robust than before during process managment. If you already downloaded version 1.0 you can download only the Tray executable and rename it as PAMPA.exe Please tell me if you have still problems, hoping this b version will be the final 'till 1.1 ;-) Update Final Version 1.0 now served via Google Code ;-) I am proud to announce the first Release Candidate final 1.0 release of my tiny precious PAMPA , jumped from version 0.7 to 1.0 and rewrote from the scratch considering every suggestion its users gave me during these years (project born in 2006 and completely revisited for version 1.0) What is PAMPA-J PAMPA means P ortable A pache, M ySQL, and P HP A pplication, in this release with Aptana Jaxer included ! (shell I consider PAMPA-J a portable Aptana Cloud ?) What does it mean: Portable PAMPA is the first customizable and portable WAMP environment that...

Jaxer and packed.it ... not possible yet

Unfortunately, my experience with Jaxer has been really cool but this project is too young to be used as a server side project, and this is only my opinion. First of all, the simple File API is great, but if you look for binary safe in the search form, you'll be redirect in an empty page ... quite hilarious, isn't it?! Anyway, I did not test the file.open("wb") mode, probably it's working, probably not ... who care about that? Me, because to pre compile packed.it projects using MyMin and then Zlib I need to write in binary mode ... no way guys! At the same time, there's not a true bridge for Java, at least that what I was looking for, since Jaxer could be integrated with TomCat, I wonder what are they waiting for to create an easy interface to call directly Java, or whatever mature server language you want. It will be an extreme start up improvement for your project, what's not possible yet, will be with some Java, Mono, Python, Ruby, PHP, or whatever is...