Tagged Questions

**GroupWise** is a messaging and collaborative software platform from Novell.

learn more… | top users | synonyms

3
votes
1answer
69 views

Creating an appointment in groupwise with $gwservice PHP

I am trying to create an apointment trough the SOAP library provided by NOVELL. Like so: $appointment = new Appointment(); $appointment->source = 'personal'; $appointment->class = ...
2
votes
2answers
85 views

select least row per group in SQL

I am trying to select the min price of each condition category. I did some search and wrote the code below. However, it shows null for the selected fields. Any solution? SELECT Sales.Sale_ID, ...
2
votes
1answer
748 views

API's to access 'Novell GroupWise' data for c#.What will be difference if i use “gwtapp.dll” or “GroupWise Web Services”?

I want to read mail,calendar,contact items from Novell GroupWise Client.(using version 8). How to start with? Which API is best for this? What will be difference if i use "gwtapp.dll" or "GroupWise ...
2
votes
1answer
1k views

Drag and drop from an email file attachment in GroupWise to a .NET application

I'm trying to allow an attachment from an email open in Novell GroupWise to be dropped into my C# WinForms application. The standard .NET functionality doesn't work. In the DragDrop event of a ...
1
vote
1answer
58 views

Send Novell GroupWise instant message via Java?

It this possible or is there an API for this? From Novell's website, there's a GroupWise API, but I don't see any methods for sending instant messages, only e-mails. I simply want to create a Java ...
1
vote
2answers
127 views

MySQL - get sum() grouped max() of group

I have table structure like below. Each row is one played game, each person can play many or none times in each month. id | person | score | date | ------------------------------------ 1 | ...
1
vote
1answer
68 views

Syncing Groupwise/ Novell accounts with a java application

I have a Java application which has it's own table of username's and passwords. We are trying to upgrade the system so that a user may simply use their groupwise/novell accounts to login, ...
1
vote
1answer
176 views

Java GroupWise Mail Client

Is anyone aware of a way to retrieve and send mails by talking directly to the GroupWise server. I want to be able to retrieve mail using Java if possible. I wrote a Outlook Plug-In that retrieved ...
1
vote
2answers
192 views

GroupWise appointments incorrectly dated, >50 years in the future

When fetching a list of appointments from GroupWise some of the dates in the retrieved appointment objects do not match the values in GroupWise, in fact they are more than 50 years in the future. For ...
0
votes
0answers
29 views

Having difficulties adding an attachment to a GroupWise message with VBA

I have been using the following code without an issue to send an email and add an attachment with GroupWise 7 for a while. Since upgrading to GroupWise 8, I receive an error message on the last line. ...
0
votes
0answers
20 views

How to create this SOAP filterGroup request?

I was hoping someone could guide me in the right direction. I am trying to send a request called a FilterGroup according to Novell GroupWise PHP API. In the api documents it is stated that I can ...
0
votes
1answer
186 views

How can I login to a Novell Groupwise user account in C#?

How can I use the login method to login to a user account in Novell Groupwise in C#?
0
votes
3answers
228 views

SOAP functions in php for GroupWise Calendar?

I have been searching far and wide to find the correct SOAP functions to use to obtain the calendar of multiple users in GroupWise, but I have been unable to even find a sheet with the SOAP functions ...
0
votes
1answer
148 views

Group-wise-max - hierarchical data query help

the first part of this problem was solved by some good help on here yesterday, but I've been struggling today to complete the query I need. I am trying to pull multiple columns from 5 joined tables ...
0
votes
1answer
156 views

Does anyone know how to send an email with Novell GroupWise from a C# .NET application?

I am trying to find a way to shell or communicate with GroupWise so that I can open and then send an email to a recipient programatically with C#. I don't have any code, just looking for an api call ...
0
votes
1answer
187 views

How to fix error - “@interface interfaceName : someEnumeration” gives error “cannot find interface ''someEnumeration'..”

How can I solve "cannot find interface declaration 'someEnumeration', superclass of 'interfaceName'" error? What steps will reproduce the problem? Compiling Wsdl2ObjC Targeting groupwise.wsdl file ...
0
votes
1answer
276 views

IMAP protocol support in different email servers

Having to interact with several different email servers via IMAP (using javamail), I have found that there is a very different level of support for IMAP features among them. The lack of support of ...
0
votes
2answers
255 views

How do you find the group-wise max in LINQ?

I'm trying to solve the "group-wise max" problem in LINQ. To start, I have a database modeled using the Entity Framework with the following structure: Customer: --------- CustomerID : Int32 Name : ...
0
votes
3answers
794 views

Drag and Drop a Groupwise Email to C# Winform

I have a need to be able to drag and drop a groupwise email to my winform application and am not having any luck at all. I am able to get a filename as such but it is only a name, not a path. Every ...