phpeveryday.com

The best tutorial of php, php framework, php strategies, object oriented oriented,


Web Services - WSDL Array: Object Type

Tag: web services, wsdl, array, object, type   Category: PHP Application
post: 14 Apr 2008 read: 1,053


Web Services WSDL Array Type Step By Step Tutorial - Part 2: Object are another type you may often use it. Why? May your application not simple just sent one value. You may want to transmit much information. For example like this:

<xsd:complexType name="Books">
  <xsd:all>
    <xsd:element name="bookTitle" type="xsd:string" />
      <xsd:element name="bookYear" type="xsd:int" />
    <xsd:element name="bookAuthor" type="xsd:string" />
  </xsd:all>
</xsd:complexType>

It can translate:


class Books
{
  public bookTitle;
  public bookYear;

}


Series this article:
Web Services - WSDL Array: Array Type
Web Services - WSDL Array: Object Type
Web Services - WSDL Array: Sample WSDL Document
Web Services - WSDL Array: Sample Soap Server
Web Services - WSDL Array: Testing with SOAP Client

| Give Your Opinion | Recommend
Share and Bookmark to: These icons link to social bookmarking sites where readers can share and discover new web pages.
digg del.icio.us technorati Ma.gnolia BlinkList

Recommended articles by other readers:
Web Services: How PHP Kiss VB.NET? (Part 1)
Chart: How to Build Cool Animation Real Time Chart
Joomla: Fast Road to Understand Component Programming
Email: Send Attachement Mail
SMS : Sending SMS with PHP and ActiveXperts (Part 1)

What do You Think?
Your Name *:
Email *:
(Will not be published)
Website/URL:
Your Comment *:
* Required


624
posting