Search the web
Sign In
New User? Sign Up
soapbuilders
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
PEAR SOAP   Message List  
Reply | Forward Message #7454 of 10820 |
Hello everyone,
I have a temporary endpoint set up for PHP PEAR SOAP, until I get it
moved over to pear.php.net. This is a derivative of Dietrich's SOAPx4
that has been 'pearized'. All info on it is at
www.caraveo.com/soap_interop/

Regards,
Shane Caraveo




Sun Apr 14, 2002 9:49 pm

mixedpuppy
Offline Offline
Send Email Send Email

Forward
Message #7454 of 10820 |
Expand Messages Author Sort by Date

Hello everyone, I have a temporary endpoint set up for PHP PEAR SOAP, until I get it moved over to pear.php.net. This is a derivative of Dietrich's SOAPx4 ...
Shane Caraveo
mixedpuppy
Offline Send Email
Apr 14, 2002
9:52 pm

... Cool, results & wiredumps posted to http://www.pocketsoap.com/weblog/soapInterop/ Some notes, the response elements should be namespace qualified....
Simon Fell
simonfell99
Online Now Send Email
Apr 14, 2002
10:13 pm

... The endpoint listed on the website isn't correct, but it is correct in the WSDL. Results (including wire dumps) have been added to ...
Sam Ruby
sa3ruby
Offline Send Email
Apr 14, 2002
11:47 pm

Hi, Welcome! The Round 2 interop page has been updated with your endpoint info and links to test client results. Test results using White Mesa client: "base"...
Bob Cunnings
cunnings@...
Send Email
Apr 15, 2002
12:20 am

... Thanks! ... I'm doing a bunch of changes right now. Essentialy (in addition to a couple bugs) the server responses were serializing php native types ...
Shane Caraveo
mixedpuppy
Offline Send Email
Apr 15, 2002
12:23 am

Hi Simon, As I am going through fixing a few things, I found a test of yours that I think is faulty. The following wire you define a header that has no actor,...
Shane Caraveo
mixedpuppy
Offline Send Email
Apr 15, 2002
2:59 am

Hi Shane, The string is a bit missleading in this case, the test is expecting the server to ignore the header, and return the string. I'll look at tweaking the...
Simon Fell
simonfell99
Online Now Send Email
Apr 15, 2002
3:10 am

Just uploaded an update, these issues should be fixed now. Shane...
Shane Caraveo
mixedpuppy
Offline Send Email
Apr 15, 2002
7:06 am

Simon, I have some (probably dumb) questions about the root attribute. The SOAP 1.2 spec says: "The SOAP root attribute MAY appear on any subelement within the...
ravenengelen
Offline Send Email
Apr 15, 2002
7:59 pm

The text is unclear whether its just immediate children or not, i've only ever seen it on immediate children. the root attribute is used to lablel independent...
Simon Fell
simonfell99
Online Now Send Email
Apr 16, 2002
1:31 am

Thanks Simon, IMO the root attribute has no use at all considering that the same effect can be obtained by the use of the 'id' attribute. By definition, the...
Robert van Engelen
ravenengelen
Offline Send Email
Apr 16, 2002
1:25 pm

Yes, however there is no constraint on serializing id's you can (and at least one impl does), put an id on every element, regardless of whether its referenced...
Simon Fell
simonfell99
Online Now Send Email
Apr 17, 2002
3:55 am

... Roots of a tree, clearly. But roots of a (possibly cyclic) graph? - Sam Ruby...
Sam Ruby
sa3ruby
Offline Send Email
Apr 16, 2002
3:13 pm

Sam, ... Actually, if you allow graphs there can be more than one root which makes the use of root='1' even more suspicious. Even if you allow cyclic graphs,...
Robert van Engelen
ravenengelen
Offline Send Email
Apr 16, 2002
6:02 pm

... My understanding is that an id can appear on any element whether there is a reference to it or not. Some soap stacks may use this as an optimisation (don't...
Pete Hendry
peter.hendry@...
Send Email
Apr 17, 2002
1:50 am

Thanks Pete, ... Yes, but I believe that this 'best practice' is far easier and more elegant to use compared to the root attribute. Consider this: "The...
Robert van Engelen
ravenengelen
Offline Send Email
Apr 17, 2002
4:36 am

... How about [SOAP1.1/2] "The SOAP root attribute MAY appear on any immediate subelement within the SOAP Header and SOAP Body elements. The attribute does not...
Pete Hendry
peter.hendry@...
Send Email
Apr 17, 2002
5:08 am

On second thoughts, I think enc:root should either 1. if enc:root is present on any subelement of Body then it MUST be present on all subelements of Body 2. if...
Pete Hendry
peter.hendry@...
Send Email
Apr 17, 2002
11:49 am

+1 ... Messy!?! It's a food fight! -Matt ... From: Pete Hendry [mailto:peter.hendry@...] Sent: Wednesday, April 17, 2002 6:36 AM To:...
Matt Long
mattlong61
Offline Send Email
Apr 18, 2002
8:53 pm

Comments inline ... From: Pete Hendry [mailto:peter.hendry@...] Sent: Wednesday, April 17, 2002 6:36 AM To: soapbuilders@yahoogroups.com Subject: Re:...
Matt Long
mattlong61
Offline Send Email
Apr 19, 2002
7:25 am

Hi, Consider this: <s:Envelope ...> <s:Body> <k:salaryOffer>10000.00</k:salaryOffer> <s:root="1" k:salaryOffer>1000000.00</k:salaryOffer> </s:Body> ...
Robert van Engelen
ravenengelen
Offline Send Email
Apr 19, 2002
3:32 pm

Hi, Quiz: which of the payload(s) below is/are acceptable and which should fault? Make a mistake and y'll loose big time. Do you want your administration...
Robert van Engelen
ravenengelen
Offline Send Email
Apr 19, 2002
4:18 pm

- Sam Ruby...
Sam Ruby
sa3ruby
Offline Send Email
Apr 17, 2002
11:57 am

... That would prevent a root from being part of a doubly-linked list, e.g. /r$...
Rich Salz
rich_salz
Offline Send Email
Apr 17, 2002
3:01 pm

Pete, Thanks for looking into this matter. ... These rules will be easy to adopt. I hope they get folded into the SOAP specs. ... IMO, the default values for a...
Robert van Engelen
ravenengelen
Offline Send Email
Apr 17, 2002
4:44 pm

Hi, ... It was said that cycles were not allowed at the top level, so a doubly linked list cannot occur (has cycles with period=2). Earlier I said (in more ...
Robert van Engelen
ravenengelen
Offline Send Email
Apr 19, 2002
11:38 am

Here is what ZSI does: Scan through all immediate child nodes of the Body element, collecting them into three piles: those with no soap:root attribute, those...
Rich Salz
rich_salz
Offline Send Email
Apr 20, 2002
12:59 am

Hi, ... Sounds like a solid approach but very inefficient. The extra scan over the input works great with a DOM. With an efficient on-demand or pull parser,...
Robert van Engelen
ravenengelen
Offline Send Email
Apr 20, 2002
7:17 pm

ZSI is already DOM-based, yes. And I agree, if you're a stream-based approach, then having to buffer things and backtrack can be problematic. I will mention...
Rich Salz
rich_salz
Offline Send Email
Apr 20, 2002
8:26 pm
First  | < Prev  |  Next > Last 
Advanced

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help