Forum Replies Created

Viewing 15 replies - 196 through 210 (of 913 total)
  • Author
    Replies
  • in reply to: Proxy and secondary domain #8758
    Support 1a
    Participant

      Hello Paul,

      I suspect you will need to define the connection properties for the Post Offices in the secondary Domain. See the ‘POA Settings’ topic in the Users Guide for details. In a nutshell, you will need to specify the IP address and Port number of the POA serving the POA’s in the secondary Domain.

      I hope this helps.

      Regards,

      Advansys Support

      in reply to: Disabling Groupwise Signature Option with Formativ #7308
      Support 1a
      Participant

        There is no registry/PO setting you can use to disable the inherent GroupWise signature facility. The only way to do it in a deterministic fashion is to run an applet that changes the settings, such as:

        Sub Main(Client, GWEvent)
        
           call Groupwise.PrefSignature(incNo, false, false, "")
        
        End Sub

        You could configure the applet to run on client startup to help ensure the user has not turned the facility back on.

        I hope this helps.

        Advansys Support

        in reply to: Permissions #9168
        Support 1a
        Participant

          An email has been sent to the address you registered in the forums with the debug DLL (zipped).

          Regards,

          Advansys Support

          in reply to: Permissions #9170
          Support 1a
          Participant

            It should work if you have full rights. I’ll contact you directly via email to get a debug version of Novell’s Trusted Application library. It displays authentication information which generally indicates the exact cause of the rights problem.

            Regards,

            Advansys Support

            in reply to: DisplayProfile #7298
            Support 1a
            Participant

              We’ll report this as a bug to Novell. I couldn’t say when/if they’ll fix it, though. It always helps getting a bug fixed if other reports are received, so you may want to report a bug in the DisplayProfile() token independently from us.

              Regards,

              Advansys Support

              in reply to: Supress toolbar icons on solutions #5922
              Support 1a
              Participant

                Toolbar buttons integrations (along with the other integration types) can only be modified if you have a copy Formativ Creator or Studio. In this case you would select the appropriate applet in the designer and turn off the toolbar integrations.

                If you only have a copy of Runtime the buttons cannot be easily changed. You could have a look at the header of the applet file (it’s an XML file) to see where the buttons are defined and edit it manually. Of course, this approach is totally unsupported and not encouraged.

                Regards,

                Advansys Support

                in reply to: Future search capabilities #9160
                Support 1a
                Participant

                  Great – keep any eye on http://www.archive2go.com.
                  Regards,

                  Advansys Support

                  in reply to: DisplayProfile #7301
                  Support 1a
                  Participant

                    We tried this token as well and couldn’t get it to do anything. It looks like this token may be broken as well, or we might be calling it with incorrect parameters. I notice the Token documentation (http://developer.novell.com/ndk/doc/gwtoken/gwtokens/data/h8h668yx.html) states

                    quote:


                    DocIDStr in the form Domain.PostOffice.LibraryBig Grinoc#.Ver# for ObjectAPI reference: LibraryID: Doc#.Ver#. The DocIDStr is a subset of the object DocumentVersion.ODMADocumentID in the ObjectAPI.


                    I’m not sure if this means you need to use the ODMADocumentID property of the current version.

                    I’ll ask Novell about this one – unfortunately it looks like it could be a bug in the GroupWise client. Which version of the client are you using?

                    Regards,

                    Advansys Support

                    in reply to: Permissions #9165
                    Support 1a
                    Participant

                      In order to create a GroupWise system definition, Archive To Go needs to create a Trusted Application Object within GroupWise. In order to create a Trusted Application object, you require Admin rights to the Domain database. Without the appropriate rights, an authentication error will occur.

                      Try increasing your rights to the Domain Database and try again. Please let us know if you continue to experience difficulty.

                      Regards,

                      Advansys Support

                      in reply to: How to call code in another applet? #7293
                      Support 1a
                      Participant

                        Dear Jeroen,

                        You cannot call a function in one applet from another. However, you can have one applet call another once the calling applet has finished running. See ‘ChainApplet’ in the Language Guide for full details.

                        Regards,

                        Advansys Support

                        in reply to: Suppress Event – Reply to All #7286
                        Support 1a
                        Participant

                          Hi Ralf,

                          We do our best 😉

                          Cheers,

                          Advansys Support

                          in reply to: Future search capabilities #9159
                          Support 1a
                          Participant

                            Dear Jeff,

                            Thank you for your comments above. We are very excited about Archive to Go, and hope it becomes the premier tool for creating snapshots of GroupWise mailboxes for a variety of purposes.

                            The search facility (currently under development) will search the entire archive, including contacts. It will use advanced text indexing technology to index and search all the data within an archive at high speed.

                            We expect to reveal the text search facility in beta 2, which is scheduled for release in a couple of weeks.

                            Regards,

                            Advansys Support

                            [This message was edited by Support 1 on September 18, 2005 at 07:44 PM.]

                            in reply to: Suppress Event – Reply to All #7284
                            Support 1a
                            Participant

                              Hello Ralf,

                              You can do this by integrating your applet with the ‘On ItemReplyOpenItem’ event associated with the GroupWise application (not email). Your applet need to look at the first parameter associated with this command, as it tells you what type of reply the user is attempting. The possible values are:

                              All = 7
                              AllPrivate = 39
                              Sender = 1
                              SenderPrivate = 33
                              Discussion = 16
                              DiscussionNNTP = 144
                              DiscussionORIG = 256

                              If the value was 7 (All) you would then cancel the command. Here’s some sample code:

                              Sub Main(Client, GWEvent)
                              
                                 if EventParams.Item(0).Value = 7 then     ' 7 = Reply to all
                                   MsgBox "You cannot reply to all."
                                   Groupwise.CancelGroupWiseEvent = true
                                 end if
                              
                              End Sub

                              See http://developer.novell.com/ndk/doc/gwtoken/gwtokens/data/ag3n400.html for more information.

                              I hope this helps.

                              Advansys Support

                              in reply to: How to determine type of attachement #7287
                              Support 1a
                              Participant

                                There is no inherent method in Formativ that will tell you the file type based on the content of a file. I suspect you would need to investigate the third party market for a tool that identifies files based on content.

                                Advansys Support

                                in reply to: How to determine type of attachement #7288
                                Support 1a
                                Participant

                                  I am not aware of any other way to determine attachment types, other than looking at the file extensions. What aspect of this approach is not robust enough?

                                  Regards,

                                  Advansys Support

                                Viewing 15 replies - 196 through 210 (of 913 total)