Hi there,
does anyone know how I can debug the Esri Maps Connect Workflow within SharePoint 2013?
I want to read external data from a remote SQL Server DB and the only thing I can see (with the Profiler on the remote server) is a connection established with Anonymous Logon and the following SQL statements are being executed:
#1
exec sp_executesql N'select TABLE_CATALOG, TABLE_SCHEMA, TABLE_NAME, TABLE_TYPE from INFORMATION_SCHEMA.TABLES where (TABLE_CATALOG = @Catalog or (@Catalog is null)) and (TABLE_SCHEMA = @Owner or (@Owner is null)) and (TABLE_NAME = @Name or (@Name is null)) and (TABLE_TYPE = @TableType or (@TableType is null))',N'@Catalog nvarchar(4000),@Owner nvarchar(4000),@Name nvarchar(4000),@TableType nvarchar(4000)',@Catalog=NULL,@Owner=NULL,@Name=NULL,@TableType=NULL
#2
select * from ['FIRST_TABLE_FROM_THE_ABOVE_RESULT'] where 1 = 0
The documentation says that all events and details should be logged to the workflow history list, but it's empty. So, the result is <None> in all of the drop down fields within the Esri Maps Connect form (s. attached PNG).
Any help or hint for debugging or solving the problem would be greatly appreciated.
Thanks and Regards
Thomas