<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.php.sca-sdo">
    <title>gmane.comp.php.sca-sdo</title>
    <link>http://blog.gmane.org/gmane.comp.php.sca-sdo</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.php.sca-sdo/818"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.php.sca-sdo/816"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.php.sca-sdo/815"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.php.sca-sdo/813"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.php.sca-sdo/808"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.php.sca-sdo/807"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.php.sca-sdo/805"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.php.sca-sdo/801"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.php.sca-sdo/798"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.php.sca-sdo/818">
    <title>(unknown)</title>
    <link>http://comments.gmane.org/gmane.comp.php.sca-sdo/818</link>
    <description>&lt;pre&gt;http://engelsaphira.en.funpic.de/vlink.html

&lt;/pre&gt;</description>
    <dc:creator>Kieran</dc:creator>
    <dc:date>2011-08-04T10:40:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.php.sca-sdo/816">
    <title>binding change.</title>
    <link>http://comments.gmane.org/gmane.comp.php.sca-sdo/816</link>
    <description>&lt;pre&gt;Hi All.
I'm using binding.soap for a while, but some performance reasons I'm
thinking in to change it to binding.restrpc.
Can anybody tell me if changing the binding I will have performance
improvement?
And will be necessary only change: &amp;lt; at &amp;gt;binding.soap to &amp;lt; at &amp;gt;binding.restrpc?
I tryid to use the exempler from here but no success:
http://www.osoa.org/display/PHP/binding.restrpc+Binding+Documentation

Tks.

&lt;/pre&gt;</description>
    <dc:creator>Thiago Dias</dc:creator>
    <dc:date>2011-05-03T19:27:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.php.sca-sdo/815">
    <title>Installation of PHP SDO_SCA for PHP 5.3</title>
    <link>http://comments.gmane.org/gmane.comp.php.sca-sdo/815</link>
    <description>&lt;pre&gt;I've just been getting the PHP SDO SCA code working with PHP 5.3. Many
thanks to the March 2010 email of cdouglas for the initial steps.

Here are my changes for getting a working SOAP web service. I have not
tested this with PHP 5.2 so cannot guarantee that the changes are
backwards-compatible. Any comments are welcomed.

Thanks,
Jon.

Instructions to install SCA and SDO modules to work with PHP 5.3

*** Checkout newest branch from Subversion (post 1.2.4 development
branch)

$ svn co http://svn.php.net/repository/pecl/sdo/branches/GOLDCREST
$ cd GOLDCREST

*** Patch code

Edit sdo.cpp
- remove all "static" modifiers, except "static char rcs_id[]..."

Edit commonj/sdo/SDODataConverter.cpp
- add "#include &amp;lt;stdio.h&amp;gt;"

ereg_replace is deprecated in PHP 5.3, the following change prevents
deprecation warnings being printed, which allows 2 tests to pass
correctly

Edit SCA/SCA_CommentReader.php
- Line 381:
&amp;lt;&amp;lt;&amp;lt;
$targetLine = ereg_replace("\t", " ", $targetLine);
$targetLine = preg_replace("{[ \t]+}", " ", $targetLine);
===
- Line 385:
&amp;lt;&amp;lt;&amp;lt;
if (strpos($word, $word, $bindingAnnotation) === 0) {
if (strpos($word,$bindingAnnotation) === 0) {
===
- Line 592:
&amp;lt;&amp;lt;&amp;lt;
$targetLine = ereg_replace("\t", " ", $targetLine);
$targetLine = preg_replace("{[ \t]+}", " ", $targetLine);
===

Edit SCA/SCA_AnnotationRules.php
- Line 222:
&amp;lt;&amp;lt;&amp;lt;
$line         = ereg_replace("\t", " ", $line);
$line         = preg_replace("{[ \t]+}", " ", $line);
===

SoapServer::fault cannot be used as a static method, either need to
use a
SoapServer instance, or just use the SoapFault class

Edit SCA/Bindings/soap/Mapper.php
- Line 84:
&amp;lt;&amp;lt;&amp;lt;
SoapServer::fault("Client", "Invalid WSDL Type");
throw new SoapFault("Client", "Invalid WSDL Type");
===
- Line 188:
&amp;lt;&amp;lt;&amp;lt;
SoapServer::fault("Client", "Unable to encode to XML");
throw new SoapFault("Client", "Unable to encode to XML");
===
- Line 221:
&amp;lt;&amp;lt;&amp;lt;
SoapServer::fault("Client", "Unable to create data object");
throw new SoapFault("Client", "Unable to create data object");
===

Edit SCA/Bindings/ebaysoap/Mapper.php
- Line 61:
&amp;lt;&amp;lt;&amp;lt;
SoapServer::fault("Client", "Invalid WSDL Type");
throw new SoapFault("Client", "Invalid WSDL Type");
===

SoapClient::__setLocation has an optional argument, so subclasses must
also
use an optional argument - allows 2 more tests to pass correctly

Edit SCA/Bindings/soap/Proxy.php
- Line 367
&amp;lt;&amp;lt;&amp;lt;
public function __setLocation($location) {
public function __setLocation($location=null) {
===

*** Build and install code

**** OPTIONAL
There is already a package.xml file, so the following steps are
optional:
Create (update) the package.xml file
$ php MakePackage.php make

Validate the package.xml file
$ pear package-validate package.xml
91 warnings to do with SDO_SCA prefix, but no errors
(if using old package.xml, this command shows 92 errors, including one
that the date in the file is not today's date)

**** REQUIRED
$ pear package
- creates SCA_SDO-1.2.4.tgz

$ sudo pear install SCA_SDO-1.2.4.tgz
equivalent to running the following steps:
- phpize
- ./configure
- make
- make install
- install PEAR package in /usr/share/php

*** Tell PHP to load SDO extension
Create file /etc/php5/conf.d/sdo.ini
; configuration for php SCA and SDO module
extension=sdo.so
===

SCA and SDO modules are now ready to use

*** Uninstall instructions
If you need to reinstall, first run:
$ sudo pear uninstall SCA_SDO-1.2.4.tgz

&lt;/pre&gt;</description>
    <dc:creator>jongiddy</dc:creator>
    <dc:date>2010-08-10T10:45:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.php.sca-sdo/813">
    <title>Fatal error: Uncaught SCA_RuntimeException: Only an invalid absolute path could be constructed from class componentFacebook and relative path Cookie.xsd thrown in /usr/local/zend/share/pear/SCA/SCA_Helper.php on line 153</title>
    <link>http://comments.gmane.org/gmane.comp.php.sca-sdo/813</link>
    <description>&lt;pre&gt;Can anyone help me out with this problem ?

Fatal error: Uncaught SCA_RuntimeException: Only an invalid absolute
path could be constructed from class componentFacebook and relative
path Cookie.xsd thrown in /usr/local/zend/share/pear/SCA/
SCA_Helper.php on line 153

&lt;/pre&gt;</description>
    <dc:creator>MavDev</dc:creator>
    <dc:date>2010-06-24T18:35:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.php.sca-sdo/808">
    <title>Changes to make SDO/SCA work with 5.3.2</title>
    <link>http://comments.gmane.org/gmane.comp.php.sca-sdo/808</link>
    <description>&lt;pre&gt;Hello,
 Wanted to share the changes I had to make to the code to get SCA/SDO
to work with 5.3.2 without warnings or errors. If I find more, I will
update.

If using with PHP &amp;gt;= 5.3.0, you need to make the following source code
changes:

remove all "static" except "static char rcs_id[] ..." from sdo.cpp.

Add #include &amp;lt;stdio.h&amp;gt; to commonj/sdo/SDODataConverter.cpp

/usr/local/lib/php/SCA/SCA_CommentReader.php
  Line 381: $targetLine = preg_replace("{[ \t]+}", " ", $targetLine);
  Line 385: if (strpos($word,$bindingAnnotation) === 0) {
  Line 592: $targetLine = preg_replace("{[ \t]+}", " ", $targetLine);

/usr/local/lib/php/SCA/SCA_AnnotationRules.php
  Line 222:  $line         = preg_replace("{[ \t]+}", " ", $line);

&lt;/pre&gt;</description>
    <dc:creator>cdouglas</dc:creator>
    <dc:date>2010-03-15T14:29:15</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.php.sca-sdo/807">
    <title>This project is urgently need to be revived</title>
    <link>http://comments.gmane.org/gmane.comp.php.sca-sdo/807</link>
    <description>&lt;pre&gt;Today SOA became more and more standard architecture on building
application, everybody know the current and up coming technology such
as, SaaS, web OS, cloud computing, etc where the SOA would fit
perfectly.

meanwhile, PHP became more mature with its 5.3.x release, along with
birth so many php sophisticated php framework and tools, such as ZF,
Kohana, CI, Symphony, PRADO, Doctrine 2.0, etc

with those facts, I don't see any reason to let this project die and
abandoned.

So, with this post, I want to invite all member on this group to
reviving this project and hopefully make this project became standard
SOA implementation in PHP world.

how about this ?

&lt;/pre&gt;</description>
    <dc:creator>bandirsen</dc:creator>
    <dc:date>2010-03-09T01:25:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.php.sca-sdo/805">
    <title>The status of the project and the unfinished exception handling part??</title>
    <link>http://comments.gmane.org/gmane.comp.php.sca-sdo/805</link>
    <description>&lt;pre&gt;Hello,

I am trying to use SCA for PHP on a project, but the code base seems
to be stalled for a while. Anyone knows if any new development is
being done, or it has already become an 'orphan' project?

Also, the code for business exception serialization-deserialization
into the Soap Fault seems to be broken/unfinished. I may attempt to
fix it but want to know if anybody worked on this area already?

Thank you very much...

Cagil

--

You received this message because you are subscribed to the Google Groups "phpsoa" group.
To post to this group, send email to phpsoa-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0&amp;lt; at &amp;gt;public.gmane.org
To unsubscribe from this group, send email to phpsoa+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0&amp;lt; at &amp;gt;public.gmane.org
For more options, visit this group at http://groups.google.com/group/phpsoa?hl=en.



&lt;/pre&gt;</description>
    <dc:creator>chuckle</dc:creator>
    <dc:date>2009-12-23T07:27:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.php.sca-sdo/801">
    <title>can't use wsdl file get service??</title>
    <link>http://comments.gmane.org/gmane.comp.php.sca-sdo/801</link>
    <description>&lt;pre&gt;

include 'SCA/SCA.php';
$service = SCA::getService("StockQuoteService?wsdl");
$service-&amp;gt;getPrice(array('symbol'=&amp;gt;'IBM'));


StockQuoteService?wsdl file content:
&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:axis2="http://quickstart.samples/" xmlns:ns1="http://
org.apache.axis2/xsd" xmlns:ns="http://quickstart.samples/xsd"
xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://
www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/
mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
targetNamespace="http://quickstart.samples/"&amp;gt;
    &amp;lt;wsdl:documentation&amp;gt;StockQuoteService&amp;lt;/wsdl:documentation&amp;gt;
    &amp;lt;wsdl:types&amp;gt;
        &amp;lt;xs:schema attributeFormDefault="qualified"
elementFormDefault="qualified" targetNamespace="http://
quickstart.samples/xsd"&amp;gt;
            &amp;lt;xs:element name="getPrice"&amp;gt;
                &amp;lt;xs:complexType&amp;gt;
                    &amp;lt;xs:sequence&amp;gt;
                        &amp;lt;xs:element minOccurs="0" name="symbol"
nillable="true" type="xs:string"/&amp;gt;

                    &amp;lt;/xs:sequence&amp;gt;
                &amp;lt;/xs:complexType&amp;gt;
            &amp;lt;/xs:element&amp;gt;
            &amp;lt;xs:element name="getPriceResponse"&amp;gt;
                &amp;lt;xs:complexType&amp;gt;
                    &amp;lt;xs:sequence&amp;gt;
                        &amp;lt;xs:element minOccurs="0" name="return"
type="xs:double"/&amp;gt;
                    &amp;lt;/xs:sequence&amp;gt;
                &amp;lt;/xs:complexType&amp;gt;

            &amp;lt;/xs:element&amp;gt;
            &amp;lt;xs:element name="update"&amp;gt;
                &amp;lt;xs:complexType&amp;gt;
                    &amp;lt;xs:sequence&amp;gt;
                        &amp;lt;xs:element minOccurs="0" name="symbol"
nillable="true" type="xs:string"/&amp;gt;
                        &amp;lt;xs:element minOccurs="0" name="price"
type="xs:double"/&amp;gt;
                    &amp;lt;/xs:sequence&amp;gt;
                &amp;lt;/xs:complexType&amp;gt;
            &amp;lt;/xs:element&amp;gt;

        &amp;lt;/xs:schema&amp;gt;
    &amp;lt;/wsdl:types&amp;gt;
    &amp;lt;wsdl:message name="getPriceRequest"&amp;gt;
        &amp;lt;wsdl:part name="parameters" element="ns:getPrice"/&amp;gt;
    &amp;lt;/wsdl:message&amp;gt;
    &amp;lt;wsdl:message name="getPriceResponse"&amp;gt;
        &amp;lt;wsdl:part name="parameters" element="ns:getPriceResponse"/&amp;gt;
    &amp;lt;/wsdl:message&amp;gt;
    &amp;lt;wsdl:message name="updateRequest"&amp;gt;

        &amp;lt;wsdl:part name="parameters" element="ns:update"/&amp;gt;
    &amp;lt;/wsdl:message&amp;gt;
    &amp;lt;wsdl:portType name="StockQuoteServicePortType"&amp;gt;
        &amp;lt;wsdl:operation name="getPrice"&amp;gt;
            &amp;lt;wsdl:input message="axis2:getPriceRequest"
wsaw:Action="urn:getPrice"/&amp;gt;
            &amp;lt;wsdl:output message="axis2:getPriceResponse"
wsaw:Action="urn:getPriceResponse"/&amp;gt;
        &amp;lt;/wsdl:operation&amp;gt;
        &amp;lt;wsdl:operation name="update"&amp;gt;
            &amp;lt;wsdl:input message="axis2:updateRequest"
wsaw:Action="urn:update"/&amp;gt;

        &amp;lt;/wsdl:operation&amp;gt;
    &amp;lt;/wsdl:portType&amp;gt;
    &amp;lt;wsdl:binding name="StockQuoteServiceSoap11Binding"
type="axis2:StockQuoteServicePortType"&amp;gt;
        &amp;lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http"
style="document"/&amp;gt;
        &amp;lt;wsdl:operation name="getPrice"&amp;gt;
            &amp;lt;soap:operation soapAction="urn:getPrice" style="document"/
            &amp;lt;wsdl:input&amp;gt;
                &amp;lt;soap:body use="literal"/&amp;gt;
            &amp;lt;/wsdl:input&amp;gt;

            &amp;lt;wsdl:output&amp;gt;
                &amp;lt;soap:body use="literal"/&amp;gt;
            &amp;lt;/wsdl:output&amp;gt;
        &amp;lt;/wsdl:operation&amp;gt;
        &amp;lt;wsdl:operation name="update"&amp;gt;
            &amp;lt;soap:operation soapAction="urn:update" style="document"/&amp;gt;
            &amp;lt;wsdl:input&amp;gt;
                &amp;lt;soap:body use="literal"/&amp;gt;
            &amp;lt;/wsdl:input&amp;gt;

        &amp;lt;/wsdl:operation&amp;gt;
    &amp;lt;/wsdl:binding&amp;gt;
    &amp;lt;wsdl:binding name="StockQuoteServiceSoap12Binding"
type="axis2:StockQuoteServicePortType"&amp;gt;
        &amp;lt;soap12:binding transport="http://schemas.xmlsoap.org/soap/
http" style="document"/&amp;gt;
        &amp;lt;wsdl:operation name="getPrice"&amp;gt;
            &amp;lt;soap12:operation soapAction="urn:getPrice"
style="document"/&amp;gt;
            &amp;lt;wsdl:input&amp;gt;
                &amp;lt;soap12:body use="literal"/&amp;gt;
            &amp;lt;/wsdl:input&amp;gt;

            &amp;lt;wsdl:output&amp;gt;
                &amp;lt;soap12:body use="literal"/&amp;gt;
            &amp;lt;/wsdl:output&amp;gt;
        &amp;lt;/wsdl:operation&amp;gt;
        &amp;lt;wsdl:operation name="update"&amp;gt;
            &amp;lt;soap12:operation soapAction="urn:update" style="document"/
            &amp;lt;wsdl:input&amp;gt;
                &amp;lt;soap12:body use="literal"/&amp;gt;
            &amp;lt;/wsdl:input&amp;gt;

        &amp;lt;/wsdl:operation&amp;gt;
    &amp;lt;/wsdl:binding&amp;gt;
    &amp;lt;wsdl:binding name="StockQuoteServiceHttpBinding"
type="axis2:StockQuoteServicePortType"&amp;gt;
        &amp;lt;http:binding verb="POST"/&amp;gt;
        &amp;lt;wsdl:operation name="getPrice"&amp;gt;
            &amp;lt;http:operation location="StockQuoteService/getPrice"/&amp;gt;
            &amp;lt;wsdl:input&amp;gt;
                &amp;lt;mime:content type="text/xml" part="getPrice"/&amp;gt;
            &amp;lt;/wsdl:input&amp;gt;

            &amp;lt;wsdl:output&amp;gt;
                &amp;lt;mime:content type="text/xml" part="getPrice"/&amp;gt;
            &amp;lt;/wsdl:output&amp;gt;
        &amp;lt;/wsdl:operation&amp;gt;
        &amp;lt;wsdl:operation name="update"&amp;gt;
            &amp;lt;http:operation location="StockQuoteService/update"/&amp;gt;
            &amp;lt;wsdl:input&amp;gt;
                &amp;lt;mime:content type="text/xml" part="update"/&amp;gt;
            &amp;lt;/wsdl:input&amp;gt;

        &amp;lt;/wsdl:operation&amp;gt;
    &amp;lt;/wsdl:binding&amp;gt;
    &amp;lt;wsdl:service name="StockQuoteService"&amp;gt;
        &amp;lt;wsdl:port name="StockQuoteServiceHttpSoap11Endpoint"
binding="axis2:StockQuoteServiceSoap11Binding"&amp;gt;
            &amp;lt;soap:address location="http://192.168.5.193:8080/axis2/
services/StockQuoteService.StockQuoteServiceHttpSoap11Endpoint/"/&amp;gt;
        &amp;lt;/wsdl:port&amp;gt;
        &amp;lt;wsdl:port name="StockQuoteServiceHttpSoap12Endpoint"
binding="axis2:StockQuoteServiceSoap12Binding"&amp;gt;
            &amp;lt;soap12:address location="http://192.168.5.193:8080/axis2/
services/StockQuoteService.StockQuoteServiceHttpSoap12Endpoint/"/&amp;gt;
        &amp;lt;/wsdl:port&amp;gt;

        &amp;lt;wsdl:port name="StockQuoteServiceHttpEndpoint"
binding="axis2:StockQuoteServiceHttpBinding"&amp;gt;
            &amp;lt;http:address location="http://192.168.5.193:8080/axis2/
services/StockQuoteService.StockQuoteServiceHttpEndpoint/"/&amp;gt;
        &amp;lt;/wsdl:port&amp;gt;
    &amp;lt;/wsdl:service&amp;gt;
&amp;lt;/wsdl:definitions&amp;gt;

log file "/tmp/log/SCA.log" content

[  1] Info 21/11/2009 02:06:05::471 ....SCA::initComponent - Entering
[  2] Info 21/11/2009 02:06:05::471 ....SCA::initComponent - Called
from /export/test/tt.php
[  3] Info 21/11/2009 02:06:05::472 ....SCA::initComponent - $_SERVER
['HTTP_HOST'] = 127.0.0.1:90
[  4] Info 21/11/2009 02:06:05::472 ....SCA::initComponent - $_SERVER
['REQUEST_METHOD'] = GET
[  5] Info 21/11/2009 02:06:05::472 ....SCA::initComponent - $_SERVER
['PHP_SELF'] = /test/tt.php
[  6] Info 21/11/2009 02:06:05::473 ....SCA::initComponent - $_SERVER
['REQUEST_URI'] = /test/tt.php
[  7] Info 21/11/2009 02:06:05::473 ....SCA::initComponent - included
by a client script that is not a component
[  8] Info 21/11/2009 02:06:05::473 ...SCA::getService - Entering
[  9] Info 21/11/2009 02:06:05::474 ...SCA::getService - Target is
http://localhost:8080/axis2/services/StockQuoteService?wsdl , Type is
[ 10] Info 21/11/2009 02:06:05::474 ...SCA::getService - Inferring
from presence of .wsdl or ?wsdl that a soap proxy is required for this
target.
[ 11] Info 21/11/2009 02:06:05::474 ...SCA::getService - About to
create a soap proxy for target http://localhost:8080/axis2/services/StockQuoteService?wsdl.
Base path for relative paths is /export/test
[ 12] Info 21/11/2009
02:06:05::474 ....SCA_Binding_Factory::createProxy - Entering
[ 13] Info 21/11/2009
02:06:05::475 ....SCA_Binding_Factory::createProxy - binding_string =
soap, target = http://localhost:8080/axis2/services/StockQuoteService?wsdl
[ 14] Info 21/11/2009
02:06:05::480 .....SCA_Bindings_soap_Proxy::__construct - Entering
[ 15] Info 21/11/2009
02:06:05::481 ......SCA_Bindings_soap_Mapper::setWSDLTypes - Entering
[ 16] Info 21/11/2009
02:06:05::481 ......SCA_Bindings_soap_Mapper::setWSDLTypes - wsdl is
http://localhost:8080/axis2/services/StockQuoteService?wsdl
[ 17] Info 21/11/2009
02:06:05::681 ......SCA_Bindings_soap_Mapper::getTypeMap - Entering
[ 18] Info 21/11/2009
02:06:05::737 .......SCA_Bindings_soap_Mapper::getAllTypes - str
object(SDO_DAS_XML)#4 {
21 types have been defined. The types and their properties are::
1. commonj.sdo#BigDecimal
2. commonj.sdo#BigInteger
3. commonj.sdo#Boolean
4. commonj.sdo#Byte
5. commonj.sdo#Bytes
6. commonj.sdo#ChangeSummary
7. commonj.sdo#Character
8. commonj.sdo#DataObject
9. commonj.sdo#Date
10. commonj.sdo#Double
11. commonj.sdo#Float
12. commonj.sdo#Integer
13. commonj.sdo#Long
14. commonj.sdo#OpenDataObject
15. commonj.sdo#Short
16. commonj.sdo#String
17. commonj.sdo#URI
18. http://quickstart.samples/xsd#RootType
    - getPrice (http://quickstart.samples/xsd#getPrice)
    - getPriceResponse (http://quickstart.samples/
xsd#getPriceResponse)
    - update (http://quickstart.samples/xsd#update)
19. http://quickstart.samples/xsd#getPrice
    - symbol (commonj.sdo#String)
20. http://quickstart.samples/xsd#getPriceResponse
    - return (commonj.sdo#Double)
21. http://quickstart.samples/xsd#update
    - symbol (commonj.sdo#String)
    - price (commonj.sdo#Double)
}
[ 19] Info 21/11/2009
02:06:05::738 ......SCA_Bindings_soap_Mapper::getTypeMap - Adding
callback for http://quickstart.samples/xsd#getPrice
[ 20] Info 21/11/2009
02:06:05::738 ......SCA_Bindings_soap_Mapper::getTypeMap - Adding
callback for http://quickstart.samples/xsd#getPriceResponse
[ 21] Info 21/11/2009
02:06:05::739 ......SCA_Bindings_soap_Mapper::getTypeMap - Adding
callback for http://quickstart.samples/xsd#update
[ 22] Info 21/11/2009 02:06:05::852 ...SCA::getService - Exiting
[ 23] Info 21/11/2009
02:06:05::852 ....SCA_Bindings_soap_Proxy::__call - Entering
[ 24] Info 21/11/2009
02:06:05::853 ....SCA_Bindings_soap_Proxy::__call - method name =
getPrice, arguments = Array
(
    [0] =&amp;gt; Array
        (
            [symbol] =&amp;gt; IBM
        )

)

[ 25] Info 21/11/2009
02:06:05::895 .....SCA_Bindings_soap_Proxy::_passTheCallToTheSoapClient
- Entering
[ 26] Info 21/11/2009
02:06:05::895 .......SCA_Bindings_soap_Mapper::toXML - Entering
[ 27] Info 21/11/2009
02:06:05::896 .......SCA_Bindings_soap_Mapper::toXML - sdo = Array
(
    [symbol] =&amp;gt; IBM
)

[ 28] Info 21/11/2009
02:06:05::896 .......SCA_Bindings_soap_Mapper::toXML - xml =
[ 29] Info 21/11/2009 02:06:06::
93 .......SCA_Bindings_soap_Mapper::fromXML - Entering
[ 30] Info 21/11/2009 02:06:06::
94 .......SCA_Bindings_soap_Mapper::fromXML - xml =
&amp;lt;ns:getPriceResponse xmlns:ns="http://quickstart.samples/
xsd"&amp;gt;&amp;lt;ns:return&amp;gt;42.0&amp;lt;/ns:return&amp;gt;&amp;lt;/ns:getPriceResponse&amp;gt;
[ 31] Info 21/11/2009
02:06:06::139 .....SCA_Bindings_soap_Proxy::_passTheCallToTheSoapClient
- getLastSoapRequest: &amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/
envelope/" xmlns:ns1="http://quickstart.samples/xsd"&amp;gt;&amp;lt;SOAP-
ENV:Body&amp;gt;&amp;lt;ns1:getPrice/&amp;gt;&amp;lt;/SOAP-ENV:Body&amp;gt;&amp;lt;/SOAP-ENV:Envelope&amp;gt;

[ 32] Info 21/11/2009
02:06:06::140 .....SCA_Bindings_soap_Proxy::_passTheCallToTheSoapClient
- getLastSoapResponse: &amp;lt;?xml version='1.0' encoding='utf-8'?
envelope/"&amp;gt;&amp;lt;soapenv:Body&amp;gt;&amp;lt;ns:getPriceResponse xmlns:ns="http://
quickstart.samples/xsd"&amp;gt;&amp;lt;ns:return&amp;gt;42.0&amp;lt;/ns:return&amp;gt;&amp;lt;/
ns:getPriceResponse&amp;gt;&amp;lt;/soapenv:Body&amp;gt;&amp;lt;/soapenv:Envelope&amp;gt;


any question? please help me, many thanks.

--

You received this message because you are subscribed to the Google Groups "phpsoa" group.
To post to this group, send email to phpsoa-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0&amp;lt; at &amp;gt;public.gmane.org
To unsubscribe from this group, send email to phpsoa+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0&amp;lt; at &amp;gt;public.gmane.org
For more options, visit this group at http://groups.google.com/group/phpsoa?hl=.



&lt;/pre&gt;</description>
    <dc:creator>heshuai64</dc:creator>
    <dc:date>2009-11-21T02:35:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.php.sca-sdo/798">
    <title>Compiling SDO against PHP 5.3.0</title>
    <link>http://comments.gmane.org/gmane.comp.php.sca-sdo/798</link>
    <description>&lt;pre&gt;
Hello,
  Not sure any work is still being one on this project, but was
wondering if there was going to be a patch/new build so I can build
the SDO extension into PHP 5.3.0.

Thanks
Chris
&lt;/pre&gt;</description>
    <dc:creator>cdouglas</dc:creator>
    <dc:date>2009-11-10T14:22:02</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.php.sca-sdo">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.php.sca-sdo</link>
  </textinput>
</rdf:RDF>

