-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
files corresponding to SOAP 0.233 release
- Loading branch information
1 parent
0be1885
commit a98c17a
Showing
1,998 changed files
with
14,379 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{"packageExtension" : ".package", | ||
"propertyFileExtension" : ".json" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"noMethodMetaData" : true, | ||
"separateMethodMetaAndSource" : false, | ||
"useCypressPropertiesFile" : true } |
Empty file.
13 changes: 13 additions & 0 deletions
13
...ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/class/bootstrapPackage.from..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
private | ||
bootstrapPackage: aString from: aPath | ||
| repository version | | ||
repository := MCHttpRepository | ||
location: aPath | ||
user: '' | ||
password: ''. | ||
repository | ||
versionReaderForFileNamed: aString , '.mcz' | ||
do: [:reader | | ||
version := reader version. | ||
version load. | ||
version workingCopy repositoryGroup addRepository: repository] |
17 changes: 17 additions & 0 deletions
17
...sitory/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/class/ensureMetacello.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
private | ||
ensureMetacello | ||
"Minimum package versions from which to boot Metacello. Corresponds to version 1.0-beta.6" | ||
|
||
Smalltalk at: #MetacelloProject ifAbsent: [ | ||
Smalltalk at: #Gofer ifAbsent: [ | ||
"Minimum version of Gofer from which to bootstrap" | ||
self bootstrapPackage: 'Gofer-lr.70' from: 'http://source.lukas-renggli.ch/flair' ]. | ||
Smalltalk at: #Gofer ifPresent: [:gofer | | ||
gofer new | ||
url: 'http://seaside.gemstone.com/ss/metacello'; | ||
addVersion: 'Metacello-Core-dkh.277'; "Minimum version from which to bootstrap Metacello" | ||
addVersion: 'Metacello-MC-dkh.209'; "Minimum version from which to bootstrap Metacello" | ||
addPackage: 'ConfigurationOfMetacello'; "Loads latest version of configuration package" | ||
load ]. | ||
"load latest version of Metacello, load a specific version if desired" | ||
(Smalltalk at: #ConfigurationOfMetacello) loadLatestVersion ] |
5 changes: 5 additions & 0 deletions
5
...tory/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/class/isMetacelloConfig.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
metacello tool support | ||
isMetacelloConfig | ||
"Answer true and the Metacello tools will operate on you" | ||
|
||
^true |
4 changes: 4 additions & 0 deletions
4
repository/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/class/project.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
project | ||
|
||
^self new project |
47 changes: 47 additions & 0 deletions
47
...itory/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/instance/baseline0231..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
baselines | ||
baseline0231: spec | ||
<version: '0.231-baseline'> | ||
|
||
spec for: #common do: [ | ||
spec blessing: #baseline. | ||
spec repositories: [ | ||
spec | ||
repository: 'http://seaside.gemstone.com/ss/SOAP'; | ||
repository: 'http://seaside.gemstone.com/ss/SoXML' ]]. | ||
spec for: #gemstone do: [ | ||
spec | ||
package: 'SoXML' with: [ spec requires: #('Core') ]; | ||
package: 'SOAP-Core' with: [ | ||
spec | ||
file: 'SOAP-Core.g'; | ||
requires: #('SoXML' 'Hyper') ]; | ||
package: 'SOAP-Client' with: [ | ||
spec | ||
file: 'SOAP-Client.g'; | ||
requires: #('SOAP-Core') ]; | ||
package: 'SOAP-Server' with: [ | ||
spec | ||
file: 'SOAP-Server.g'; | ||
requires: #('SOAP-Core') ]; | ||
package: 'SOAP-Example' with: [ | ||
spec | ||
file: 'SOAP-Example.g'; | ||
requires: #('SOAP-Client' 'SOAP-Server') ]; | ||
package: 'SOAP-TestCases' with: [ spec requires: #('SOAP-Client' 'SOAP-Server') ]; | ||
yourself. | ||
spec | ||
project: 'Core' with: [ | ||
spec | ||
className: 'ConfigurationOfGsCore'; | ||
projectPackage: [ | ||
spec | ||
name: 'ConfigurationOfGsCore'; | ||
repository: 'http://seaside.gemstone.com/ss/GLASSproject' ]]; | ||
project: 'Hyper' with: [ | ||
spec | ||
className: 'ConfigurationOfGsHyper'; | ||
projectPackage: [ | ||
spec | ||
name: 'ConfigurationOfGsHyper'; | ||
repository: 'http://seaside.gemstone.com/ss/hyper' ]]; | ||
yourself.]. |
29 changes: 29 additions & 0 deletions
29
...itory/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/instance/baseline0232..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
baselines | ||
baseline0232: spec | ||
<version: '0.232-baseline' imports: #('0.231-baseline' )> | ||
|
||
spec for: #gemstone do: [ | ||
spec | ||
package: 'SoXML' with: [ | ||
spec | ||
file: 'SoXML.g'; | ||
requires: #('XML-Parser' 'Utf8Encoding') ]; | ||
yourself. | ||
spec | ||
project: 'XML-Parser' with: [ | ||
spec | ||
className: 'ConfigurationOfGsMisc'; | ||
loads: #('XML-Parser'); | ||
projectPackage: [ | ||
spec | ||
name: 'ConfigurationOfGsMisc'; | ||
repository: 'http://seaside.gemstone.com/ss/MetacelloRepository' ]]; | ||
project: 'Utf8Encoding' with: [ | ||
spec | ||
className: 'ConfigurationOfGsMisc'; | ||
loads: #('Utf8Encoding'); | ||
projectPackage: [ | ||
spec | ||
name: 'ConfigurationOfGsMisc'; | ||
repository: 'http://seaside.gemstone.com/ss/MetacelloRepository' ]]; | ||
yourself]. |
9 changes: 9 additions & 0 deletions
9
repository/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/instance/project.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
accessing | ||
project | ||
|
||
^ project ifNil: [ | constructor | | ||
"Bootstrap Metacello if it is not already loaded" | ||
self class ensureMetacello. | ||
"Construct Metacello project" | ||
constructor := (Smalltalk at: #MetacelloVersionConstructor) on: self. | ||
project := constructor project ] |
19 changes: 19 additions & 0 deletions
19
...sitory/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/instance/version0231..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
versions | ||
version0231: spec | ||
<version: '0.231' imports: #('0.231-baseline' )> | ||
|
||
spec for: #common do: [ | ||
spec blessing: #beta ]. | ||
spec for: #gemstone do: [ | ||
spec | ||
project: 'Core' with: '0.231'; | ||
project: 'Hyper' with: '0.231'; | ||
yourself. | ||
spec | ||
package: 'SoXML' with: 'SoXML.g-dkh.19'; | ||
package: 'SOAP-Core' with: 'SOAP-Core.g-dkh.75'; | ||
package: 'SOAP-Client' with: 'SOAP-Client.g-dkh.15'; | ||
package: 'SOAP-Server' with: 'SOAP-Server.g-dkh.20'; | ||
package: 'SOAP-Example' with: 'SOAP-Example.g-dkh.18'; | ||
package: 'SOAP-TestCases' with: 'SOAP-TestCases-dkh.46'; | ||
yourself]. |
21 changes: 21 additions & 0 deletions
21
...sitory/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/instance/version0232..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
versions | ||
version0232: spec | ||
<version: '0.232' imports: #('0.232-baseline' )> | ||
|
||
spec for: #common do: [ | ||
spec blessing: #beta ]. | ||
spec for: #gemstone do: [ | ||
spec | ||
project: 'Core' with: '0.232'; | ||
project: 'Hyper' with: '0.232'; | ||
project: 'XML-Parser' with: '0.232'; | ||
project: 'Utf8Encoding' with: '0.232'; | ||
yourself. | ||
spec | ||
package: 'SoXML' with: 'SoXML.g-dkh.19'; | ||
package: 'SOAP-Core' with: 'SOAP-Core.g-jgf.76'; | ||
package: 'SOAP-Client' with: 'SOAP-Client.g-dkh.15'; | ||
package: 'SOAP-Server' with: 'SOAP-Server.g-dkh.20'; | ||
package: 'SOAP-Example' with: 'SOAP-Example.g-dkh.18'; | ||
package: 'SOAP-TestCases' with: 'SOAP-TestCases-jgf.47'; | ||
yourself]. |
25 changes: 25 additions & 0 deletions
25
...sitory/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/instance/version0233..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
versions | ||
version0233: spec | ||
<version: '0.233' imports: #('0.232-baseline' )> | ||
|
||
spec for: #common do: [ | ||
spec blessing: #release. | ||
spec description: '0.233 (dkh.11): | ||
- port to GLASS 1.0-beta.8.7'. | ||
spec author: 'dkh'. | ||
spec timestamp: '10/20/2011 15:21'. ]. | ||
spec for: #gemstone do: [ | ||
spec | ||
project: 'Core' with: '0.245'; | ||
project: 'Hyper' with: '0.232'; | ||
project: 'XML-Parser' with: '0.239.1'; | ||
project: 'Utf8Encoding' with: '0.239.1'; | ||
yourself. | ||
spec | ||
package: 'SoXML' with: 'SoXML.g-dkh.19'; | ||
package: 'SOAP-Core' with: 'SOAP-Core.g-jgf.76'; | ||
package: 'SOAP-Client' with: 'SOAP-Client.g-dkh.15'; | ||
package: 'SOAP-Server' with: 'SOAP-Server.g-dkh.20'; | ||
package: 'SOAP-Example' with: 'SOAP-Example.g-dkh.19'; | ||
package: 'SOAP-TestCases' with: 'SOAP-TestCases-dkh.48'; | ||
yourself]. |
13 changes: 13 additions & 0 deletions
13
repository/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"class" : { | ||
"bootstrapPackage:from:" : "dkh 10/26/2009 12:32", | ||
"ensureMetacello" : "dkh 10/31/2009 21:14", | ||
"isMetacelloConfig" : "dkh 10/26/2009 12:32", | ||
"project" : "dkh 10/26/2009 12:32" }, | ||
"instance" : { | ||
"baseline0231:" : "DaleHenrichs 03/20/2010 10:04", | ||
"baseline0232:" : "DaleHenrichs 03/20/2010 10:02", | ||
"project" : "dkh 10/26/2009 12:32", | ||
"version0231:" : "dkh 10/27/2009 17:33", | ||
"version0232:" : "dkh 10/27/2009 17:33", | ||
"version0233:" : "dkh 10/19/2011 17:19" } } |
14 changes: 14 additions & 0 deletions
14
repository/ConfigurationOfGsSOAP.package/ConfigurationOfGsSOAP.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "ConfigurationOfGsSOAP", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "dkh 09/13/2011 10:38", | ||
"instvars" : [ | ||
"project" ], | ||
"name" : "ConfigurationOfGsSOAP", | ||
"pools" : [ | ||
], | ||
"super" : "Object", | ||
"type" : "normal" } |
1 change: 1 addition & 0 deletions
1
repository/ConfigurationOfGsSOAP.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
SystemOrganization addCategory: #'ConfigurationOfGsSOAP'! |
Empty file.
1 change: 1 addition & 0 deletions
1
repository/ConfigurationOfGsSOAP.package/monticello.meta/package
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
(name 'ConfigurationOfGsSOAP') |
1 change: 1 addition & 0 deletions
1
repository/ConfigurationOfGsSOAP.package/monticello.meta/version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"noMethodMetaData" : true, | ||
"separateMethodMetaAndSource" : false, | ||
"useCypressPropertiesFile" : true } |
4 changes: 4 additions & 0 deletions
4
...package/SentButNotImplementedTest.extension/instance/nonImplementedSelectorsSOAPClient.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*soap-client | ||
nonImplementedSelectorsSOAPClient | ||
|
||
^#(nameForAddress:timeout: localHostAddress) "SOAP-Client" |
5 changes: 5 additions & 0 deletions
5
repository/SOAP-Client.g.package/SentButNotImplementedTest.extension/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"nonImplementedSelectorsSOAPClient" : "dkh 04/03/2009 14:38" } } |
2 changes: 2 additions & 0 deletions
2
repository/SOAP-Client.g.package/SentButNotImplementedTest.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{ | ||
"name" : "SentButNotImplementedTest" } |
5 changes: 5 additions & 0 deletions
5
repository/SOAP-Client.g.package/SoapAbstractConnector.class/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
I connect to some server. | ||
My subclasses will know what socket client should be used for connecting right server. | ||
|
||
--- | ||
MU 10/5/2002 01:35 |
6 changes: 6 additions & 0 deletions
6
repository/SOAP-Client.g.package/SoapAbstractConnector.class/class/initialize.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
class initialization | ||
initialize | ||
"SoapAbstractConnector initialize" | ||
ShowLog := false. | ||
|
||
self initializeAfterLoad |
5 changes: 5 additions & 0 deletions
5
repository/SOAP-Client.g.package/SoapAbstractConnector.class/class/initializeAfterLoad.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class initialization | ||
initializeAfterLoad | ||
|
||
self name == #SoapAbstractConnector | ||
ifFalse: [SoapConnectorMap at: self transportName asSymbol put: self]. |
5 changes: 5 additions & 0 deletions
5
repository/SOAP-Client.g.package/SoapAbstractConnector.class/class/initializeAll.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class initialization | ||
initializeAll | ||
"SoapAbstractConnector initializeAll" | ||
|
||
self subclassesDo: [:each | each initialize] |
5 changes: 5 additions & 0 deletions
5
repository/SOAP-Client.g.package/SoapAbstractConnector.class/class/obsolete.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class initialization | ||
obsolete | ||
self name == #SoapAbstractConnector | ||
ifFalse: [SoapConnectorMap removeAt: self transportName asSymbol]. | ||
super obsolete |
3 changes: 3 additions & 0 deletions
3
repository/SOAP-Client.g.package/SoapAbstractConnector.class/class/showLog..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
setting | ||
showLog: aBoolean | ||
ShowLog := aBoolean |
3 changes: 3 additions & 0 deletions
3
repository/SOAP-Client.g.package/SoapAbstractConnector.class/class/showLog.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
setting | ||
showLog | ||
^ShowLog |
3 changes: 3 additions & 0 deletions
3
repository/SOAP-Client.g.package/SoapAbstractConnector.class/class/transportName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
constants | ||
transportName | ||
^#noName |
12 changes: 12 additions & 0 deletions
12
repository/SOAP-Client.g.package/SoapAbstractConnector.class/instance/debugReturn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
actions | ||
debugReturn: aSoapMessage | ||
|
||
self class showLog | ||
ifTrue: [ | ||
| envelope context | | ||
envelope := aSoapMessage envelope. | ||
context := aSoapMessage context. | ||
Transcript cr; cr; show: '##'; show: super printString; | ||
show: ' Client:Return:{'; cr; show: envelope printString; cr; show: '}'. | ||
Transcript cr; show: '-> with ->'. | ||
Transcript cr; show: context printString] |
10 changes: 10 additions & 0 deletions
10
repository/SOAP-Client.g.package/SoapAbstractConnector.class/instance/debugSend.to.with..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
actions | ||
debugSend: aSoapEnvelope to: anSoapLocatorObject with: aSoapContext | ||
|
||
self class showLog | ||
ifTrue: [Transcript cr; show: '##', super printString, ' Client:Request:{'. | ||
Transcript cr; show: aSoapEnvelope printString. | ||
Transcript cr; show: '} to ->'. | ||
Transcript cr; show: anSoapLocatorObject printString. | ||
Transcript cr; show: '-> with ->'. | ||
Transcript cr; show: aSoapContext printString]. |
3 changes: 3 additions & 0 deletions
3
repository/SOAP-Client.g.package/SoapAbstractConnector.class/instance/envelopeBuilder..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
envelopeBuilder: aSoapEnvelopeBuilder | ||
envelopeBuilder := aSoapEnvelopeBuilder |
4 changes: 4 additions & 0 deletions
4
repository/SOAP-Client.g.package/SoapAbstractConnector.class/instance/envelopeBuilder.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
envelopeBuilder | ||
envelopeBuilder isNil ifTrue: [envelopeBuilder := SoapEnvelopeBuilder new]. | ||
^envelopeBuilder |
8 changes: 8 additions & 0 deletions
8
repository/SOAP-Client.g.package/SoapAbstractConnector.class/instance/send.to.with..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
actions | ||
send: aSoapEnvelope to: anSoapLocatorObject with: aSoapContext | ||
"1. add an addittinal protocolSpecific header to aSoapEnvelope" | ||
"2. send a SoapMessage to a remote server" | ||
"3. get the result and unmarshall it" | ||
"4. return aSoapMessage or nil" | ||
|
||
^self subclassResponsibility |
Oops, something went wrong.