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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
|
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 288721 $ -->
<chapter xml:id="sca.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.examples;
<para>
The examples in the subsequent sections illustrate the
following aspects of PHP for SCA:
</para>
<!-- {{{ itemizedlist of examples -->
<itemizedlist>
<listitem>
<para>
How PHP annotations are used to define PHP classes as SCA
components, and how annotations are used to define the
services.
</para>
</listitem>
<listitem>
<para>
How an SCA component can be exposed as a Web service
</para>
</listitem>
<listitem>
<para>
How an SCA component can consume a Web service, whether
provided by another SCA component or by some other service which
knows nothing of SCA
</para>
</listitem>
<listitem>
<para>
How an SCA component can call another SCA component locally
(within the same process and on the same call stack)
</para>
</listitem>
<listitem>
<para>
How a client script which is not an SCA component can use the
getService call to obtain a proxy for an SCA component.
</para>
</listitem>
<listitem>
<para>
How data structures such as Addresses, or Puchase Orders,
are represented as Service Data Objects, and handled.
</para>
</listitem>
<listitem>
<para>
How SCA components are deployed, and in particular how and
when WSDL is generated for a service.
</para>
</listitem>
<listitem>
<para>
How parameters are always passed by value (and not by
reference) between components, even when the calls are local.
This ensures that the semantics of a call do not change depending on
the location of a component.
</para>
</listitem>
<listitem>
<para>
How positional parameters to a service are supported, even
when the underlying WSDL is document literal wrapped, and
naturally supports only named parameters.
</para>
</listitem>
<listitem>
<para>
How business and runtime exceptions are handled.
</para>
</listitem>
</itemizedlist>
<!-- }}} -->
<!-- {{{ Section Structure -->
<section xml:id="SCA.examples.structure">
<title>The structure of a Service Component</title>
<para>
A service component is implemented by a class. To identify it
as a service component, it contains an @service annotation. The SCA
runtime will use the file name of the script to determine the
component name, by convention. The class and script file must
therefore share the same name.
</para>
<para>
PHP SCA components always expose a service, and there is no way
for a component to be invoked other than to be called as a result of a
Web service request, or called directly from another component or
from a script. For this reason a valid PHP SCA component will always
contain an @service annotation and at least one public method.
</para>
<para>
Each SCA Component requires that the SCA.php script is
included. As well as containing the definition of the SCA class,
this script contains executable PHP code that will run whenever the
script is called, and which will be responsible for making the
component behave as needed.
</para>
<caution>
<para>
It is very important that if your file contains other
includes, they come before the include for SCA.php. If there are
includes after the include for SCA.php, they will not have been
processed when the SCA runtime runs your class.
</para>
</caution>
<para>
The example below illustrates this overall structure
</para>
<para>
<example>
<title> The structure of an SCA for PHP component </title>
<programlisting role="php">
<![CDATA[
<?php
// any includes
include "SCA/SCA.php";
/**
* @service
*/
class ConvertedStockQuote {
// instance variables, business logic, including at least one public method
}
?>
]]>
</programlisting>
</example>
</para>
</section>
<!-- }}} -->
<!-- {{{ Section Proxies -->
<section xml:id="SCA.examples.proxies">
<title> Obtaining a proxy for another Service Component </title>
<para>
One SCA component can call the service provided by another SCA
component. The service a component provides is made up of all of its
public methods. SCA for PHP currently provides two ways for one
component to call another: either locally (i.e. within the same PHP
run-time, and on the same call stack) or remotely if the called
component exposes a Web service binding.
</para>
<para>
In order for one component to call another, the calling
component needs a proxy for the called component. This proxy is
usually provided as an instance variable in the calling component,
though proxies can also be obtained with the SCA::getService()
call, as we shall see later. When a component is constructed,
proxies are constructed for any instance variable which refer to
another component, and these proxies are "injected" into the
instance variables. Proxies are always used, whether the
component is local or remote, in order to provide identical calling
behavior between remote and local calls (for example, local calls
are made to always pass data by-value). The proxies know how to
locate the required component and to pass the calls made on to them.
</para>
<para>
Instance variables which are intended to hold proxies for
services are indicated by the two PHPDocumentor-style
annotations, @reference and @binding. Both annotations are
placed in the documentation section for a class instance variable,
as shown by the code below.
</para>
<para>
The @reference annotation before an instance variable
indicates that that instance variable is to be initialized with a
proxy to a component.
</para>
<para>
The @binding annotation has two forms @binding.php and
@binding.soap, and indicates that the proxy is either for a local
component or for a Web service respectively. For both @binding.php
and @binding.soap, the annotation gives a target URI.
</para>
<para>
At the moment, with the annotation-based method of
specifying dependencies, the only way to alter the intended target
of a reference is to alter the annotation within the component.
</para>
<para>
In our ConvertedStockQuote example, the
<varname>$exchange_rate</varname> instance variable will be
initialized with a proxy to the local ExchangeRate component
whenever an instance of the ConvertedStockQuote is constructed.
</para>
<para>
<example>
<title> Obtaining a proxy for a local PHP class </title>
<programlisting role="php">
<![CDATA[
<?php
/**
* The currency exchange rate service to use.
*
* @reference
* @binding.php ../ExchangeRate/ExchangeRate.php
*/
public $exchange_rate;
?>
]]>
</programlisting>
</example>
</para>
<para>
For @binding.php, the URI identifies the location of the
script containing the implementation of the component. The
component will be called locally. The service provided is the set of
public methods of the component. The URI must be a simple pathname,
either absolute or relative. The component will be loaded with the
PHP include directive, after testing to see if it is already loaded
with
<function>class_exists</function>. If the URI is a relative
path, it is resolved relative to the component containing the
annotation. Note that this is different from the normal PHP
behaviour where scripts would be looked for along the PHP
include_path, This is intended to provide some
location-independence for cross-component references.
</para>
<para>
If this ExchangeRate service were remote and to be called as a
Web service, only the @binding line changes. Instead of giving the
location of a PHP class, it gives the location of the WSDL describing
the web service. In our example component, this is illustrated by
the second reference:
</para>
<para>
<example>
<title> Obtaining a proxy for a web service </title>
<programlisting role="php">
<![CDATA[
<?php
/**
* The stock quote service to use.
*
* @reference
* @binding.soap ../StockQuote/StockQuote.wsdl
*/
public $stock_quote;
?>
]]>
</programlisting>
</example>
</para>
<para>
The StockQuote component will be called via a Web service
request. In this case the URI for the WSDL can be a simple pathname, or
may contain a PHP wrapper and begin, for example, with
<varname>file://</varname> or
<varname>http://</varname>. In the event that it is a simple
pathname, it can be absolute or relative, and if relative will be
resolved relative to the component containing the annotation.
Note that this is like the behaviour for @binding.php, and
different from the normal PHP behaviour where the file would be
looked for relative to the PHP current working directory, which
would usually be the location of the first script to be called. This
behaviour is intended to give consistency across the different
bindings and to provide some location-independence for
references between components.
</para>
</section>
<!-- }}} -->
<!-- {{{ Section Calling -->
<section xml:id="SCA.examples.calling">
<title> Calling another Service Component </title>
<para>
The ConvertedStockQuote example also calls the proxies for
the two components to which it refers.
</para>
<para>
<example>
<title> Calling services </title>
<programlisting role="php">
<![CDATA[
<?php
$quote = $this->stock_quote->getQuote($ticker);
$rate = $this->exchange_rate->getRate($currency);
?>
]]>
</programlisting>
</example>
</para>
<para>
The call to the StockQuote service is a call to a local service;
the call to the ExchangeRate service is a call to a remote service.
Note that the way the call is made looks the same regardless of
whether the call is to a local service or a remote one.
</para>
<para>
The proxies which have been injected ensure that the way calls
to components look and behave are the same way regardless of whether
they are to a local or remote service, so that components are not
sensitive to whether a call is to a local or a remote service. For
example, the proxy for a local service takes copies of the arguments
and passes only those copies, to ensure that calls are made to be
pass-by-value, as they would be for a remote call. Also, the proxy
for a remote service takes the arguments from a positional
parameter list and ensures they are packaged properly in a SOAP
request and converted back to a positional parameter list at the far
end.
</para>
<para>
In the example above, the
<varname>$ticker</varname> and
<varname>$currency</varname> are clearly PHP scalar types.
Components can pass the PHP scalar types string, integer, float and
boolean, but data structures on service calls are always passed as
Service Data Objects (SDOs). A later section describes how a
component can create an SDO to pass on a local or Web service call, or
how a component can create an SDO to return. The PHP SDO project
documentation describes how to work with the SDO APIs (see
<link linkend='ref.sdo'>the SDO pages</link>.
</para>
</section>
<!-- }}} -->
<!-- {{{ Section nonscascript -->
<section xml:id="SCA.examples.nonSCAscript">
<title>Locating and calling services from a script which is not an
SCA Component </title>
<para>
SCA components obtain proxies for other components or
services as instance variables annotated with @reference, but
this is not possible for a script that is not itself also a component.
A client script which is not a component must use the
<function>SCA::getService</function> static method to obtain a
proxy for a service, whether local or remote. The
<function>getService</function> method takes a URI as the
argument. Typically this is the location of a local PHP script
containing a component, or of a wsdl file, and is used in exactly the
same way as the targets of the @binding annotations described in the
previous section: that is, relative URIs are resolved against the
location of the client script and not against the PHP include_path
or current working directory.
</para>
<para>
For example, a script that needed to obtain proxies for the
ExchangeRate and StockQuote services but was not a component would
use the
<function>getService</function> method as follows:
</para>
<para>
<example>
<title> Obtaining a proxy using getService </title>
<programlisting role="php">
<![CDATA[
<?php
$exchange_rate = SCA::getService('../ExchangeRate/ExchangeRate.php');
$stock_quote = SCA::getService('../StockQuote/StockQuote.wsdl');
?>
]]>
</programlisting>
</example>
</para>
<para>
Methods on services can then be called on the returned proxy,
just as they can in a component.
</para>
<para>
<example>
<title> Making calls on the proxy </title>
<programlisting role="php">
<![CDATA[
<?php
$quote = $stock_quote->getQuote($ticker);
$rate = $exchange_rate->getRate($currency);
?>
]]>
</programlisting>
</example>
</para>
</section>
<!-- }}} -->
<!-- {{{ Section Exposing Webservice Componenent -->
<section xml:id="sca.examples.exposing-webservice">
<title> Exposing a Service Component as a Web service </title>
<para>
SCA for PHP can generate WSDL from the annotations within a
service component, so that it can be easily deployed and exposed as a
Web service. To provide SCA with the information it needs to
generate the WSDL, it is necessary to add the annotation
@binding.soap under the @service annotation and to specify the
parameters and return values of the methods using the @param and
@return annotations. These annotations will be read when WSDL is
generated, and the order and types of the parameters determine the
contents of the
<schema> section of the WSDL.
</para>
<para>
SCA for PHP always generates document/literal wrapped WSDL
for components that are exposing a Web service. Note that this does
not stop components from consuming Web services which are not SCA
components and which are documented with WSDL written in a
different style.
</para>
<para>
The scalar types which can be used in the @param annotation are
the four common PHP scalar types: boolean, integer, float and
string. These are simply mapped to the XML schema types of the same
name in the WSDL. The example below, which is a trivial
implementation of the StockQuote service that the
ConvertedStockQuote component calls, illustrates string and
float types.
</para>
<para>
<example>
<title> StockQuote Service </title>
<programlisting role="php">
<![CDATA[
<?php
include "SCA/SCA.php";
/**
* Scaffold implementation for a remote StockQuote Web service.
*
* @service
* @binding.soap
*
*/
class StockQuote {
/**
* Get a stock quote for a given ticker symbol.
*
* @param string $ticker The ticker symbol.
* @return float The stock quote.
*/
function getQuote($ticker) {
return 80.9;
}
}
?>
]]>
</programlisting>
</example>
</para>
<para>
WSDL much like the following (though with a service location
other than 'localhost', probably) would be generated from this
service:
</para>
<para>
<example>
<title> Generated WSDL </title>
<programlisting role="xml">
<![CDATA[
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xsi:type="tDefinitions"
xmlns:tns2="http://StockQuote" xmlns:tns="http://schemas.xmlsoap.org/wsdl/"
xmlns:tns3="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" targetNamespace="http://StockQuote">
<types>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://StockQuote">
<xs:element name="getQuote">
<xs:complexType>
<xs:sequence>
<xs:element name="ticker" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getQuoteResponse">
<xs:complexType>
<xs:sequence>
<xs:element name="getQuoteReturn" type="xs:float"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</types>
<message name="getQuoteRequest">
<part name="getQuoteRequest" element="tns2:getQuote"/>
</message>
<message name="getQuoteResponse">
<part name="return" element="tns2:getQuoteResponse"/>
</message>
<portType name="StockQuotePortType">
<operation name="getQuote">
<input message="tns2:getQuoteRequest"/>
<output message="tns2:getQuoteResponse"/>
</operation>
</portType>
<binding name="StockQuoteBinding" type="tns2:StockQuotePortType">
<operation name="getQuote">
<input>
<tns3:body xsi:type="tBody" use="literal"/>
</input>
<output>
<tns3:body xsi:type="tBody" use="literal"/>
</output>
<tns3:operation xsi:type="tOperation" soapAction=""/>
</operation>
<tns3:binding xsi:type="tBinding" transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
</binding>
<service name="StockQuoteService">
<port name="StockQuotePort" binding="tns2:StockQuoteBinding">
<tns3:address xsi:type="tAddress" location="http://localhost/StockQuote/StockQuote.php"/>
</port>
</service>
</definitions>
<!-- this line identifies this file as WSDL generated by SCA for PHP. Do not remove -->
]]>
</programlisting>
</example>
</para>
</section>
<!-- }}} -->
<!-- {{{ Section Deploy -->
<section xml:id="SCA.examples.deploy">
<title> Deploying an SCA component </title>
<para>
There are no special steps needed to deploy a PHP SCA
component. It is sufficient to place the component PHP script in its
proper place under the web server document root, just like any other
PHP script. It is the
<function>SCA::initComponent</function> executable line
within each component that will be executed whenever the script is
called, and which will be responsible for making the component
respond appropriately to Web service calls, local calls, or
requests for WSDL.
</para>
</section>
<!-- }}} -->
<!-- {{{ Section Obtaining WSDL -->
<section xml:id="SCA.examples.obtaining-wsdl">
<title>Obtaining the WSDL for an SCA component offering a Service as
a Web service </title>
<para>
SCA components that expose a Web service interface (i.e. have
an @binding.soap annotation) will return their WSDL definition in
response to an HTTP request with a get parameter of "wsdl". The usual
way to obtain this is with "?wsdl" on the end of a URL. The example
below uses
<function>file_get_contents</function> to obtain WSDL from a
service and writes it to a temporary file before then obtaining a
proxy for the service in the usual way. You could of course also
obtain the WSDL in a browser, or by some other means, and save the file
yourself.
</para>
<para>
<example>
<title> Generated WSDL </title>
<programlisting role="xml">
<![CDATA[
<?php
$wsdl = file_get_contents('http://www.example.com/Services/Example.php?wsdl');
file_put_contents("service.wsdl",$wsdl); //write the wsdl to a file
$service = SCA::getService('service.wsdl');
?>
]]>
</programlisting>
</example>
</para>
<para>
NOTE: If the wsdl requires imported xsds, these will need to be
fetched separately.
</para>
</section>
<!-- }}} -->
<!-- {{{ Section Understanding WSDL -->
<section xml:id="SCA.examples.understanding-wsdl">
<title> Understanding how the WSDL is generated </title>
<para>
SCA for PHP generates WSDL for components which contain an
@binding.soap annotation after the @service annotation. To
generate WSDL, the SCA runtime reflects on the component and
examines the @param and @return annotations for each public
method, as well as any @types annotations within the component. The
information from the @param and @return annotations is used to
build the <types> section of the WSDL. Any @types
annotations which specify a separate schema file will result in an
<import> element for that schema within the WSDL.
</para>
<section xml:id="SCA.examples.understanding-wsdl.location"><!-- {{{ -->
<title> Location attribute of the <service> element</title>
<para>
At the bottom of the WSDL is the <service> element
which uses the location attribute to identify the URL of the
service. For example this might look as follows:
</para>
<para>
<example>
<title> location attribute </title>
<programlisting role="xml">
<![CDATA[
<service name="ConvertedStockQuote"
...
location="http://localhost/ConvertedStockQuote/ConvertedStockQuote.php"/>
]]>
</programlisting>
</example>
</para>
<para>
Note that this location is relative to the document root of
the web server, and cannot be worked out in advance. It can only be
worked out once the component is in its proper place under a running
web server, when the hostname and port can be known and placed in the
WSDL. Detail from the URL that requests the WSDL is used, so for
example if the WSDL is generated in response to a request to
http://www.example.com:1111/ConvertedStockQuote/ConvertedStockQuote.php?wsdl,
a location of
http://www.example.com:1111/ConvertedStockQuote/ConvertedStockQuote.php
is what will be inserted into the location attribute in the WSDL.
</para>
</section>
<!-- }}} -->
<section xml:id="SCA.examples.understanding-wsdl.positional-parameters"> <!-- {{{ -->
<title>Document/literal wrapped WSDL and positional
parameters</title>
<para>
SCA for PHP generates WSDL in the document/literal wrapped
style. This style encloses the parameters and return types of a
method in 'wrappers' which are named after the corresponding
method. The <types> element at the top of the WSDL defines
each of these wrappers. If we consider the
<function>getQuote</function> method of the
ConvertedStockQuote example:
</para>
<para>
<example>
<title> method with two arguments </title>
<programlisting role="php">
<![CDATA[
<?php
/**
* Get a stock quote for a given ticker symbol in a given currency.
*
* @param string $ticker The ticker symbol.
* @param string $currency What currency to convert the value to.
* @return float The stock value is the target currency.
*/
function getQuote($ticker, $currency)
{
$quote = $this->stock_quote->getQuote($ticker);
$rate = $this->exchange_rate->getRate($currency);
return $rate * $quote;
}
?>
]]>
</programlisting>
</example>
</para>
<para>
The WSDL generated to define this method will name both the
method and the parameters, and give an XML schema type for the
parameters. The types section of the WSDL looks like this:
</para>
<para>
<example>
<title> types section illustrating named parameters </title>
<programlisting role="xml">
<![CDATA[
<types>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://ConvertedStockQuote">
<xs:element name="getQuote">
<xs:complexType>
<xs:sequence>
<xs:element name="ticker" type="xs:string"/>
<xs:element name="currency" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getQuoteResponse">
<xs:complexType>
<xs:sequence>
<xs:element name="getQuoteReturn" type="xs:float"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</types>
]]>
</programlisting>
</example>
</para>
<para>
The SCA run-time has special processing to handle how
positional parameter lists in the interface are converted to XML
containing named parameters in the soap request, and then back to
positional parameter lists again. To see why this matters,
consider how a PHP script which used a different interface to make a
SOAP call would need to construct the parameter list. A PHP script
using the PHP SoapClient, for example, would need to pass the
SoapClient a single parameter giving the values for "ticker" and
"currency", perhaps as an associative array. To insist that SCA
components construct parameter lists to make Web service calls in
this way would be to make local and remote calls look different, so a
different approach is needed.
</para>
<para>
When SCA generates WSDL for an SCA component it includes a
comment in the WSDL which marks that WSDL as being the interface for
an SCA component. In this case, when one SCA component calls
another through a Web service, the SCA runtime on the calling end
takes the positional parameter list from the call and assigns the
values one by one to the named elements in the soap message. For
example a call to the
<function>getQuote</function> method defined above that
passes the values 'IBM' and 'USD' and looks like this:
</para>
<para>
<programlisting role="php">
<![CDATA[
$quote = $remote_service->getQuote('IBM','USD');
]]>
</programlisting>
</para>
<para>
will result in a soap message containing the
following:
</para>
<para>
<programlisting role="php">
<![CDATA[
<getQuote>
<ticker>IBM</ticker>
<currency>USD</currency>
</getQuote>
]]>
</programlisting>
</para>
<para>
On the service-providing end, the SCA run-time takes the
parameters one by one from the soap message and forms a positional
parameter list from them, re-forming the argument list
('IBM','USD').
</para>
<caution>
<para>
At both ends the SCA runtime relies on the order in which the
parameters appear in the soap message being the same as that in the
target method's parameter list. This is ultimately determined
by the order of the @param annotations: this determines the order
in which the parameters appear in the WSDL and thereby the order in
which they appear in the soap message. Therefore it is essential
that the order of the @param annotations matches that of the
parameters in the method's parameter list.
</para>
</caution>
</section>
<!-- }}} -->
</section>
<!-- }}} -->
<section xml:id="SCA.examples.structures"><!-- {{{ -->
<title> Working with Data Structures </title>
<para>
SCA components can pass and return the four PHP scalar types
boolean, integer, float and string, but to pass or return data
structures, SCA components use Service Data Objects (SDOs). SDOs
are described in much more detail in
<link linkend='ref.sdo'>the SDO pages</link> of this manual.
Readers familiar with SDOs will know that they are suitable for
representing the sort of structured and semi-structured data that
is frequently modeled in XML, and that they serialize very
naturally for passing between remote components, or in Web
services. SDOs are presently the only supported way to pass and
return data structures. It is not possible to pass or return PHP
objects, or PHP arrays.
</para>
<para>
The SCA runtime always assures data is passed by-value, even
for local calls. To do this, the SCA runtime copies any SDOs in the
parameter list before passing them on, just as it does for scalar
types.
</para>
<section xml:id="sca.examples.structures.defined"><!-- {{{ -->
<title> How data structures are defined to SCA components </title>
<para>
Currently the only mechanism for specifying the location of
a data structure definition is by specifying the types in an XML
schema file. However, in the future it may be possible to define
types in other ways, such as based on PHP classes or interfaces, or
based on definitions expressed as associative arrays.
</para>
<para>
To illustrate the use of SDOs we introduce a new component.
The PortfolioMangement service below returns an SDO
representing a stock portfolio for a given customer.
</para>
<para>
<example>
<title>A Component that uses Data Structures</title>
<programlisting role="php">
<![CDATA[
<?php
include "SCA/SCA.php";
/**
* Manage the portfolio for a customer.
*
* @service
* @binding.soap
*
* @types http://www.example.org/Portfolio PortfolioTypes.xsd
*
*/
class PortfolioManagement {
/**
* Get the stock portfolio for a given customer.
*
* @param integer $customer_id The id for the customer
* @return Portfolio http://www.example.org/Portfolio The stock portfolio (symbols and quantities)
*/
function getPortfolio($customer_id) {
// Pretend we just got this from a database
$portfolio = SCA::createDataObject('http://www.example.org/Portfolio', 'Portfolio');
$holding = $portfolio->createDataObject('holding');
$holding->ticker = 'AAPL';
$holding->number = 100.5;
$holding = $portfolio->createDataObject('holding');
$holding->ticker = 'INTL';
$holding->number = 100.5;
$holding = $portfolio->createDataObject('holding');
$holding->ticker = 'IBM';
$holding->number = 100.5;
return $portfolio;
}
}
?>
]]>
</programlisting>
</example>
</para>
<para>
The @types annotation:
</para>
<para>
<programlisting role="php">
<![CDATA[
<?php
@types http://www.example.org/Portfolio PortfolioTypes.xsd
?>
]]>
</programlisting>
</para>
<para>
indicates that types in the namespace
http://www.example.org/Portfolio will be found in the schema
file located by the URI PortfolioTypes.xsd. The generated WSDL
would reproduce this information with an import statement as
follows:
</para>
<para>
<programlisting role="xml">
<![CDATA[
<xs:import schemaLocation="PortfolioTypes.xsd"
namespace="http://www.example.org/Portfolio"/>
]]>
</programlisting>
</para>
<para>
so the URI, absolute or relative, must be one that can be
resolved when included in the schemaLocation attribute.
</para>
</section>
<!-- }}} -->
<section xml:id="sca.examples.structures.creating"><!-- {{{ -->
<title>Creating SDOs </title>
<para>
Readers familiar with SDOs will know that they are always
created according to a description of the permitted structure
(sometimes referred to as the 'schema' or 'model') and that,
rather than creating them directly using 'new', some form of data
factory is needed. Often, an existing data object can be used as the
data factory, but sometimes, and especially in order to get the
first data object, something else must act as the data factory.
</para>
<para>
In SCA, either the SCA runtime class or the proxies for
services, whether local or remote, can act as the data factories
for SDOs. The choice of which to use, and when, is described in the
next two sections.
</para>
<para>
We switch to a new example in order to illustrate the creation
of SDOs, both to pass to a service, and to be returned from a service.
</para>
</section>
<!-- }}} -->
<section xml:id="sca.examples.structures.services"><!-- {{{ -->
<title>Creating an SDO to pass to a service</title>
<para>
A caller of a service which requires a data structure to be
passed in to it uses the proxy to the service as the data factory for
the corresponding SDOs. For example, suppose a component makes
use of a proxy for a service provided by a local AddressBook
component.
</para>
<para>
<programlisting role="php">
<![CDATA[
<?php
/**
* @reference
* @binding.local AddressBook.php
*/
$address_book;
?>
]]>
</programlisting>
</para>
<para>
The AddressBook component that it wishes to call is defined
as follows:
</para>
<para>
<programlisting role="php">
<![CDATA[
<?php
/**
* @service
* @binding.soap
* @types http://addressbook ../AddressBook/AddressBook.xsd
*/
class AddressBook {
/**
* @param personType $person http://addressbook (a person object)
* @return addressType http://addressbook (the address object for the person object)
*/
function lookupAddress($person) {
...
}
}
?>
]]>
</programlisting>
</para>
<para>
The AddressBook component provides a service method called
<function>lookupAddress</function> which uses types from the
http://addressbook namespace. The lookupAddress method takes a
personType data structure and returns an addressType. Both types
are defined in the schema file addressbook.xsd.
</para>
<para>
Once the component that wishes to use the AddressBook
component has been constructed, so that the
<varname>$address_book</varname> instance variable contains
a proxy for the service, the calling component can use the proxy in
<varname>$address_book</varname> to create the person SDO, as
shown below:
</para>
<para>
<programlisting role="php">
<![CDATA[
<?php
$william_shakespeare = $address_book->createDataObject('http://addressbook','personType');
$william_shakespeare ->name = "William Shakespeare";
$address = $address_book->lookupAddress($william_shakespeare);
?>
]]>
</programlisting>
</para>
<para>
Note, the use of the proxy as the means to create the SDO is not
limited to SCA components. If a service is being called from a
general PHP script, and the proxy was obtained with
<function>getService</function> then the same approach is
used.
</para>
<para>
<programlisting role="php">
<![CDATA[
<?php
$address_book = SCA::getService('AddressBook.php');
$william_shakespeare = $address_book->createDataObject('http://addressbook','personType');
?>
]]>
</programlisting>
</para>
</section>
<!-- }}} -->
<section xml:id="sca.examples.structures.services.returning"><!-- {{{ -->
<title> Creating an SDO to return from a component </title>
<para>
A component that needs to create a data object for return to a
caller will not have a proxy to use as a data object, In this case it
uses the
<function>createDataObject</function> static method on
<filename>SCA.php</filename>. Hence if the AddressBook
component described above needed to create an object of type
<classname>addressType</classname> within the namespace
http://addressbook, it might do so as follows:
</para>
<para>
<programlisting role="php">
<![CDATA[
<?php
$address = SCA::createDataObject('http://addressbook','addressType');
?>
]]>
</programlisting>
</para>
</section>
<!-- }}} -->
</section>
<!-- }}} -->
<section xml:id="SCA.examples.errorhandling"><!-- {{{ -->
<title> Error handling </title>
<para>
This section describes how errors are handled. There are two
types of errors:
</para>
<itemizedlist>
<listitem>
<para>
SCA runtime exceptions are those that signal problems in
the management of the execution of components, and in the
interaction with remote services. These might occur due to
network or configuration problems.
</para>
</listitem>
<listitem>
<para>
Business exceptions are those that are defined by the
programmer. They extend the PHP Exception class, and are thrown
and caught deliberately as part of the business logic.
</para>
</listitem>
</itemizedlist>
<section xml:id="sca.examples.errorhandling.runtime"><!-- {{{ -->
<title> Handling of Runtime exceptions </title>
<para>
There are two types of SCA runtime exception:
</para>
<itemizedlist>
<listitem>
<para>
SCA_RuntimeException - signals a problem found by or
perhaps occurring within the SCA runtime. This can be thrown for
a variety of reasons, many of which can occur regardless of
whether a connection is being made to a local or a remote service:
an error in one of the annotations within a component, a missing
WSDL or php file, and so on. In the case of Web services, an
SCA_RuntimeException can also be thrown if a SoapFault is
received from a remote Web service and the fault code in the
SoapFault indicates that a retry is unlikely to be successful.
</para>
</listitem>
<listitem>
<para>
SCA_ServiceUnavailableException - this is a subclass of
SCA_RuntimeException and signals a problem in connecting to or
using a remote service, but one which might succeed if retried.
In the case of Web services, this exception is thrown if a
SoapFault is received with a fault code that indicates that a
retry might be successful.
</para>
</listitem>
</itemizedlist>
</section>
<!-- }}} -->
<section xml:id="sca.examples.errorhandlilng.business"> <!-- {{{ -->
<title> Handling of Business exceptions </title>
<para>
Business exceptions may be defined and thrown by a component
in the normal way, regardless of whether the component has been
called locally or remotely. The SCA runtime does not catch
business exceptions that have been thrown by a component called
locally, so they will be returned to a caller in the normal way. If a
component has been called via a Web service, on the other hand, the
SCA runtime on the service providing end does catch business
exceptions, and will ensure these are passed back to the calling
end and re-thrown. Assuming that the calling end has a definition
of the exception (that is, is able to include a file containing the
PHP class defining the exception) the re-thrown exception will
contain the same details as the original, so that the
<function>getLine</function> and
<function>getFile</function> methods for example will contain
the location where the exception was thrown within the business
logic. The exception will be passed in the detail field of a soap
fault with a fault code of "Client".
</para>
</section>
<!-- }}} -->
</section>
<!-- }}} -->
</chapter>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
|