A developer is asked to create a new service instance that will call a remote web service.
Which method should the developer use to create the service instance?
Given a sandbox with an active slot configuration with the following specifications:
Content type set to product
With some product configured
With the following rendering template:slots/product/product_1x2.isml
Correctly enabled and scheduled
And given the code contained in the selected rendering template:
< isif condition= " ${!empty(slotcontent)} " >
< isloop iterator= " ${slotcontent.content} " alias= " product " >
< div class= " product " >
< isprint value= " ${product.getID()} " > < br / >
< isprint value= " ${product.getName()} " > < br / >
< /div >
< /isloop >
< /isif >
Is an additional action needed for this to work as intended?
A developer has configured the following log levels for categories & sub-categories as:
WARN logging is enabled for " product " and DEBUG for " product.import "
What will be the log level used for various categories and sub-categories?
Given a job step configured in the job that calls a script module, a developer needs to add a custom status code " NO_FILES_FOUND " in the script. The status doesn ' t represent an error condition. Which code snippet completes this requirement?
A developer implements an Open Commerce API call to add products to a basket. Given the following resource configuration:
{
" resource_id " : " /baskets/** " ,
" methods " :[ " get " ],
" read_attributes " : " (**) " ,
" write_attributes " : " (**) "
}
Which modification allows the requests to successfully execute?
A developer has a sandbox configured with a service and its profile and credential. Now there is a requirement to allow changes to the service URL manually from the sandbox.
Which B2C feature should the developer use to achieve the request?