|
List Info
Thread: New eBay Soap binding in HEAD
|
|
| New eBay Soap binding in HEAD |
  United States |
2007-05-11 08:35:28 |
I've just checked the ebaysoap binding into HEAD. I've also
checked
in a couple of samples into the examples directory. There's
a readme
in the examples directory that briefly describes how to get
started.
The binding's pretty easy to use, removing the need for the
coder to
work with soap headers and url query string parameters. The
following
is a short example showing how to call the GetSearchResults
operation:
// Get a proxy to the eBay soap API
$ebay = SCA::getService('eBaySvc.wsdl', 'ebaysoap',
array('config' =>
'./config/ebay.ini'));
// Create the query input parameters
$request =
$ebay->createDataObject('urn:ebay:apis:eBLBaseComponents'
,
'GetSearchResultsRequestType');
$request->Version = 495;
$request->Query = 'ipod';
$request->createDataObject('Pagination');
$request->Pagination->EntriesPerPage = 10;
// Make the call
$results = $ebay->GetSearchResults($request);
// Iterate through the results
foreach ($results->SearchResultItemArray as
$search_result_items) {
foreach ($search_result_items as $search_result_item) {
foreach ($search_result_item->Item as $name =>
$value)
echo "<b>{$name}</b>
$value<br/>";
}
}
I've excluded the code from the packaging, so it shouldn't
go into
1.2.1. Any feedback, good or bad, would be appreciated.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "phpsoa" group.
To post to this group, send email to phpsoa googlegroups.com
To unsubscribe from this group, send email to
phpsoa-unsubscribe googlegroups.com
For more options, visit this group at http://
groups.google.co.uk/group/phpsoa?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: New eBay Soap binding in HEAD |
  United States |
2007-05-11 08:48:47 |
Nice Graham. Don't have any feedback yet but a quick
question. Did you
mean to check it into HEAD rather than the branch?
Simon
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "phpsoa" group.
To post to this group, send email to phpsoa googlegroups.com
To unsubscribe from this group, send email to
phpsoa-unsubscribe googlegroups.com
For more options, visit this group at http://
groups.google.co.uk/group/phpsoa?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: New eBay Soap binding in HEAD |
  United States |
2007-05-11 08:58:20 |
Hi Simon, yes I did. I had been assured that this would be
ok because
the 'development in a branch' approach is really only
necessary for
native extension code (because pecl4win always pulls this
from HEAD).
Let me know if you think the binding should go elsewhere.
On 11 May, 14:48, simonsl... googlemail.com wrote:
> Nice Graham. Don't have any feedback yet but a quick
question. Did you
> mean to check it into HEAD rather than the branch?
>
> Simon
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "phpsoa" group.
To post to this group, send email to phpsoa googlegroups.com
To unsubscribe from this group, send email to
phpsoa-unsubscribe googlegroups.com
For more options, visit this group at http://
groups.google.co.uk/group/phpsoa?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: New eBay Soap binding in HEAD |

|
2007-05-11 09:25:49 |
|
On 5/11/07, Graham Charters < gcharters googlemail.com">gcharters googlemail.com> wrote:
Hi Simon, yes I did. I had been assured that this would be ok because the 'development in a branch'; approach is really only necessary for native extension code (because pecl4win always pulls this from HEAD).
Let me know if you think the binding should go elsewhere.
On 11 May, 14:48, simonsl... googlemail.com">simonsl... googlemail.com wrote: > Nice Graham. Don't have any feedback yet but a quick question. Did you
> mean to check it into HEAD rather than the branch? > > Simon
I guess it's OK as we are just about to put another release. You are right about the pecl4win thing so any php changes in HEAD will not affect the dlls that people download. However as we have this rather strange situation where we release from HEAD and develop in a branch rather than the other way round HEAD is our live representation of the last release so if we have to make a quick fix that's where we would do it. I guess we could make a branch from the release lable if we really had to but that's starting to get complicated. If we start developing code in two places it just gets really complicated IMHO.
Simon
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "phpsoa" group. To post to this group, send email to phpsoa googlegroups.com To unsubscribe from this group, send email to phpsoa-unsubscribe googlegroups.com For more options, visit this group at http://groups.google.co.uk/group/phpsoa?hl=en -~----------~----~----~----~------~----~------~--~---
|
| Re: New eBay Soap binding in HEAD |
  United States |
2007-05-11 11:14:26 |
That makes sense. Lets move it out of head and into a
branch.
On 11 May, 15:25, "Simon Laws" <simonsl... googlemail.com> wrote:
> On 5/11/07, Graham Charters <gchart... googlemail.com> wrote:
>
>
>
> > Hi Simon, yes I did. I had been assured that this
would be ok because
> > the 'development in a branch' approach is really
only necessary for
> > native extension code (because pecl4win always
pulls this from HEAD).
> > Let me know if you think the binding should go
elsewhere.
>
> > On 11 May, 14:48, simonsl... googlemail.com wrote:
> > > Nice Graham. Don't have any feedback yet but
a quick question. Did you
> > > mean to check it into HEAD rather than the
branch?
>
> > > Simon
>
> > I guess it's OK as we are just about to put
another release. You are right
>
> about the pecl4win thing so any php changes in HEAD
will not affect the dlls
> that people download. However as we have this rather
strange situation where
> we release from HEAD and develop in a branch rather
than the other way round
> HEAD is our live representation of the last release so
if we have to make a
> quick fix that's where we would do it. I guess we could
make a branch from
> the release lable if we really had to but that's
starting to get
> complicated. If we start developing code in two places
it just gets really
> complicated IMHO.
>
> Simon
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "phpsoa" group.
To post to this group, send email to phpsoa googlegroups.com
To unsubscribe from this group, send email to
phpsoa-unsubscribe googlegroups.com
For more options, visit this group at http://
groups.google.co.uk/group/phpsoa?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
[1-5]
|
|
|
about | contact Other archives ( Real Estate discussion Medical topics )
|