I start Samba server using following docker-compose:
services:
samba:
image: instantlinux/samba-dc:latest
container_name: samba-dc
cap_add:
- CAP_SYS_ADMIN
hostname: my.company
environment:
DOMAIN_ACTION: provision
REALM: my.company
volumes:
- etc:/etc/samba
- lib:/var/lib/samba
ports:
- "53:53"
- "53:53/udp"
- "88:88"
- "88:88/udp"
- "389:389"
- "139:139"
- "446:445"
secrets:
- samba-admin-password
I want to integrate my spring application with samba server using SAMR protocol
I can't find any example/library in network. Is there any library for that ?
Update
I've found jcif library and it even contains classes related to SAMR protocol but I have no idea how to use it.
I want to get working example (MRE).
Could you please help ?
This should work
And if you want to use the above class
Dependency:
Make sure it is an updated version.