dabs
Full Member
Posts: 78
|
Post by dabs on May 28, 2024 13:16:15 GMT
Hi all,
I would like my app to be able to auto-configure a DataWedge profile on my Zebra devices. I've successfully managed to issue a CREATE_PROFILE (https://techdocs.zebra.com/datawedge/6-3/guide/api/createprofile/) command:
var params = {
intentType: Rho.Intent.BROADCAST,
action: "com.symbol.datawedge.api.ACTION",
data: {"com.symbol.datawedge.api.CREATE_PROFILE": "myprofilename"}
};
Rho.Intent.send(params);
but I need to configure the profile in more detail; i.e. set the bundle identifier of my app as the target of the profile etc, disable keyboard output, enable intent output, set the intent action, etc.
It looks like I would need to use the SET_CONFIG (https://techdocs.zebra.com/datawedge/6-3/guide/api/setconfig/) intent to configure the profile in more detail. However, the "data" section apparently only supports strings, boolean, integer or double (http://docs.tau-platform.com/en/7.5/api/Intent). The DataWedge documentation appears to specify that I would need to pass in a "Bundle", which seems to be unsupported if I'm reading the documentation correctly.
Is my understanding correct? Is there any way for my app to control in detail what this given DataWedge profile should look like?
|
|
|
Post by Alex Epifanov on May 28, 2024 16:05:16 GMT
Hi Daniel,
Yes, Rhodes documentation states that complex objects are not currently supported for intent payload. We can implement the functionality you require on a contract basis. Also we provide platform support services on special terms if support contract is signed by the end of the June. Platform support would cover consulting on platform usage and resolution of any kind of issues at quickest time. Please contact info@tau-platform.com for the details.
Regards Alex.
|
|