Lines Matching refs:soap_server

9 - soap_server: fixed bug causing charset encoding not to be passed to the parser
19 - soap_server: in parse_request, if neither getallheaders nor $_SERVER are available, use $HTTP_SER…
34 - soap_server: use soap_defencoding instead of charset_encoding
35 - soap_server: read encoding from _SERVER if available
51 - soap_server: let the Web server decide whether to close the connection (no Connection: close head…
52 - soap_server: force xml_encoding to upper case
56 - soap_server: read all HTTP headers when using _SERVER or HTTP_SERVER_VARS
57 - soap_server: add gzip encoding support for outgoing messages
63 - soap_server: look multiple places when setting debug_flag
80 - soap_server: remove all '--' from debug_str; previous code changed '---' to '- --'
95 - soapclient, soap_server: when no charset is specified, use UTF-8, even though HTTP specifies US-A…
99 - soap_server: support compressed request messages (thanks John Huong)
121 - soap_server: use $_SERVER['PHP_SELF'] if $GLOBALS['PHP_SELF'] is not set
149 - soap_server: Fix use of style (rpc|document) and use (encoded|literal)
150 - soap_server: Support _SERVER[CONTENT_TYPE] in addition to _SERVER[HTTP_CONTENT_TYPE]
151 - soap_server: Support wsdl with multiple <schema>
157 - soap_server: pass namespaces to xmlschema constructor
164 - soap_server: when requested WSDL is in a file, return to client using passthru (thanks Ingo Fisch…
178 - soap_server: allow a wsdl instance to be specified in constructor (not tested!)
179 - soap_server: fix default SOAPAction created in register method
188 - soap_server: always exit() after returning WSDL
189 - soap_server: use the WSDL URL scheme as the default endpoint URL scheme
190 - soap_server: append CVS revision to version in X-SOAP-Server
197 - soap_server: improve WSDL URL scheme determination
198 - soap_server: only deflate/gzip payloads > 1024 bytes
199 - soap_server: fix parameter order in fault method (always used as faultcode, faultstring)
200 - soap_server: refactor parse_request into multiple functions (for sanity)
201 - soap_server: set the namespace on the Response element to the same as the request
202 - soap_server: name the return value element 'return' by default
203 - soap_server: added and documented data fields, so that service programmers can use them if desired
225 - soap_server: do not wrap response in a response element for a document style service
230 - soap_server: add methodreturnisliteralxml property to allow service function to return XML as a s…
245 - soap_server: prefer gzip to deflate, since IE does not like our deflate
246 - soap_server: move webDescription to the wsdl class
247 - soap_server: allow class and instance method calls for service (thanks Ingo Fischer and Roland Kn…
248 - wsdl: get webDescription from the soap_server class
272 - soap_server: use ISO-8859-1 as the charset if not specified in the Content-Type header
273 - soap_server: allow suppression of automatic UTF-8 decoding
274 - soap_server: fix a bug when call_user_func_array() is used
282 - soap_server: add default_utf8 field
283 - soap_server: support literal encoding (with RPC style)
290 - soap_server: change faultcode on non-resendable faults to Client
303 - soap_server: notify the client with HTML when WSDL is requested but not supported by service
314 - soap_server: account for the fact that get_class_methods returns methods in all lower case (thank…
333 - soap_server: set character encoding for a fault to be the same as for the server (thanks Mark Sco…
334 - soap_server: correctly check for null value returned from method when WSDL is used (without WSDL,…
342 - soap_server: use get_class instead of is_a (thanks Thomas Noel)
355 - soap_server: assume get_class_methods always returns lower case for PHP 4.x only
356 - soap_server: call parent constructor
372 - soap_server: specify encodingStyle for envelope when WSDL is used
392 - soap_server: check required parameters for register method
393 - soap_server: when getallheaders is used, massage header names
394 - soap_server: use SOAPAction to determine operation when doc/lit service does not wrap parameters …
404 - soap_server: append debug information when programmatically-defined WSDL is returned
416 - soap_server: improve documentation
417 - soap_server: make consistent use of _SERVER and HTTP_SERVER_VARS
418 - soap_server: make all incoming HTTP header keys lower case
419 - soap_server: add hook functions to support subclassing for MIME attachments
433 - soap_server: fix a bug parsing headers from _SERVER and HTTP_SERVER_VARS (thanks Bert Catsburg)
434 - soap_server: parse all "headers" from HTTP_SERVER_VARS (not just HTTP_*)
435 - soap_server: use PHP_SELF instead of SCRIPT_NAME for WSDL endpoint
436 - soap_server: when generating a fault while debug_flag is true, put debug into faultdetail
443 - soap_server: don't assume _SERVER['HTTPS'] is set; try HTTP_SERVER_VARS['HTTPS'] if it is not
444 - soap_server: "flatten out" the parameter array to call_user_func_array (thanks Andr� Mamitzsch)
445 - soap_server: make thrown exceptions conform to specs
451 - soap_server: if methodparams is not an array, call call_user_func_array with an empty array (than…
460 - soap_server: add requestHeader with parsed SOAP Header
491 - soap_server: don't try to use eval to call function when any parameter is an object
492 - soap_server: don't print return value within debug string; returned objects would need __toString…
493 - soap_server: use URL scheme for WSDL access as the scheme in SOAPAction
494 - soap_server: strip port number from server name (some FastCGI implementations include port in ser…
511 - soap_server: also provide a class named nusoap_server