question

Shinya O avatar image
1 Like"
Shinya O asked Shinya O commented

FlexSim Webserver Uploading Model

Hi,

I am using flexsim webserver with the following settings. The version of the webserver is 24.1.0.

As you can see in the gif below, the webserver itself is working, but I am having trouble uploading the model. Can you help me?

  1. # This file needs to be in the same directory as flexsimserver.bat
  2.  
  3.  
  4. General:
  5.     Flexsim Program Directory:      %PROGRAMFILES%\FlexSim 2024 Update 1\program
  6.     Model Directory:                C:\Users\username\Documents\FlexSimWebServerModelDirectory
  7.     Port:                           8080
  8.     Reply Timeout (milliseconds):   10000
  9.     Max Instances (of Flexsim):     8
  10.     Max Threads Per Instance:       max
  11.     Ignore Auto Save Files:         yes
  12.     Headless Instances:             yes
  13. Remote Operations (security hazards):
  14.     Model Uploading:                yes
  15.     Model Downloading:              no
  16.     Model Deleting:                 no
  17.     Max Upload Size (bytes):        10000000
  18. Jobs:
  19.     Flexsim Data Directory:         %AllUsersProfile%\FlexSim\FlexSim24.1
  20.     Max Job Queue Length:           100
  21.     Max Job Timeout (seconds):      3600
  22. Windows Authentication:
  23.     Use Windows Authentication:     no
  24.     Restrict UserGroup Directories: no
  25.     Active Directory:
  26.         url:                        ldap://dc.domainName.com
  27.         baseDN:                     dc=domainName,dc=com
  28.         username:                   specialUser@domainName.com
  29.         password:                   password
  30. Session:
  31.     Enable:                         no
  32.     Secret:                         flexsim secret
  33.     Max Age (seconds):              3600

flexsimwebserver-uploadingmodel.gif

Thanks in advance.

FlexSim 24.1.1
flexsim webservermodel uploading
· 5
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Jordan Johnson avatar image
1 Like"
Jordan Johnson answered Shinya O commented

I found three issues:

  1. I was unable to open a model using the webserver using FlexSim 2024 Update 1. Only Update 2 seems to work. I wonder if we fixed some bugs that broke compatibility with 24.1.
  2. In server.js, the following line needs to be changed:
    1. // remove "new" from this line, near 464
    2. busboy = Busboy({ headers: req.headers });
  3. In queryhandlers.js, the following line needs to be changed:
    1. // add .filename after file.name, near 337
    2. file.mv(settings.general.modelDirectory + '/' + file.name.filename, function(err) {

After making those changes, I was able to upload and run a model. I'll add this question to the dev list so we can make these changes for everyone. @Jacob Gillespie may have more/better information.

· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.