Skip to main content
Question

FME Flow 2024.2 - Create Project not able to add Resource Path


bbnj356
Contributor
Forum|alt.badge.img+3

We migrated from FME Server 2022 to FME Flow 2024 (FME Flow 2024.2.3
Build 24825 - win64) and we have imported the 2022 backup successfully. 

When I now want to create a new project and I want to add a Resource path to the Project, the list of Resources to chose from is empty.

I’ve looked at the request and the response contains the list of resource paths at the highest level but this list is not displayed in the UI. Is there a known issue with this release or a config setting that we missed?

Request URL:

https://<fmeserver>/fmeapiv4/resources/connections?limit=100&offset=0&suppressBroadcastError=false&cb=1744107685909

Request Method:

GET

Status Code:

200 OK

Response : 

{
    "items": [
        {
            "name": "FME_SHAREDRESOURCE_BACKUP",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Backup",
            "description": "This shared resource is the backup directory",
            "migratable": false,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/backups/"
            },
            "updatable": false
        },
        {
            "name": "FME_SHAREDRESOURCE_DASHBOARD",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Dashboards",
            "description": "This shared resource is the dashboards directory",
            "migratable": true,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/dashboards/"
            },
            "updatable": false
        },
        {
            "name": "FME_SHAREDRESOURCE_DATA",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Data",
            "description": "This shared resource is the data directory",
            "migratable": true,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/data/"
            },
            "updatable": false
        },
        {
            "name": "FME_SHAREDRESOURCE_ENGINE",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Engine",
            "description": "This shared resource is the engine directory",
            "migratable": true,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/engine/"
            },
            "updatable": false
        },
        {
            "name": "FME_SHAREDRESOURCE_LOG",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Logs",
            "description": "This shared resource is the logs directory",
            "migratable": false,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/logs/"
            },
            "updatable": false
        },
        {
            "name": "FME_SHAREDRESOURCE_SYSTEM",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "System",
            "description": "This shared resource is the system directory",
            "migratable": false,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/system/"
            },
            "updatable": false
        },
        {
            "name": "FME_SHAREDRESOURCE_TEMP",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Temp",
            "description": "This shared resource is the temp directory",
            "migratable": false,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/temp/"
            },
            "updatable": false
        }
    ],
    "totalCount": 7,
    "limit": 100,
    "offset": 0
}

4 replies

ebygomm
Influencer
Forum|alt.badge.img+32
  • Influencer
  • April 8, 2025

I’ve not seen that particular issue, but I have seen similar issues when attempting to move within the resources folder, which makes the same api call I think

 

 

This is in 2024.1 Build 24612

I don’t see this behaviour in our Dev environment which is the same build but doesn’t have a remote filesystem


virtualcitymatt
Celebrity
Forum|alt.badge.img+35

Interesting - I tried it out on out FME Flow - We are working with FME Cloud and I can see the ones which are listed here as "migratable": true - that is, Engine, Data and Dashboard.

One difference I see in my response is that in each case the “type” is listed as “file” rather than “network”.

It’s hard to know if this is the reason why it’s not showing up for you, however, I could definitely see the possibility that “network” connection types would not be able to be migrated, but it’s hard to say if this behaviour is intended or expected here. 

 


bbnj356
Contributor
Forum|alt.badge.img+3
  • Author
  • Contributor
  • April 8, 2025

@virtualcitymatt Thanks, I will have a look if I can find where the migratable attribute comes from. In my response this is also ‘false’.  


bbnj356
Contributor
Forum|alt.badge.img+3
  • Author
  • Contributor
  • April 8, 2025

Thanks to ​@virtualcitymatt I found out that only the resources of type ‘file’ AND migratable = ‘true’ are listed. I modified the type and migratable attribute in the fme database table fme_sharedres to find this out. I’ve compared this with the 2022 version (FME Server 2022.2.2
Build 22782 - win64). There the type is ‘network’ AND migratable = ‘false’. So there is a difference in the new UI.

Not sure if everything will keep on working as it should after changing these attributes

 

Response :

{
    "items": [
        {
            "name": "FME_SHAREDRESOURCE_BACKUP",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Backup",
            "description": "This shared resource is the backup directory",
            "migratable": false,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/backups/"
            },
            "updatable": false
        },
        {
            "name": "FME_SHAREDRESOURCE_DASHBOARD",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Dashboards",
            "description": "This shared resource is the dashboards directory",
            "migratable": true,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/dashboards/"
            },
            "updatable": false
        },
        {
            "name": "FME_SHAREDRESOURCE_DATA",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Data",
            "description": "This shared resource is the data directory",
            "migratable": true,
            "type": "file",
            "properties": {
                "DIR": "<UNC_Path>/resources/data/"
            },
            "updatable": false
        },

        {
            "name": "FME_SHAREDRESOURCE_ENGINE",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Engine",
            "description": "This shared resource is the engine directory",
            "migratable": true,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/engine/"
            },
            "updatable": false
        },
        {
            "name": "FME_SHAREDRESOURCE_LOG",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Logs",
            "description": "This shared resource is the logs directory",
            "migratable": false,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/logs/"
            },
            "updatable": false
        },
        {
            "name": "FME_SHAREDRESOURCE_SYSTEM",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "System",
            "description": "This shared resource is the system directory",
            "migratable": false,
            "type": "network",
            "properties": {
                "DIR": "<UNC_Path>/resources/system/"
            },
            "updatable": false
        },
        {
            "name": "FME_SHAREDRESOURCE_TEMP",
            "owner": "admin",
            "ownerID": "fb2dd313-e5cf-432e-a24a-814e46929ab7",
            "sharable": true,
            "displayName": "Temp",
            "description": "This shared resource is the temp directory",
            "migratable": true,
            "type": "file",
            "properties": {
                "DIR": "<UNC_Path>/resources/temp/"
            },
            "updatable": false
        }

    ],
    "totalCount": 7,
    "limit": 100,
    "offset": 0
}


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings