Forum Replies Created
-
AuthorReplies
-
Hi,
Sorry for the delay in our response. We are currently participating at BrainShare 2002 in Salt Lake City and we should be able to respond shortly.
Regards,
Advansys Support
The FileSystemObject component appears to be missing or disabled. This component is not installed by Formativ and is assumed to be already installed and accessible. This explains why the problem is machine specific.
Have you tried reinstalling MS Internet Explorer 5.5 or above?
Regards,
Advansys Support
Don’t know a quick answer to this one. There was a problem previously which related to accessing GWIA (Internet) email message body text. It looks like it has been addressed in the latest SPs for 5.5/5.5EP but I’m not sure if it’s in 6.01 yet. Maybe in SP2. In any case, I’ll pass it by the engineering team.
Regards,
Advansys Support
No problem and thanks for the good news.
Regards,
Advansys Support
Please check all the options in the configuration object, including create and manage personal applets and record personal applets. If these last two options are not enabled, which in your post you indicate that they are not, then you will not be able to create or edit applets, which is the problem that you are experiencing.
Please let us know if selecting these options solves the problem.
Regards,
Advansys Support
Thanks for the config information and additional background. At this stage there are no known software problems which could cause this issue. As your local installation works fine, it appears that your eDirectory config is preventing you accessing the libraries as an administrator.
We need to confirm a few things. What options do you have checked in your configuration object, Graded Configuration?
Under the Applet Libraries page of your configuration object, do you have all the libraries listed for which you require access?
Is your User object specifically listed in each of the Formativ Library object’s Library Administrators page?
Regards,
Advansys Support
This is an unusual problem, particularly as all was working fine previously. I’ll pass this onto our project engineers tomorrow for review. I suspect it is likely to be a rights issue which should be able to be resolved.
What may have changed on your system which could potentially explain such a change? For example have there been changes to your login, server or PC recently which could possibly be associated with the problem?
In the mean time, could you please send your Formativ configuration information to us at support@advansyscorp.com or copy/paste it into a forum message. See the Help|About Formativ|Configuration Tab to access this information and to copy the contents to the clipboard for inserting into the email message or the forum message.
Regards,
Advansys Support
No problem. You will find an example of this approach in the Virus Alert applet which ships with Formativ.
Please let us know if you have any other questions.
Regards,
Advansys Support
You’re right, the client must be running when the message comes for the On Message Arrival event to be triggered.
The way you can sometimes get around this issue is to write your applet so that it executes on startup and scans existing messages looking for those that are unread.
Regards,
Advansys Support
No problem. Let us know if you have any problems.
Regards,
Advansys Support
That’s correct about the Clone message limitation. Sorry about the URL, I posted the one which goes to the main page. The following should be correct:
http://developer.novell.com/ndk/doc/gwobjapi/gwobjenu/data/huyzfn9z.html
It certainly doesn’t look like an easy one to use but I found the following basic code created a blank message in the Mailbox:
Call GroupWise.Account.MailBox.Messages.AddExistingMessage(“Joe”, “joe@bloggs.com”, “”, Date, 1, 0, 2, 0)
You’ll note that it is not a personal message and cannot be edited via the client. There are some other parameters which need to be used to point it to the content of an existing message structure, which I believe would fill in the other fields.
Regards,
Advansys Support
Unfortunately there is no way to morph the message without creating a new message, which means the time stamp will always be different and you need to process the attachment.
Instead of using the exact code in the example for the Phone message creation, you could modify it so that it creates a Posted Phone Message rather than a group phone message. You could then include the date/time stamp details of the original message in the body text of the phone message. As you pointed out, this is not ideal because a) you would still need to transfer the WAV attachment and b) the creation date of the message does not match the original.
As an aside, just for future reference, see the new AddExistingMessage command at http://developer.novell.com/ndk/doc/gwobjapi/index.html?gwobjenu/data/h7ikbsqg.html . We have not used this call yet as it was only documented last week. In any case this new call will not solve your current requirements. It allows the creation of a new message without actually sending it (incoming, outgoing, draft, personal), although it appears that this will only work with an email message type.
Regards,
Advansys Support
The following applet code should assist. Please let me know if you have any further questions.
Regards,
Advansys Support
code:
'-------------------------------------------------------------------------------
' Create a New Phone Message
'
' The following example creates a new phone message without any user
' interface. You would normally use this approach when you have all the information
' required to create a new item, and there is no need for user interaction.
'-------------------------------------------------------------------------------Sub Main(Client, GWEvent)
Dim objPhone
Dim objNewPhone
Dim objRecipient
' Create a draft phone message with no user interface
Set objPhone = GroupWise.Account.Calendar.Messages.Add("GW.MESSAGE.PHONE", fgwDraft)
' Add a single recipient - ourself
Set objRecipient = objPhone.Recipients.Add(GroupWise.Account.Owner.EmailAddress,,0)
With objPhone
.FromText = "Formativ"
.Priority = fgwNormal
.CallerCompany = "Advansys"
.CallerName = "Mr Smith"
.CameToSee = TRUE
.PhoneNumber = "555 7777"
.PleaseCall = TRUE
.ReturnedCall = TRUE
.Telephoned = TRUE
.Urgent = TRUE
.WantsToSee = TRUE
.WillCall = TRUE
.Subject = "This phone message was created using Formativ"
.BodyText.PlainText = "This is the body text"
End With
Set objNewPhone = objPhone.Send
Call MsgBox ("Message Id : " & objNewPhone.MessageID, 64, "Formativ")
Set objRecipient = Nothing
Set objPhone = Nothing
End Sub
Just to be sure that the registered file type associations do not cause any more trouble with document recognition, we’ve again updated the applet so that it now checks the file extension rather than the registered file type.
You can download the updated applet from URL, http://www.advansyscorp.com/formativ/applets/formativ%20stationery.vbf.
Let us know how you progress.
Thanks,
Advansys Support
When you view the stationery html templates file listing in Windows Explorer, what is the file type listed as? Is it one of the following?
HTML Document
html Document
HTM Document
htm DocumentThanks,
Advansys Support
-
AuthorReplies