Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The only variable setting for the scan component is the Fujitsu NX Manager's website location.  On the Display tab of the component's settings, provide the address and port for the for the NX Manager API.  Note, if the environment is using SSL, plan to configure an SSL certificate from a trusted certificate authority.  Self signed certificates can be made to work, but trust issues related to this type of certificate can be complicated to resolve.

Image Added

Setting Defaults

Defaults can be specified for both the Scanner and the Scan Profile.  Default settings are specified on the Data tab of the component's settings.  You can using more complex logic to set the defaults in the Custom Default Scanner or Custom Default Profile rule editors.  

Image Added

Note
titleCORS Support

The Fujitsu PaperStream NX Manager API does not natively support CORS (Cross Origin Resource Sharing). This can cause connectivity errors to the Fujitsu API's in some environments. Administrators should take note of this, and install the IIS CORS Module on the server hosting Fujitsu's services. With the CORS module installed, enable CORS for the origin of the GlobalForms Server in NX Manager's web API config file (C:\Program Files\Fujitsu\NxManager\Application\NmWebAPI):


Code Block
languagexml
titleCORS Entry
<cors enabled="true" failUnlistedOrigins="true">
	<add origin="*" />
			
	<add origin="http://<YourGlobalFormsAddress>:<YourGlobalFormsPort>" allowed="true" allowCredentials="true">
		<allowMethods>
			<add method="GET" />
			<add method="POST" />
		</allowMethods>
		<allowHeaders allowAllRequestedHeaders="true" />
		<exposeHeaders>
			<add header="Set-Cookie" />
		</exposeHeaders>
	</add>
</cors>