Fax Server Name

V

vul

I'm using FAXCOMEX to send faxes from VB program
I have shared Fax Server on my network server (Windows 2003). The name of
the server is "BIGDELL". It's in my home network.
I have no problem with sending fax by using this code:
strFaxPrinterName = "BIGDELL"
objFaxServer.Connect (strFaxPrinterName)
.....here is the preparation of the document
Then send fax:
JobID = objFaxDocument.ConnectedSubmit(objFaxServer)

I also have a remote server which I access via VPN. There is a shared Fax
Server too. I was able to add that Fax to my development workstation and I
can send faxes via that remote Fax Service.
I would like to send faxes via remote Fax Server from my VB application.
In the list of Printers and Faxes that Fax Server appears as Fax Server on
srt1.srt-enterprises.local

I tried
strFaxPrinterName = "Fax Server on srt1.srt-enterprises.local"
and then the same code as above. It produces an error when connecting to the
Fax Server.

With
strFaxPrinterName = "srt1.srt-enterprises.local"
strFaxPrinterName = "\\srt1.srt-enterprises.local"
strFaxPrinterName = "\\srt1"
it doesn't produce any error, but faxes are not sent. Is it wrong Fax Server
name or something else?
If my approach is not good by some reason I would ask for an advice how to
send a fax from VB application.
One more thing to mention: My home server has Windows 2003 Enterprise
edition, remote server has Small Business 2003 edition. May it be the
explanation why I can send from my local server and cannot from a remote
one?

Thank you
Al
 
V

vul

I found out that this is security issue. If Domain Administrator privileges
are given to the workstation with my VB application then everything works.
With regular user credentials it doesn't work. Probably some folders are
required to have read/write in order to make Fax service work. Unfortunately
so far even Microsoft support (paid per incident) did not give any answer.

Al
 
R

Russ Valentine [MVP-Outlook]

Surprising they didn't know. I've had no experience with Windows Server Fax,
but as far as the Windows XP client software is concerned it only works as
expected when the user has administrator privileges.
 
N

NickHK

Al,
Don't know if the cause is the same, but WinFax only works under an Admin
account, which is kind of annoying.

NickHK
 
V

vul

I'm using WinFax installed on local machines and it works fine. My client
requested to replaced it with MS Shared Fax. And now I do not know what
changes are required on the server to make it work for everybody, not only
domain admin

Al
 
G

Guest

I've been asking about this issue for a couple of weeks now. 2 questions -
Noone answers.
I need my app to have access to the fax server without having that users
specifically included in the server's local users group. I found that if I
included it there was no problem (no need for admin rights specifically). If
I delete that user I can get past the "Can't retrieve server properties"
error message. I'm trying to debug by just printing to the fax from notepad
as a first step.
Have you tried adding a local user with the PC credentials in your setup?
Alan
 
G

Guest

Sorry but how do you give "Domain Administrator privileges" to your
"Workstation"???
Surely you mean the user not the PC?
thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top