Quicksearch
Pages
Recent Entries
PHP, SOAP, WSDL, Pain.
BaseApp 1.0.0a5 - Minor update: Deployable to providers!
The new wsdl2php - WSDLInterpreter: Out of beta!
Fall is a busy time
Inside BaseApp, Part 1 - Zend Framework and the Bootstrap
BaseApp 1.0.0a4 - Admin abstraction, Auth integration
Almost to v1 - A new wsdl2php in WSDLInterpreter - 1.0 RC2
WSDLInterpreter - OOP wsdl2php - Release Candidate 1
BaseApp update: 1.0.0a3 - phpdoc, Xend_Layout, complex error handling
WSDLInterpreter - OOP wsdl2php - Beta release!
Monday, September 17 2007
BaseApp 1.0.0a5 - Minor update: Deployable to providers!
Wednesday, August 22 2007
The new wsdl2php - WSDLInterpreter: Out of beta!
Wednesday, August 22 2007
Fall is a busy time
Tuesday, August 21 2007
Inside BaseApp, Part 1 - Zend Framework and the Bootstrap
Wednesday, August 8 2007
BaseApp 1.0.0a4 - Admin abstraction, Auth integration
Monday, August 6 2007
Almost to v1 - A new wsdl2php in WSDLInterpreter - 1.0 RC2
Sunday, August 5 2007
WSDLInterpreter - OOP wsdl2php - Release Candidate 1
Thursday, July 26 2007
BaseApp update: 1.0.0a3 - phpdoc, Xend_Layout, complex error handling
Sunday, July 22 2007
WSDLInterpreter - OOP wsdl2php - Beta release!
Tuesday, July 17 2007
Calendar
|
|
August '08 | |||||
| Mo | Tu | We | Th | Fr | Sa | Su |
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Archives
Categories
< WSDLInterpreter - OOP wsdl2php - Beta release! | WSDLInterpreter - OOP wsdl2php - Release Candidate 1 >

Monday, July 23. 2007 at 14:38 (Reply)
Thanks.
Thursday, July 26. 2007 at 02:53 (Reply)
Thursday, July 26. 2007 at 05:52 (Link) (Reply)
It sounds as if your DocumentRoot is pointed at the main directory. I will be making some modifications to the setup to allow for either case for this week's update, and beginning the example documentation as well, but in the meantime you should be able to copy the files from html/* into the root directory, and then modify the path information in index.php accordingly. Let me know how that works out for you, but definitely check back again.
The next version, with setup documentation, should be posted by Monday!
Monday, July 30. 2007 at 11:56 (Link) (Reply)
Wonderful setup, a little correction to the BaseApp_Loader class:
public function getInstance($configSection = "development")
{
if (null === self::$instance) {
self::$instance = new self($configSection);
}
return self::$instance;
}
Then you can actually set the config section
Thanks for the great efforts you are making.
Monday, July 30. 2007 at 12:26 (Link) (Reply)
Monday, July 30. 2007 at 17:08 (Link) (Reply)
Monday, July 30. 2007 at 23:23 (Link) (Reply)
Thanks for the excellent comments. I've made the changes in the Loader for the bug that you pointed out. Also a great mentioning on the performance for include path.
I'm holding off for an extra week on the next iteration as I'd like to include documentation for the reasoning I've done particular things with the next release, and I'll definitely mention my specific motivations for putting the include path additions in the loader. But I've definitely modified it in its current place to be the more efficient version.
Thanks to everyone out there patiently waiting for the next versions, the feedback I've been receiving via email and other channels has been great so far. Keep it coming!
Tuesday, July 31. 2007 at 14:20 (Link) (Reply)
Code:
---------------------------------------
$availableViewEngines = array(
"Glacier_View_Smarty",
"Zend_View"
);
Zend_Registry::set("availableViewEngines", $availableViewEngines);
---------------------------------------
End Code
Now I can just in any controller iterate the list and call the available view engine, for example in ErrorController::setupException():
Code:
---------------------------------------
$view = null;
$availableViewEngines = Zend_Registry::get("availableViewEngines");
foreach ($availableViewEngines as $viewEngine) {
if (class_exists($viewEngine) && (! $view)) {
$view = new $viewEngine();
}
}
---------------------------------------
End Code
With this solution I can simply add/remove view engines in the Loader, and their presence/absence will be reflected throughout the system.
Hope this is worth something
Tuesday, July 31. 2007 at 14:24 (Link) (Reply)
Tuesday, July 31. 2007 at 14:35 (Link) (Reply)
Friday, August 3. 2007 at 16:56 (Reply)
$authAdapter->setCredentialColumn("User_Password);