Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

SQLOffineAdapter + Could not initialize DataService.

Avatar

Level 1

Hello,

I was following this tutorial
But when I shutdown my server.
I have this message
Could not initialize DataService.
Cannot connect to the server to load configuration for destinations: ["AdobeProductMaster.ProductMaster"]
My Code
Thanks in advance
Bolo Michelin

1 Reply

Avatar

Employee

Try capturing the fault with a fault handler added to the token returned from connect().

var token:AsyncToken = productService.serviceControl.connect();

token.addResponder(new Responder(resultFunction, faultFunction));

You can then capture the offline state when the connection fails.

Tom