Home > Contents > Index >
MiscGetBlob
Returns a blob (binary large object) stored in Sites .
Syntax
miscGetBlob(java.lang.String authusername, java.lang.String authpassword, java.lang.String BLOBHEADER, java.lang.String BLOBTABLE, java.lang.String BLOBCOL, java.lang.String BLOBWHERE, java.lang.String BLOBKEY)Parameters
authusername (required)
- (String) Name of the user to log in, as registered in Sites .
authpassword(required)
- (String) Password for the associated user name.
BLOBHEADER (optional)
- (String) Description of the image format, which corresponds to the mimetype for returned data in the form
description/extension
. Specify any one of the following possible values:image/jpeg
,image/gif
,image/jpg
.
BLOBTABLE (required)
- (String) The name of the Sites table that stores assets of this type. Typically, this is the Sites
ImageFile
asset type. If you create your own asset type, specify that asset type instead.
BLOBCOL (required)
- (String) The name of the column that contains the binary data.
BLOBWHERE (required)
- (String) Value of the primary key for the row that contains the binary data.
BLOBKEY (required)
- (String) The name of the column used as the primary key. Typically, this is
id
, unless otherwise defined.
Returns
Blob object; for example, a PDF file. The blob is base-64 encoded and wrapped in XML.
Exceptions
None.
Example
The following Java code loads an article identified by object ID.
MiscService service = MiscServiceLocator(); MiscPortType port = service.getMiscPort(); byte[] blobOUT = port.miscGetBlob("user_author", "demo", null, "Article", "urlbody", "984156693953", "id");
Home > Contents > Index > ![]()
Oracle Web Services Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.