Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

calling groupwise from foxpro 1

Status
Not open for further replies.

poeijer

Programmer
May 29, 2002
69
NL
i can call ms outlook through outlook.application

how can i call groupwise?

i tried groupwise.application

but then i receive an error:

class definition GROUPWISE.APPLICATION is not found

any suggestions?
 
See Mike's answer in thread184-452821. Note: I just did a Search (see tab above) on "Groupwise".

Rick
 
poeijer

Take a look at thread184-452821. Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 

is there any way of sending pure html emails by this method?

 
that looks very impressive. but i was of the opinion that, since groupwise supports MAPI, i can use the same commandos to groupwise as i use to outlook.

e.g.

oOutlook = createObject("Groupwise.Application")
oNameSpace = oOutlook.getNameSpace("MAPI")

oInbox = oNameSpace.GetDefaultFolder(6)

for each oMail in oInbox.Items
do code.
endfor

can i still do this but then just replace groupwise.application with novellgroupware etc like in the Q?

i dont have groupwise here so need to mail it to one of our customers to let him test it...
 
poeijer

that looks very impressive. but i was of the opinion that, since groupwise supports MAPI, i can use the same commandos to groupwise as i use to outlook.


The difference might be that Microsoft does things a certain way and Novell another.
The above link suggest that (at least in VB) that the Groupwise application object is called "NovellGroupWareSession" Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
I am receiving a OLE Error code:

0x80020006: unknown name.

could it be a language issue?
e.g. novellgroupwaresession is used for english but
for dutch version another reference is needed?

i am getting this error right after

objGroupWise = CreateObject("NovellGroupWareSession")
 
poeijer

What version of GroupWise is it? Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
the version i am testing with is 5.5

but i like some universal solution so it works for 6.0 and further upgrades of groupwise aswell

i saw some component which could access all sorts of email programmas but it costs like $500. but that means it should be possible.

 
poeijer

i saw some component which could access all sorts of email programmas but it costs like $500. but that means it should be possible.

Do you have to use GroupWise? Because the link you pointed to suggests CDO and for CDO all you require is a few DLLs.

Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
well i pasted the link that it could be a solution to any problem accessing email clients to retrieve mail from them.

but a customer of my company uses groupwise...

so somehow ineed to adres it and get the emails out of groupwise into a foxpro appl.
 
Well i figured it out. MAPI was turned off.

so that is why nothing worked. i am testing through another person now and all works fine with your hints..

thanks Mike.
 
poeijer

Well i figured it out. MAPI was turned off.

Its always the little things...
Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top