RE: [soapbuilders] Added echoDate, echoBase64 to Frontier endpoint
>As for changing SOAPAction, currently we rely on its value to
>route a request. I'll have to take a look at the code and see
>if it's possible for me to change it easily, without breaking
>any other interfaces. In particular, the colon character may
>cause problems, and our server implementation doesn't know how
>to route based on request URI.
Note that the SOAPAction field is not just a string with a colon in it -
it is a URI following the rules defined by RFC2396. You can't just treat
it as any old string.
Hi all, I added both echoBase64 and echoDate to the Frontier test endpoint. Input params are named inputBase64 and inputDate, respectively. As always, my test...
Jake Savin
jake@...
Apr 24, 2001 10:36 pm
... It looks like Frontier wants a type of xsd:base64, shouldn't it be SOAP-ENC:base64 (or xsd:base64binary)? Brian...
blm@...
Apr 24, 2001 11:37 pm
... Does xsd:base64Binary not work? (And is it xsd:base64binary or is it xsd:base64Binary? <- note capital 'B'.) -Jake...
Jake Savin
jake@...
Apr 24, 2001 11:45 pm
... Frontier recognizes xsd:base64Binary, although it returns xsd:base64, which I don't think is valid. SOAP-ENC:base64, which is what I think it should be, ...
blm@...
Apr 24, 2001 11:55 pm
I seem to recall that there was a schema version issue here. If I'm returning a response encoded according to the 1999 schema (which I am), should it be...
Jake Savin
jake@...
Apr 24, 2001 11:59 pm
... For the 2001 xsd (i.e. http://www.w3.org/2001/XMLSchema) it's definitely base64Binary. For SOAP-ENC (i.e. http://schemas.xmlsoap.org/soap/encoding/) it's...
blm@...
Apr 25, 2001 12:57 am
Hi, Jake! It depends on what schema you send in response. I'm accepting base64 (99) and base64Binary (2001), but sending back 1999, so I'm using base64....
Paul Kulchenko
paulclinger@...
Apr 25, 2001 3:57 am
Ok. That's what I thought. Now, just so I'm totally clear, it's xsd:base64, as opposed to SOAP-ENC:base64, right? Thanks, -Jake...
Jake Savin
jake@...
Apr 25, 2001 4:17 am
hi, Jake! I believe it's SOAP-ENC:base64 (1999) and xsd:base64Binary (2001), but I might be wrong, don't have schema spec under my hands (the same is true for...
Paul Kulchenko
paulclinger@...
Apr 25, 2001 4:32 am
hi guys, here's another thing i found on the SQL interop endpoint: http://www.soapclient.com/interop/SQLDataInterop.wsdl the SOAPStruct type is refered to as...
graham glass
graham-glass@...
Apr 25, 2001 4:53 am
... Paul, Can you point me to the 1999 schema that has base64? I can't find it so I'm obviously looking in the wrong places. Thanks, Brian...
blm@...
Apr 25, 2001 4:34 pm
Hi, Brian! http://www.w3.org/TR/1999/WD-xmlschema-2-19991217/ There is no such type in 1999 schema. It's defined in SOAP schema as binary type with specified...
Paul Kulchenko
paulclinger@...
Apr 25, 2001 4:56 pm
... Ok, that's the one I'm looking at too. ... Good, that's what I thought. ... Yes, that looks right. ... That's what I thought too. I think I've got it now,...
blm@...
Apr 25, 2001 6:13 pm
I can add both echoDate and echoBase64 to the test document so that new implementors will instantiate these new methods right off the bat. In the existing...
Tony Hong
thong@...
Apr 25, 2001 6:17 pm
Hi Jake Is it possible to change your interop endpoint to use the following: SOAPAction: "urn:soapinterop" Namespace: http://soapinterop.org/ Most the...
Jonathan Hawkins
jhawk@...
Apr 25, 2001 2:18 am
You can actually use any method namespace you want. It's ignored. ;-> As for changing SOAPAction, currently we rely on its value to route a request. I'll have...
Jake Savin
jake@...
Apr 25, 2001 2:40 am
... Note that the SOAPAction field is not just a string with a colon in it - it is a URI following the rules defined by RFC2396. You can't just treat it as any...
Henrik Frystyk Nielsen
frystyk@...
Apr 25, 2001 3:07 pm
Hi Jake Excellent! Another item I stumbled upon this morning. Your test (http://jake.soapware.org/stories/storyReader$215) is sending : <SOAP-ENV:Header> ...
Jonathan Hawkins
jhawk@...
Apr 25, 2001 4:39 pm
Here are comments from schema experts. ... From: Allen Brown Sent: Wednesday, April 25, 2001 11:56 AM To: Andrew Layman Cc: Ashok Malhotra Subject: RE:...