You cannot post messages because only members can post, and you are not currently a member.
Description:
Discuss Service Component Architecture (SCA) and Service Data Objects (SDO) for PHP.
|
|
|
Null soap function?
|
| |
Hello,
If I try to create a soap service function, I get the following error:
Fatal error: Uncaught exception 'SDO_PropertyNotFoundException ' with
message 'Cannot find property:nullFuncReturn' in /usr/share/php/SCA/
Bindings/soap/Wrapper.php:94
I ended up just returning a constant string, but it's a messy and... more »
|
|
no wsdl generated
|
| |
Hello all,
I've seen some very similar posts to my problem, but have not yet
found a solution for me. I'm trying to generate the wsdl for the
following sample from the php manual:
<?php
include "SCA/SCA.php";
/**
* Scaffold implementation for a remote StockQuote Web service.
*
* @service... more »
|
|
phpsoa error message
|
| |
I m in need of help. I get this error message everytime i try to run
my code
"Fatal error: Uncaught SCA_RuntimeException: The remote service threw
a soap fault. The text of the response was: thrown in /usr/local/
apache2/htdocs/MyMOL/webservic es/CompanyData/SCA/Bindings/so ap/
Proxy.php on line 419"... more »
|
|
PECL build on OSX
|
| |
Hi all,
Has anyone successfully built SCA_SDO on current OSX with PHP 5.3 from
macports?
pecl install SCA_SDO errors out with:
/private/tmp/pear/download/SCA _SDO-1.2.4/sdo.cpp:80: error: multiple
storage classes in declaration of 'arginfo_sdo_dataobject'
/private/tmp/pear/download/SCA _SDO-1.2.4/sdo.cpp:86: error: multiple... more »
|
|
multiple rows return ?
|
| |
Hi all,
I have not found any examples that handle multiple rows of data
returned from database. Anyone can please show me an example? What I
have is this
I have a service that returns multiple rows of result from a database
query, for example
SELECT employeeID, employeeName, employeeAddress FROM EMPLOYEE;... more »
|
|
wsdl code generation error.
|
| |
Hello All,
I am a newbie to using SCA_SDO with php. The first app i tried
is the one given in the following link.
[link]
The client displayed the content as expected when i gave the following
address in the browser.
[link]... more »
|
|
Still alive?
|
| |
From what I've read and what little I've been able to get working of
the examples that come with the SCA_SDO extension, this project has
great promise, but it seems that the community and documentation are
huge week spots.
I'd love to participate in creating examples and improving the
community. Is this project still alive and well? Is it still under... more »
|
|
my first demo for sca php has something wrong,help!
|
| |
i just write my first demo for sca php,helloworld,the code is:
include 'SCA/SCA.php';
/**
* @service
* @binding.soap
*/
class Greeting
{
/**
* @param string $name
* @return string
*/
public function greet($name)
{
return 'hello ' . $name;
}... more »
|
|
Creation of WSDL file in SCA
|
| |
Hi, In my job, the production environment does not allow that PHP has write access to the public folders. So I have many problems with the dynamically creation of the WSDL file by SCA. I wrote a code that allows the WSDL file is created in another directory. Just i defined a WSDL_DIR before the "include 'SCA.php'; "... more »
|
|
|