Questions tagged [groupwise]

GroupWise is a messaging and collaborative software platform from Novell that supports email, calendaring, personal information management, and instant messaging.

GroupWise is a messaging and collaborative software platform from Novell that supports:

  • email
  • calendaring
  • personal information management
  • instant messaging
  • and document management.

The platform consists of the client software, which is available for Windows, Mac OS X, and Linux, and the server software, which is supported on Windows Server, NetWare, and Linux. The latest generation of the platform is GroupWise 8. Novell has a multitude of API's to connect to the platform trough a variaty fo languages.

32 questions
4
votes
1 answer

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 control, e.Data.GetFormats() returns the…
tetranz
  • 1,932
  • 3
  • 24
  • 32
4
votes
2 answers

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 | 32 | 444 | 2011-05 | 2 | 65 | …
carpereret
  • 149
  • 1
  • 1
  • 5
3
votes
1 answer

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 = 'Private'; $appointment->security = 'Normal'; …
Cristobal Wetzig
  • 381
  • 1
  • 14
3
votes
1 answer

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 Web Services" ? thanx
Preeti
  • 1,386
  • 8
  • 57
  • 112
3
votes
2 answers

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 some features has resulted in more developing time,…
Persimmonium
  • 15,593
  • 11
  • 47
  • 78
2
votes
1 answer

Sorting Messages with GroupWise API

Is it possible to sort GroupWise messages with the object API? I know about filters and queries, however I couldn't find any sorting operators for filter and query expressions.
Mike Borozdin
  • 1,138
  • 3
  • 14
  • 32
2
votes
2 answers

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, Sales.Sale_Price, Sales.Condition FROM Items LEFT JOIN…
Rui Xia
  • 175
  • 4
  • 20
2
votes
1 answer

Error in R t_test , not enough "x" observations

I am trying to conduct group-wise t-test , but the code i am using returnign an error. It has worked alright for me previously and on other data frame but for this data frame its giving this error Error in t.test.default(x = 0.0268, y = 0.0223,…
Shah
  • 31
  • 5
2
votes
0 answers

VBA Groupwise Email

I'm using Excel 2013, Windows 7, Groupwise 12. The code should be pretty straight forward, but I keep getting an error "Active X component can't create object" I've made sure the references are there according to the Groupwise's development…
uofarob
  • 65
  • 1
  • 12
2
votes
3 answers

how do I change the password for multiple users in groupwise?

I have 1000 users I need to change the user passwords to a 'known to admin' password for a migration tool (groupwise to exchange). Admin does not have any of the user passwords. How do I change a batch of user passwords via LDAP or other management…
user2551944
2
votes
2 answers

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 instance in the following method I look for…
Richard Hopton
  • 201
  • 1
  • 5
1
vote
0 answers

Error: Problem with `mutate()` column `nested.col`. i `nested.col = purrr::map(...)`. x no applicable method for 'tk_make_future_timeseries'

I tried to execute the code below and I'm getting error message Here is the code: full_data_tbl <- merger %>% select(outcome, date.y, crime_numbers, sentiment) %>% # Apply Group-wise Time Series Manipulations group_by(outcome) %>% …
1
vote
1 answer

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 program that will send an instant message to…
Mark Logan
  • 203
  • 5
  • 19
1
vote
1 answer

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, essentially, syncing their accounts. What would be required…
Pedro
  • 11
  • 1
1
vote
1 answer

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 mail out of GroupWise via the Groupwise Outloop…
Koekiebox
  • 5,793
  • 14
  • 53
  • 88
1
2 3