- Community Home
- >
- Printing and Digital Imaging
- >
- Multifunction and All-in-One
- >
- LDAP support for Laserjet M3027 MFP
turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
LDAP support for Laserjet M3027 MFP
(265 Views)
Reply
Topic Options
- Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
LDAP support for Laserjet M3027 MFP
Post options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
02-03-2010 08:44 PM
Hi,
we bought a few of these units but too late did we realise that they didnt have LDAP support. Is there a way to upgrade them, via firmware perhaps, to get the LDAP functionality?
If not, has anyone ever attempted to update the fax/email address book via a script. It should be possible. After all the web interface offers an upload function so I suspect it should be possible.
Thanks.
Vic.
we bought a few of these units but too late did we realise that they didnt have LDAP support. Is there a way to upgrade them, via firmware perhaps, to get the LDAP functionality?
If not, has anyone ever attempted to update the fax/email address book via a script. It should be possible. After all the web interface offers an upload function so I suspect it should be possible.
Thanks.
Vic.
Re: LDAP support for Laserjet M3027 MFP
Post options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
02-04-2010 05:48 AM
Vic,
Check out section 8 (page 109) of the 3027 User Guide:
http://bizsupport2.austin.hp.com/bc/docs/support/S upportManual/c00742673/c00742673.pdf
Post back if the answers to your questions are not provided by the documentation. You should be able to configure LDAP and SMTP with this model.
Thanks and good luck!
(points appreciated)
Check out section 8 (page 109) of the 3027 User Guide:
http://bizsupport2.austin.hp.com/bc/docs/support/S
Post back if the answers to your questions are not provided by the documentation. You should be able to configure LDAP and SMTP with this model.
Thanks and good luck!
(points appreciated)
Kudo's appreciated : )
Re: LDAP support for Laserjet M3027 MFP
Post options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
02-07-2010 03:22 PM
The manual only mentions LDAP with regards to the model M3035.
"The HP LaserJet M3027 MFP models support Simple Mail Transfer Protocol (SMTP). The HP LaserJet M3035 MFP models support SMTP and Lightweight Directory Access Protocol (LDAP)."
Besides, I cant find anywhere to enter LDAP information in the web interface.
Vic.
"The HP LaserJet M3027 MFP models support Simple Mail Transfer Protocol (SMTP). The HP LaserJet M3035 MFP models support SMTP and Lightweight Directory Access Protocol (LDAP)."
Besides, I cant find anywhere to enter LDAP information in the web interface.
Vic.
Re: LDAP support for Laserjet M3027 MFP
Post options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
02-08-2010 05:02 PM
For anyone else interested I've worked out how to update the addressbook from the command line. I used Linux and the curl utility. Make sure that the URLs are quoted as the shell may get confused.
Here are the steps:
1) Send the the csv file. Filename MUST end with csv!
#curl -L -u admin:password -F addressBookFileName=@AddressBooks.csv -F _import=" Import " -F htxtRedirect="this.LCDispatcher?nav=hp.AddressBook " http://192.168.2.240/hp/device/this.uploadfile > out.html
2) Get the tmp file created by the MFP
#grep File_ out.html
var url = "this.LCDispatcher?nav=hp.AddressBook&format=xml&i mportFile=/hpmnt/webServer/tmp.uploadFile_12657162 16093";
3) Unsure why this step is necessary but it seems to need it. Probably does the actual loading of the records. We use the tmp file from previous step.
#curl -L -u admin:password "http://192.168.2.240/hp/device/this.LCDispatcher?n av=hp.AddressBook&uploadFileService=1&uploadCount= ..." > out1.html
4) Check the status of the upload.
#curl -L -u admin:password "http://192.168.2.240/hp/device/this.LCDispatcher?n av=hp.AddressBook&format=xml&importFile=/hpmnt/web ..." > out2.html
#grep SUCCESS out2.html
SUCCESS
Thats all folks!
Vic.
Here are the steps:
1) Send the the csv file. Filename MUST end with csv!
#curl -L -u admin:password -F addressBookFileName=@AddressBooks.csv -F _import=" Import " -F htxtRedirect="this.LCDispatcher?nav=hp.AddressBook
2) Get the tmp file created by the MFP
#grep File_ out.html
var url = "this.LCDispatcher?nav=hp.AddressBook&format=xml&i
3) Unsure why this step is necessary but it seems to need it. Probably does the actual loading of the records. We use the tmp file from previous step.
#curl -L -u admin:password "http://192.168.2.240/hp/device/this.LCDispatcher?n
4) Check the status of the upload.
#curl -L -u admin:password "http://192.168.2.240/hp/device/this.LCDispatcher?n
#grep SUCCESS out2.html
Thats all folks!
Vic.
