1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
|
{
File: OSServices/WSMethodInvocation.h
Contains: WebServicesCore Method Invocation API
Version: OSServices-352~2
Copyright: © 2002-2008 by Apple Computer, Inc., all rights reserved
Bugs?: For bug reports, consult the following page on
the World Wide Web:
http://www.freepascal.org/bugs.html
}
{ Pascal Translation: Jonas Maebe, <jonas@freepascal.org>, October 2009 }
{
Modified for use with Free Pascal
Version 308
Please report any bugs to <gpc@microbizz.nl>
}
{$ifc not defined MACOSALLINCLUDE or not MACOSALLINCLUDE}
{$mode macpas}
{$packenum 1}
{$macro on}
{$inline on}
{$calling mwpascal}
unit WSMethodInvocation;
interface
{$setc UNIVERSAL_INTERFACES_VERSION := $0400}
{$setc GAP_INTERFACES_VERSION := $0308}
{$ifc not defined USE_CFSTR_CONSTANT_MACROS}
{$setc USE_CFSTR_CONSTANT_MACROS := TRUE}
{$endc}
{$ifc defined CPUPOWERPC and defined CPUI386}
{$error Conflicting initial definitions for CPUPOWERPC and CPUI386}
{$endc}
{$ifc defined FPC_BIG_ENDIAN and defined FPC_LITTLE_ENDIAN}
{$error Conflicting initial definitions for FPC_BIG_ENDIAN and FPC_LITTLE_ENDIAN}
{$endc}
{$ifc not defined __ppc__ and defined CPUPOWERPC32}
{$setc __ppc__ := 1}
{$elsec}
{$setc __ppc__ := 0}
{$endc}
{$ifc not defined __ppc64__ and defined CPUPOWERPC64}
{$setc __ppc64__ := 1}
{$elsec}
{$setc __ppc64__ := 0}
{$endc}
{$ifc not defined __i386__ and defined CPUI386}
{$setc __i386__ := 1}
{$elsec}
{$setc __i386__ := 0}
{$endc}
{$ifc not defined __x86_64__ and defined CPUX86_64}
{$setc __x86_64__ := 1}
{$elsec}
{$setc __x86_64__ := 0}
{$endc}
{$ifc not defined __arm__ and defined CPUARM}
{$setc __arm__ := 1}
{$elsec}
{$setc __arm__ := 0}
{$endc}
{$ifc defined cpu64}
{$setc __LP64__ := 1}
{$elsec}
{$setc __LP64__ := 0}
{$endc}
{$ifc defined __ppc__ and __ppc__ and defined __i386__ and __i386__}
{$error Conflicting definitions for __ppc__ and __i386__}
{$endc}
{$ifc defined __ppc__ and __ppc__}
{$setc TARGET_CPU_PPC := TRUE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := FALSE}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elifc defined __ppc64__ and __ppc64__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := TRUE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := FALSE}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elifc defined __i386__ and __i386__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := TRUE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := FALSE}
{$ifc defined(iphonesim)}
{$setc TARGET_OS_MAC := FALSE}
{$setc TARGET_OS_IPHONE := TRUE}
{$setc TARGET_IPHONE_SIMULATOR := TRUE}
{$elsec}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$endc}
{$elifc defined __x86_64__ and __x86_64__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := TRUE}
{$setc TARGET_CPU_ARM := FALSE}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elifc defined __arm__ and __arm__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := TRUE}
{ will require compiler define when/if other Apple devices with ARM cpus ship }
{$setc TARGET_OS_MAC := FALSE}
{$setc TARGET_OS_IPHONE := TRUE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elsec}
{$error __ppc__ nor __ppc64__ nor __i386__ nor __x86_64__ nor __arm__ is defined.}
{$endc}
{$ifc defined __LP64__ and __LP64__ }
{$setc TARGET_CPU_64 := TRUE}
{$elsec}
{$setc TARGET_CPU_64 := FALSE}
{$endc}
{$ifc defined FPC_BIG_ENDIAN}
{$setc TARGET_RT_BIG_ENDIAN := TRUE}
{$setc TARGET_RT_LITTLE_ENDIAN := FALSE}
{$elifc defined FPC_LITTLE_ENDIAN}
{$setc TARGET_RT_BIG_ENDIAN := FALSE}
{$setc TARGET_RT_LITTLE_ENDIAN := TRUE}
{$elsec}
{$error Neither FPC_BIG_ENDIAN nor FPC_LITTLE_ENDIAN are defined.}
{$endc}
{$setc ACCESSOR_CALLS_ARE_FUNCTIONS := TRUE}
{$setc CALL_NOT_IN_CARBON := FALSE}
{$setc OLDROUTINENAMES := FALSE}
{$setc OPAQUE_TOOLBOX_STRUCTS := TRUE}
{$setc OPAQUE_UPP_TYPES := TRUE}
{$setc OTCARBONAPPLICATION := TRUE}
{$setc OTKERNEL := FALSE}
{$setc PM_USE_SESSION_APIS := TRUE}
{$setc TARGET_API_MAC_CARBON := TRUE}
{$setc TARGET_API_MAC_OS8 := FALSE}
{$setc TARGET_API_MAC_OSX := TRUE}
{$setc TARGET_CARBON := TRUE}
{$setc TARGET_CPU_68K := FALSE}
{$setc TARGET_CPU_MIPS := FALSE}
{$setc TARGET_CPU_SPARC := FALSE}
{$setc TARGET_OS_UNIX := FALSE}
{$setc TARGET_OS_WIN32 := FALSE}
{$setc TARGET_RT_MAC_68881 := FALSE}
{$setc TARGET_RT_MAC_CFM := FALSE}
{$setc TARGET_RT_MAC_MACHO := TRUE}
{$setc TYPED_FUNCTION_POINTERS := TRUE}
{$setc TYPE_BOOL := FALSE}
{$setc TYPE_EXTENDED := FALSE}
{$setc TYPE_LONGLONG := TRUE}
uses MacTypes,CFBase,CFArray,CFData,CFDictionary,CFRunLoop,CFXMLNode,WSTypes;
{$endc} {not MACOSALLINCLUDE}
{$ifc TARGET_OS_MAC}
{$ALIGN POWER}
{
WSMethodInvocation
}
{
Dictionary entry if the invocation result is not a fault. This is
always available in method responses, although for SOAP messages,
it may be more correctly to query the result dictionary for the
specific field you're interested in. What this really means is
that the dictionary returned by the invocation may contain more
than one value, wherein the result data is duplicated several
times. If you don't know what to ask for to dump the reply, you
can ask for this key. If you do know what you want, you should
request that field expliclty.
You can also specify the name of the reply parameter in the
invocation using kWSMethodInvocationResultParameterName. This will
add an alias for the given name to the result dictionary such that
kWSMethodInvocationResult will always return the correct
parameter. (This won't work for multi-value returns, however.)
}
var kWSMethodInvocationResult: CFStringRef; external name '_kWSMethodInvocationResult'; (* attribute const *)
{
Dictionary entries if the result is a fault
}
var kWSFaultString: CFStringRef; external name '_kWSFaultString'; (* attribute const *) { a CFString }
var kWSFaultCode: CFStringRef; external name '_kWSFaultCode'; (* attribute const *) { a CFNumber }
var kWSFaultExtra: CFStringRef; external name '_kWSFaultExtra'; (* attribute const *) { a CFString or CFDictionary, or NULL }
{
If the result is a fault, and if the value of kWSFaultString in
the reply dictionary is kWSNetworkStreamFaultString, then
kWSFaultExtra will be a dictionary indicating the network error
and kWSFaultCode is ignored in this case. See
<CoreFoundation/CFStream.h> for details on what the domain and
error numbers mean.
}
var kWSNetworkStreamFaultString: CFStringRef; external name '_kWSNetworkStreamFaultString'; (* attribute const *)
var kWSStreamErrorMessage: CFStringRef; external name '_kWSStreamErrorMessage'; (* attribute const *) { A CFString (for debug purposes only) }
var kWSStreamErrorDomain: CFStringRef; external name '_kWSStreamErrorDomain'; (* attribute const *) { A CFNumberRef }
var kWSStreamErrorError: CFStringRef; external name '_kWSStreamErrorError'; (* attribute const *) { A CFNumberRef }
{
For HTTP[S] based invocations, you can specify a CFHTTPMessageRef
as a property which will be used instead of creating a new
outgoing message. The CFHTTPMessageRef can contain header, proxy
and authentication information. The body of the message will be
ignored and replaced with the outgoing, serialized invocation.
After the invocation has executed, you can retrieve a copy of the
actual CFHTTPMessageRef, containing the details of the invocation
using kWSHTTPResponseMessage. Attempting to retrieve the response
message property before the invocation completes will result
return NULL.
See: <CFNetwork/CFHTTPMessage.h> for more information.
}
var kWSHTTPMessage: CFStringRef; external name '_kWSHTTPMessage'; (* attribute const *) { CFHTTPMessageRef }
var kWSHTTPResponseMessage: CFStringRef; external name '_kWSHTTPResponseMessage'; (* attribute const *) { CFHTTPMessageRef }
{
To avoid having to create an entire CFHTTPMessageRef, these properties are
individually settable. If they are set, they will override any CFHTTPMessageRef
previously specified.
}
var kWSHTTPVersion: CFStringRef; external name '_kWSHTTPVersion'; (* attribute const *) { "http/1.1" }
var kWSHTTPExtraHeaders: CFStringRef; external name '_kWSHTTPExtraHeaders'; (* attribute const *) { a CFDictionary of ( key (CFString), val (CFString) ) pairs }
var kWSHTTPProxy: CFStringRef; external name '_kWSHTTPProxy'; (* attribute const *) { CFURLRef }
var kWSHTTPFollowsRedirects: CFStringRef; external name '_kWSHTTPFollowsRedirects'; (* attribute const *) { kCFBooleanFalse }
{
SOCKS proxy support. WSMethodInvocation uses the same flags as
CFSocketStream.h in configuring SOCKS proxy support. You can set
the kCFStreamPropertySOCKSProxy property on the invocation and the
value will be applied to the underlying stream. See CFSocketStream.h
for more information and valid keys.
}
{
These debugging flags will populate the WSInvocationResultRef
with some potentially useful debugging output. The property
name of the flag is the same as the the field in the result
dictionary.
}
var kWSDebugOutgoingHeaders: CFStringRef; external name '_kWSDebugOutgoingHeaders'; (* attribute const *) { kCFBooleanFalse }
var kWSDebugOutgoingBody: CFStringRef; external name '_kWSDebugOutgoingBody'; (* attribute const *) { kCFBooleanFalse }
var kWSDebugIncomingHeaders: CFStringRef; external name '_kWSDebugIncomingHeaders'; (* attribute const *) { kCFBooleanFalse }
var kWSDebugIncomingBody: CFStringRef; external name '_kWSDebugIncomingBody'; (* attribute const *) { kCFBooleanFalse }
{
Extra properties for SOAP messages. These apply to the message
namespace and format itself. Individual message elements can
be modified using the kWSRecord constants below.
}
var kWSSOAPMethodNamespaceURI: CFStringRef; external name '_kWSSOAPMethodNamespaceURI'; (* attribute const *) { CFStringRef }
var kWSSOAPBodyEncodingStyle: CFStringRef; external name '_kWSSOAPBodyEncodingStyle'; (* attribute const *) { CFStringRef ( kWSSOAPStyleDoc, kWSSOAPStyleRPC ) }
var kWSSOAPStyleDoc: CFStringRef; external name '_kWSSOAPStyleDoc'; (* attribute const *)
var kWSSOAPStyleRPC: CFStringRef; external name '_kWSSOAPStyleRPC'; (* attribute const *)
{
For SOAP messages, this is an array of CFStringRefs which
contain valid XML header elements that are sent with the
message. These are only applicable to the Header of a SOAP
message.
}
var kWSSOAPMessageHeaders: CFStringRef; external name '_kWSSOAPMessageHeaders'; (* attribute const *) { CFArrayRef }
{
When serializing a record (dictionary) these keys present in
the dictionary can modify the behavior of the serialization.
}
var kWSRecordParameterOrder: CFStringRef; external name '_kWSRecordParameterOrder'; (* attribute const *) { CFArrayRef of CFStringRef }
var kWSRecordNamespaceURI: CFStringRef; external name '_kWSRecordNamespaceURI'; (* attribute const *) { CFStringRef }
var kWSRecordType: CFStringRef; external name '_kWSRecordType'; (* attribute const *) { CFStringRef }
{
Specifies that the result parameter will be found as this name. This
forces the deserializer to alias the named output parameter to kWSMethodInvocationResult
}
var kWSMethodInvocationResultParameterName: CFStringRef; external name '_kWSMethodInvocationResultParameterName'; (* attribute const *)
{
Specifies a timeout (as CFNumber) which specifies in seconds the
amount of time to wait for the invocation to complete. If the
invocation times out before the server results are returned,
a fault will be returned with the error code errWSTimeoutError.
}
var kWSMethodInvocationTimeoutValue: CFStringRef; external name '_kWSMethodInvocationTimeoutValue'; (* attribute const *)
{
* WSMethodInvocationRef
*
* Discussion:
* a WSMethodInvocationRef represents an object that can be executed
* to obtain a rsult from a web service. This is CFType and is
* therefore reference counted and and should be managed via
* CFRetain and CFRelease.
}
type
WSMethodInvocationRef = ^OpaqueWSMethodInvocationRef; { an opaque type }
OpaqueWSMethodInvocationRef = record end;
{
* WSMethodInvocationGetTypeID()
*
* Mac OS X threading:
* Thread safe
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function WSMethodInvocationGetTypeID: CFTypeID; external name '_WSMethodInvocationGetTypeID';
{
* WSMethodInvocationCreate()
*
* Discussion:
* Creates a web services method invocation object. This object may
* be executed synchronously or scheduled on a run loop for
* asynchronous execution.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* url:
* the endpoint of the service
*
* methodName:
* the name of the method to be called
*
* protocol:
* a string, defined above, that determines the type of invocation
* object to create (XML-RPC vs. SOAP)
*
* Result:
* A WSMethodInvocationRef object that can be passed to
* WSMethodInvocationInvoke or scheduled with a run loop.
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function WSMethodInvocationCreate( url: CFURLRef; methodName: CFStringRef; protocol: CFStringRef ): WSMethodInvocationRef; external name '_WSMethodInvocationCreate';
{
* WSMethodInvocationCreateFromSerialization()
*
* Discussion:
* Creates a web services method invocation object from a previously
* serialized contract.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* contract:
* the result of a previously serialized WSMethodInvocationRef
*
* Result:
* A WSMethodInvocationRef object that can be passed to
* WSMethodInvocationInvoke or scheduled with a run loop.
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function WSMethodInvocationCreateFromSerialization( contract: CFDataRef ): WSMethodInvocationRef; external name '_WSMethodInvocationCreateFromSerialization';
{
* WSMethodInvocationCopySerialization()
*
* Discussion:
* Create a serialized version of the Method Invocation which can be
* reconstituted at a later time.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* invocation:
* the invocation to serialize
*
* Result:
* a CFDataRef
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function WSMethodInvocationCopySerialization( invocation: WSMethodInvocationRef ): CFDataRef; external name '_WSMethodInvocationCopySerialization';
{
* WSMethodInvocationSetParameters()
*
* Discussion:
* Set the parameters for a method invocation. The parameterOrder
* may be NULL, in which case the order of th parameters is
* undefined. If it is not NULL and the parameters dictionary
* contains more parameters than are specified by the order, the
* behavior is undefined. If the parameterOrder specifies more
* parameters than are present in the dictionary, the result is
* undefined.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* invocation:
* the invocation object
*
* parameters:
* a CFDictionaryRef of CFString keys and CFTypeRef values.
*
* parameterOrder:
* a CFArrayRef of CFString parameter names.
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
procedure WSMethodInvocationSetParameters( invocation: WSMethodInvocationRef; parameters: CFDictionaryRef; parameterOrder: CFArrayRef ); external name '_WSMethodInvocationSetParameters'; { can be NULL }
{
* WSMethodInvocationCopyParameters()
*
* Discussion:
* Copies the parameters from the invocation. The resulting
* dictionary contains the parameter dictionary. The parameterOrder
* output parameter, if not NULL, will contain the order used to
* serialize the parameters.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* invocation:
* the invocation
*
* parameterOrder:
* a pointer to a CFArray which will will receive the names, in
* their specified order, of the input parameter values. This
* parameter may be NULL.
*
* Result:
* a CFDictionaryRef
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function WSMethodInvocationCopyParameters( invocation: WSMethodInvocationRef; var parameterOrder: CFArrayRef ): CFDictionaryRef; external name '_WSMethodInvocationCopyParameters'; { can be NULL }
{
* WSMethodInvocationSetProperty()
*
* Discussion:
* Add "properties" to a method invocation. These properties can be
* user defined or one of the WebServicesCore declared properties
* (which may modify the behavior of the invocation.) All
* WebServicesCore declared properties will start with the string
* "kWS", eg, kWSHTTPFollowsRedirects. Properties are serialized
* along with the contract, so you may want to avoid sticking raw
* pointers in a CFNumber (for example).
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* invocation:
* the invocation
*
* propertyName:
* a CFStringRef name of the property to modify
*
* propertyValue:
* a CFTypeRef containing the new property value
*
* Result:
* none
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
procedure WSMethodInvocationSetProperty( invocation: WSMethodInvocationRef; propertyName: CFStringRef; propertyValue: CFTypeRef ); external name '_WSMethodInvocationSetProperty';
{
* WSMethodInvocationCopyProperty()
*
* Discussion:
* Return a property from a invocation. If the result is NULL, the
* property doesn't exist. Being a "Copy" call, you must release
* the result.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* invocation:
* the invocation
*
* propertyName:
* the name of the property to retreive
*
* Result:
* the CFTypeRef value of the property, or NULL if the property was
* not specified.
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function WSMethodInvocationCopyProperty( invocation: WSMethodInvocationRef; propertyName: CFStringRef ): CFTypeRef; external name '_WSMethodInvocationCopyProperty';
{
* WSMethodInvocationInvoke()
*
* Discussion:
* Execute the invocation. If the call was successful, the result
* will contain the result of the invocation. If for some reason the
* invocation failed, including out of memory or invalid parameter
* errors, then the result will contain a fault structure. You must
* release the result when you're done with it.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* invocation:
* the invocation
*
* Result:
* a CFDictionaryRef containing the result of the execution or a
* fault, and optional debug information.
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function WSMethodInvocationInvoke( invocation: WSMethodInvocationRef ): CFDictionaryRef; external name '_WSMethodInvocationInvoke';
{
These calls implemented the asynchronous variant of the WSMethodInvocationInvoke.
The strategy is to schedule the invocation on a given runloop.
When the invocation completes, it calls the specified callback with
the result of the execution. The callback is responsible for
releasing the result ref. Your code is responsible for
unscheduling the invocation from the run loop, whether it completes
or not.
You can re-schedule an invocation after it completes.
When you unschedule with the run loop, the CallBack is not called.
If a network error occurs, the kWSFaultString entry of the result
will contain some textual description of the error, kWSFaultCode
will contain kWSNetworkingFault and kWSFaultExtra will be a
dictionary containing two CFNumber values called kWSStreamErrorDomain
and kWSStreamErrorError.
}
{
* WSMethodInvocationCallBackProcPtr
*
* Discussion:
* Prototypes the callback made when an asynchronous invocation
* completes. This callback is passed a reference to the invocation
* just completed, a pointer to private data, and a dictionary that
* contains the return value or falut for this invocation. The
* callback is responsible for releasing the dictionary when it is
* no longer used.
*
* Parameters:
*
* invocation:
* the invocation just completed
*
* info:
* private callback data
*
* outRef:
* a CFDictionaryRef containing the result of the execution or a
* fault, and optional debug information.
}
type
WSMethodInvocationCallBackProcPtr = procedure( invocation: WSMethodInvocationRef; info: UnivPtr; outRef: CFDictionaryRef );
{
* WSMethodInvocationSetCallBack()
*
* Discussion:
* sets the callback for an asynchronous method invocation. Call
* with a clientCB and context of NULL to clear the invocation
* callback.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* invocation:
* the invocation
*
* clientCB:
* a ProcPtr to be called when the invocation completes.
*
* context:
* a pointer to a WSClientContext. The structure will be copied.
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
procedure WSMethodInvocationSetCallBack( invocation: WSMethodInvocationRef; clientCB: WSMethodInvocationCallBackProcPtr; var context: WSClientContext ); external name '_WSMethodInvocationSetCallBack';
{
@function WSMethodInvocationScheduleWithRunLoop
@discussion Schedules the invocation to execute on the run loop.
@param invocation
the invocation
@param runLoop
the run loop upon which to scheduile the invocation
@param runLoopMode
the run loop mode
}
{
* WSMethodInvocationScheduleWithRunLoop()
*
* Mac OS X threading:
* Thread safe
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
procedure WSMethodInvocationScheduleWithRunLoop( invocation: WSMethodInvocationRef; runLoop: CFRunLoopRef; runLoopMode: CFStringRef ); external name '_WSMethodInvocationScheduleWithRunLoop';
{
@function WSMethodInvocationUnscheduleFromRunLoop
@discussion Unschedules the invocation from a given run loop and
mode. If the invocation has not yet completed,
its callback will not be called.
@param invocation
the invocation
@param runLoop
the run loop upon which to scheduile the invocation
@param runLoopMode
the run loop mode
}
{
* WSMethodInvocationUnscheduleFromRunLoop()
*
* Mac OS X threading:
* Thread safe
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
procedure WSMethodInvocationUnscheduleFromRunLoop( invocation: WSMethodInvocationRef; runLoop: CFRunLoopRef; runLoopMode: CFStringRef ); external name '_WSMethodInvocationUnscheduleFromRunLoop';
{
Result interrogation.
If the result is a fault, look in the kWSFaultCode, kWSFaultString
and kWSFaultExtra fields of the resulting dictionary. If not a
fault, kWSMethodInvocationResult will contain the result of the
execution. If debugging information was requested, it will be
available in the dictionary as well.
}
{
* WSMethodResultIsFault()
*
* Discussion:
* returns TRUE if the method invocation result contains a fault.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* methodResult:
* the result ref
*
* Result:
* TRUE if the result contains a fault condition
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function WSMethodResultIsFault( methodResult: CFDictionaryRef ): Boolean; external name '_WSMethodResultIsFault';
{
Serialization / Deserialization override support.
You can add serialization and deserialization callbacks for custom
types, or types not otherwise handled by the framework. Note that these
properties are *not* serialized if the invocation is serialized.
}
{
* WSMethodInvocationSerializationProcPtr
*
* Discussion:
* Prototypes the callback function for a custom serialization proc.
* This callback is called whenever a type has the given CFTypeID.
* The callback should return an XML snippet that will be understood
* by the server as a correct serialization for a given type. If
* the callback returns NULL, the default serializer will be used.
*
* Parameters:
*
* invocation:
* the invocation currently being serialized
*
* obj:
* the CFTypeRef to be serialized
*
* info:
* private callback data
*
* Result:
* a CFStringRef containing valid XML. The caller of this callback
* will release the string.
}
type
WSMethodInvocationSerializationProcPtr = function( invocation: WSMethodInvocationRef; obj: CFTypeRef; info: UnivPtr ): CFStringRef;
{
* WSMethodInvocationAddSerializationOverride()
*
* Discussion:
* Specifies a callback which will be called to produce the XML that
* represents the serialization of a given type ref. See
* WSDescription.h for a list of CFTypes for which there currently
* exist serializers. If your callback returns NULL, the default
* serializer will be used.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* invocation:
* the invocation
*
* objType:
* the CFTypeID of the object
*
* serializationProc:
* the callback called
*
* context:
* a pointer to a WSClientContext. The structure will be copied.
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
procedure WSMethodInvocationAddSerializationOverride( invocation: WSMethodInvocationRef; objType: CFTypeID; serializationProc: WSMethodInvocationSerializationProcPtr; var context: WSClientContext ); external name '_WSMethodInvocationAddSerializationOverride';
{
* WSMethodInvocationDeserializationProcPtr
*
* Discussion:
* Prototypes the callback function for a custom deserializer. This
* callback is passed a reference to the invocation currently being
* executed, the root of the response parse tree, the current node
* being deserialized, and a pointer to private data. The return
* result should be a valid CFTypeRef object (which will be released
* by the caller) or NULL to allow the default deserializer to act.
*
* Parameters:
*
* invocation:
* the invocation executing
*
* msgRoot:
* the root tree element
*
* deserializeRoot:
* the tree element that needs to be deserialied
*
* info:
* private callback data
*
* Result:
* a CFTypeRef representing the deserialized data, or NULL to allow
* the default deserializers to act.
}
type
WSMethodInvocationDeserializationProcPtr = function( invocation: WSMethodInvocationRef; msgRoot: CFXMLTreeRef; deserializeRoot: CFXMLTreeRef; info: UnivPtr ): CFTypeRef;
{
* WSMethodInvocationAddDeserializationOverride()
*
* Discussion:
* Specifies a callback to be made when parsing an XML method
* response. The callback should return a CFTypeRef containing the
* deserialized object value. If the callback returns NULL, the
* default deserializer will be used.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* invocation:
* the invocation
*
* typeNamespace:
* the fully resolved namespace for a specific type. If NULL, the
* default namespace will be used. For example, this field could
* be: CFSTR("http://www.w3.org/2001/XMLSchema-instance").
*
* typeName:
* the non-qualified type name. This parameter must not be NULL.
*
* deserializationProc:
* a ProcPtr to be called to perform the deserialization
*
* context:
* a pointer to a WSClientContext. The structure will be copied.
*
* Availability:
* Mac OS X: in version 10.2 and later
* CarbonLib: not available
* Non-Carbon CFM: not available
}
procedure WSMethodInvocationAddDeserializationOverride( invocation: WSMethodInvocationRef; typeNamespace: CFStringRef; typeName: CFStringRef; deserializationProc: WSMethodInvocationDeserializationProcPtr; var context: WSClientContext ); external name '_WSMethodInvocationAddDeserializationOverride';
{$endc} {TARGET_OS_MAC}
{$ifc not defined MACOSALLINCLUDE or not MACOSALLINCLUDE}
end.
{$endc} {not MACOSALLINCLUDE}
|