Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - rjrussel

Pages: [1] 2 3 4 5 6 ... 9
2
MP Server / Re: Disable users ability to change passwords
« on: March 26, 2024, 04:09:47 PM »
Off the top of my head, not sure.

3
MP Server / Re: Operations issue with LDAP
« on: March 26, 2024, 04:08:54 PM »
Probably a config error. Double check all required LDAP attributes are defined in the ars.cfg correctly. You can also enable LDAP trace on the server. There is likely another error somewhere else you might have missed. I would enable trace, stop the server, remove existing trace file, start the server and then test. This way you have a clean trace. L2 will need that anyway if you open a case.

4
There is not.

arsdoc get Assumes every "hit" is a document, so if you have 10 hits you are going to get 10 documents, regardless of the fact that they may all be the same document. 

6
MP Server / Re: Disable users ability to change passwords
« on: March 22, 2024, 07:04:23 AM »
look in the windows customization guide - There is a flag you can pass to start the client which will disable the change password option.

8
no - It's a connection pool. Connections are established when the REST services start.

9
MP Server / Re: PDF from ARSDOC GET can see only one file
« on: February 29, 2024, 10:14:28 AM »
Document 1 start at 0 and is 102187 bytes. Document 2 starts 102187 and is 681891 bytes. You need to write something to extract individual documents using that logic. That is all there is to it.

10
error 16 could be "Device or resource busy". This arsuupdt is probably custom code so it will be pretty hard for anyone here to assist.

11
I am fairly certain that you can't, but I am still looking. I'll let you know if I find something. In the meantime, while not a great solution, you could create a copy of the APP without the postprocessor defined. Again, not great, but depending on what you are doing might be better than nothing.

12
My guess is the pool is not starting correctly. Stop and start the REST application and then look at the arsrestapi.log. It will give you the information you need to verify this.

13
Not like this. You would have to build something yourself.

14
You would use search with sql.

15
Here are a couple other tips.

Your error shows you are trying to use port 25.  Port 25 is the default traditional SMTP port. It is not secure. I am pretty sure office 365 disables it. I believe the port you want to use is 587.

You also need to add:

 properties.setProperty("mail.smtp.starttls.enable", "true");

To the other properties in the sample code.

Pages: [1] 2 3 4 5 6 ... 9