<projects>
</projects>
<buildSpec>
+ <buildCommand>
+ <name>org.eclipse.wst.validation.validationbuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.dltk.core.scriptbuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
</buildSpec>
<natures>
+ <nature>org.eclipse.php.core.PHPNature</nature>
</natures>
+ <filteredResources>
+ <filter>
+ <id>1301266264267</id>
+ <name></name>
+ <type>5</type>
+ <matcher>
+ <id>org.eclipse.ui.ide.multiFilter</id>
+ <arguments>1.0-name-matches-false-false-.htaccess</arguments>
+ </matcher>
+ </filter>
+ </filteredResources>
</projectDescription>
--- /dev/null
+<?php
+
+// I AM A EMENY!
+require_once("../lib/lig.php");
+
+$s = new SoapClient("http://localhost/src/eclipse-workspace/gslac/www/soap.php?wsdl");
+
+$k = $s->status();
+
+echo "l was $k\n";
+?>
\ No newline at end of file
--- /dev/null
+<?php
+
+?>
\ No newline at end of file
<?php
+require_once("config.php");
+
// first and foremost, load the plugins
$basedir = dirname(__FILE__);
if(is_dir("$basedir/plugins")) {
+RewriteEngine on
+RewriteBase /src/eclipse-workspace/glcas/www/
+RewriteRule ^index\.php.* - [L]
+RewriteRule ^soap\.php.* - [L]
+RewriteCond %{REQUEST_FILENAME} !-f
+RewriteCond %{REQUEST_FILENAME} !-d
+RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
+
+<html>
+<pre>
+<?php
+print_r($GLOBALS);
+print_r($_REQUEST);
+print_r($_SERVER);
+?>
+</pre>
+</html>
\ No newline at end of file
--- /dev/null
+<?php
+require_once("../lib/lib.php");
+
+$soapFunctions["status"] = "status";
+global $soapFunctions;
+
+function status()
+{
+ return "im good";
+}
+
+if(isset($_REQUEST["wsdl"])) {
+ generateWSDL();
+ exit(0);
+}
+
+if(isset($_REQUEST["xsd"])) {
+ //generateXSD();
+ exit(0);
+}
+
+function generageWSDL()
+{
+
+}
+
+$s = new SoapServer(NULL, array( "uri" => "http://pjr.cc/glcas"));
+
+foreach($soapFunctions as $function) {
+ $s->addFunction($function);
+}
+
+print_r($s->getFunctions());
+
+
+?>
\ No newline at end of file