Public Instance Methods : SstHttpUrl

class implements Interface: IuSstUrl
* address goto
* address: value goto
* copyCore goto
* printStringUsingAddress: value goto
* scheme goto
* scheme: value goto
* sstAsUrl goto
* transport goto
* transport: value goto
* absolutePath
	"ACTION
		Answer the whole path indicated by the receiver.  This includes any
		%query.  The %query is not decoded.

	RETURN VALUE
		<String>"
Categories
	SST-API Developer
* decodeQuery
	"ACTION
		Answer the %query portion of the receiver after decoding it via standard
		URL decoding rules.  The query is the part after any $?.

	RETURN VALUE
		<String>"
Categories
	SST-API Developer
* encodeQuery: value
	"ACTION
		Set the %query portion of the receiver to a URL-encoded version of
		@value where the query is the part after any $?.

	PARAMETERS
		value : <String>"
Categories
	SST-API Developer
* fetch: request
	"ACTION
		Fetch the result of getting @request from the server represented
		by the receiver.  Answer the resulting communication message which
		includes both the response header and contents.

	PARAMETERS
		request : <IuSstCommunicationMessage>

	RETURN VALUE
		<IuSstCommunicationMessage>

	EXCEPTIONS
		ExSstNonFatalError : thrown if the data at the receiver cannot be accessed.

	NOTES
		Users should avoid using this method in situations where repeated fetching
		of http data is required, as this method sets up and tears down a local
		endpoint every time."
Categories
	SST-API Developer
* path
	"ACTION
		Answer the %path portion of the receiver where the path is the
		part after the machine address and before any query.

	RETURN VALUE
		<String>"
Categories
	SST-API Developer
* path: value
	"ACTION
		Set the %path portion of the receiver to @value where the path is the
		part after the machine address and before any query.

	PARAMETERS
		value : <String>"
Categories
	SST-API Developer
* query
	"ACTION
		Answer the %query portion of the receiver where the query is the
		part after any $?.  This returns the query string 'as-is' without decoding
		any special characters.  See #decodeQuery.

	RETURN VALUE
		<String>"
Categories
	SST-API Developer
* query: value
	"ACTION
		Set the %query portion of the receiver to @value where the query is the
		part after any $?.  This sets  %query to @value with no URL encoding
		of special characters.  Improper %query contents may cause unexpected
		problems.  See #encodeQuery:.

	PARAMETERS
		value : <String>"
Categories
	SST-API Developer
* fetch
	"ACTION
		Fetch the the web page at the location represented by the
		receiver. Answer the content, nil if there was no content.

	RETURN VALUE
		nil | <String>

	EXCEPTIONS
		ExSstNonFatalError : thrown if the data at the receiver cannot be accessed.

	NOTES
		Users should avoid using this method in situations where repeated fetching
		of http data is required, as this method sets up and tears down a local
		endpoint every time."
Categories
	SST-API User
* fetchMessage
	"ACTION
		Fetch the data at indicated by the receiver.  Answer the resulting
		communication message which includes both the response header 
		and contents.

	RETURN VALUE
		<IuSstCommunicationMessage>

	EXCEPTIONS
		ExSstNonFatalError : thrown if the data at the receiver cannot be accessed.

	NOTES
		Users should avoid using this method in situations where repeated fetching
		of http data is required, as this method sets up and tears down a local
		endpoint every time."
Categories
	SST-API User

[FIRST] [PREV] [NEXT] [LAST]