Novell Support Forums - New Posts

Iprint plugin oes2sp2

Novell Support Forums - New Posts - 11 hours 35 min ago
Just upgraded an oes2sp1 server to oes2sp2 and also added a new oes2sp2 server ( all linux ). When I'm using Imanager , selecting "manage a printer" under the Iprint section, the drivers tab is missing. Had to use Imanager on an OES2sp1 server to add a printer profile to a new printer.

Has anyone else got this problem?

Filter to allow Access to web site with LDAP login

Novell Support Forums - New Posts - 11 hours 45 min ago
I have a web site that has to be able to be accessed with HTTP but logs in via LDAP 636. This for my anti-virus updates.

How would that filter look?

Just wondering,
Ken@rlmrlm.com

eDirectory Names in Address Book

Novell Support Forums - New Posts - 11 hours 57 min ago
When I am seeing my user names in the address book of GroupWise I am only seeing the last name(s) of the users, and even when I add the full user name and First Name and Last name I am still not seeing the correct information. Is there something that I am missing? Thank you, if this is not the correct forum please let me know and I move it to that one, thank you.

GWDomain Location and C1

Novell Support Forums - New Posts - 12 hours 16 min ago
Quick question....

When logging into C1 with the GroupWise snapins, I am prompted to point to the location of gwdomain.wp. It currently defaults to a location that is no longer in use. Does anyone know how to clear that location and keep the new location? Each time I log in after changing the location, it defaults right back to the original location. No problem, just a pain to have to go through everytime. I've tried several things to no avail.

Thanks in advance.

Request status

Novell Support Forums - New Posts - 12 hours 21 min ago
Hi,

Creating a new wf it doesn't do what I want it to so I had a look at the request status and it just gives me this error:

requestList: An error has occurred retrieving the request list:: Nullpointer Exception
JUICE.Util._callBack, method=(response) (_382.rsIdx.map is undefined)

So no list of requests at all.

Crystal report - db error

Novell Support Forums - New Posts - 12 hours 51 min ago
Hello Everyone,

I've installed Crystal Report Xir2, everything seems to work (i am able to publish the reports from the solution pack and see the reports from the control center) but when I run the report, i get the following error:

Error in File /opt/crystal_xir2/bobje/data/procSched/sentinel.reportjobserver/~tmp46e05ebdf3391f2.tmp: Failed to load database information.

The server is installed on the same server as the sentinel 6.1.2 (running on sles10sp2 x86_64)

Has anybody seen this error before? I couldn't find anything more in the log file...

Thanks,

Giordano

GW: Messenger Contact List Size

Novell Support Forums - New Posts - 12 hours 55 min ago
System:
OS: Netware 6.5 SP8
Application: Groupwise Messenger MA 2.0.4
Groupwise Messenger AA 2.0.4


What is the maximum number of contacts a single user can have?

I have checked within Console One and the default is set to 100. If I input a number such as 5000 the screen will default to 1000. So does this mean that a single user can only have 1000 contacts in his/her list?

If anyone has an incite that might assist Thank you in advance!

IMAP shows limited messages for 1 user

Novell Support Forums - New Posts - 13 hours 36 sec ago
I have one user that is connecting to GW with her iPhone via IMAP. Actually I have several and they are all working fine. I access it via IMAP on my LG phone and it works fine. But this 1 user only seed mail from 11/4/2009. (the date I set it up for her) Nothing before or after in the inbox. I had her setup and working with NotifyLink during a demo. That has now expired, and I hope they will be purchasing the product. I can setup an IMAP connection with her account on any device and get the same result. Any clues?

XPath/XSLT problem

Hi!

I'm working on a soap driver. The soap interface returns this document:

Code: <nds dtdversion="2.0">
  <source>
    <product build="20070918_0808 " instance="Dashboard" version="3.5.2">Identity Manager Driver for SOAP</product>
    <contact>Novell, Inc.</contact>
  </source>
  <output>
    <AddOrUpdateUserResponse xmlns="http://tempuri.org/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <AddOrUpdateUserResult>true</AddOrUpdateUserResult>
      <operation-data assoc-key="annasjovatsen" parent-node-1="AddOrUpdateUserResponse">
        <return-to-me cached-time="20091130053130.570Z" class-name="User" command="add" event-id="oesmetalab#20091130053130#1#1" qualified-src-dn="O=rfk-meta\OU=Personer\OU=Ansatt\CN=annasjovatsen" src-dn="\RFK-LAB-TRE\rfk-meta\Personer\Ansatt\annasjovatsen" src-entry-\
id="76267" timestamp="1259559090#24"/>
      </operation-data>
    </AddOrUpdateUserResponse>
  </output>
</nds> And I have a XSLT policy that converts this to a status and add-assoc:

Code: <xsl:template match="AddOrUpdateUserResponse">
                <xsl:message>Input: Convert Dashboard to XDS</xsl:message>
                <xsl:variable name="dn" select="//return-to-me/@src-dn"/>
                <xsl:variable name="eventID" select="//return-to-me/@event-id"/>
                <xsl:variable name="entryID" select="//return-to-me/@src-entry-id"/>
                <xsl:variable name="key" select="//operation-data/@assoc-key"/>
                <xsl:variable name="code" select="//AddOrUpdateUserResult/node()"/>
                <status>
                        <xsl:attribute name="event-id">
                                <xsl:value-of select="$eventID"/>
                        </xsl:attribute>
                        <xsl:choose>
                                <xsl:when test="$code = 'true'">
                                        <xsl:attribute name="level">success</xsl:attribute>
                                        <xsl:text> User successfully created in Dashboard. Enjoy!</xsl:text>
                                </xsl:when>
                               
                                <xsl:otherwise>
                                        <!-- <xsl:call-template name="return-error-handler"/> -->
                                        <xsl:attribute name="level">error</xsl:attribute>
                                        <xsl:attribute name="type">app-general</xsl:attribute>
                                        <xsl:text>
                                                Something went wrong on this crap system.
                                        </xsl:text>
                                </xsl:otherwise>
                        </xsl:choose>
                </status>
                <xsl:if test="$key and $code = 'true'">
                        <add-association>
                                <xsl:attribute name="dest-dn">
                                        <xsl:value-of select="$dn"/>
                                </xsl:attribute>
                                <xsl:attribute name="event-id">
                                        <xsl:value-of select="$eventID"/>
                                </xsl:attribute>
                                <xsl:attribute name="dest-entry-id">
                                        <xsl:value-of select="$entryID"/>
                                </xsl:attribute>
                                <xsl:value-of select="$key"/>
                        </add-association>
                </xsl:if>
        </xsl:template> The problem is that the xpath expression do not match AddOrUpdateUserResponse since the element has namespaces. I can not figure out how to fix this. Any suggestions?

--
Frode

Challenge / Response complexity

Novell Support Forums - New Posts - 13 hours 12 min ago
Hi All

Is there a way how I can make sure that a user is not allowed to response the same answer to all admin defined questions in a challengeset. I´am thinking about a functionality like UP complexity or possible another solution to achive this

The only configurable option I can see is the lenght of the answer

Running edir 887, suse 10 sp2, UA 3.6.1

TIA

GW Caching Shared Address Book

Novell Support Forums - New Posts - 13 hours 20 min ago
Hi
I have 3 clients based in our dutch office that are working in a caching mode. One of them has shared an address book with the other 2 people. When new entries are put into the address book these aren't being synchronised between all 3 clients.
Any help is much appreciated.
Andy

Auto starting start-jboss.sh on Linux Redhat

Novell Support Forums - New Posts - 13 hours 23 min ago
Novell Identity Manager 3.5.1 Provisioning Module.
Linux RedHat Enterprise 5
Database : Oracle

We have installed IDM 3.5.1 Provisioning module. I want to start it automatically whenever the server restarts. the UserApp uses a Oracle Database which lies on another server.

Any help guys?

M.

VerifyPassword Sample

Novell Support Forums - New Posts - 13 hours 39 min ago
Hi all,

I am new to LDAP development but I am getting up to speed now. My question is that I am trying the examples that come with the library and each time that I run the example nothing seems to happen. All that happen is the first lines of the sample. No connections seems to happen and after debugging I found out that nothing is working after the first 13 lines. Can someone tell me what I need to do to make the other lines work? Your help is appreciated.

One of the sample codes is pasted below. Thank you


import com.novell.ldap.*;


import java.io.UnsupportedEncodingException;





public class VerifyPassword


{


public static void main( String[] args )


{


if (args.length != 5) {


System.out.println("Usage: java VerifyPassword <host name>"


+ " <login dn> <password> <object dn>\n"


+ " <test password>");


System.out.println("Example: java VerifyPassword Acme.com "


+ "\"cn=Admin,o=Acme\" secret\n"


+ " \"cn=JSmith,ou=Sales,o=Acme\" testPassword");


System.exit(0);


}





int ldapPort = LDAPConnection.DEFAULT_PORT;


int ldapVersion = LDAPConnection.LDAP_V3;


String ldapHost = args[0];


String loginDN = args[1];


String password = args[2];


String objectDN = args[3];


String testPassword = args[4];


LDAPConnection lc = new LDAPConnection();





try {


// connect to the server


lc.connect( ldapHost, ldapPort );





// authenticate to the server


lc.bind( ldapVersion, loginDN, password.getBytes("UTF8") );





LDAPAttribute attr = new LDAPAttribute(


"userPassword", testPassword );


boolean correct = lc.compare( objectDN, attr );





System.out.println( correct ? "The password is correct.":


"The password is incorrect.\n");





// disconnect with the server


lc.disconnect();


}


catch( LDAPException e ) {


if ( e.getResultCode() == LDAPException.NO_SUCH_OBJECT ) {


System.err.println( "Error: No such entry" );


} else if ( e.getResultCode() ==


LDAPException.NO_SUCH_ATTRIBUTE ) {


System.err.println( "Error: No such attribute" );


} else {


System.err.println( "Error: " + e.toString() );


}


}


catch( UnsupportedEncodingException e ) {


System.out.println( "Error: " + e.toString() );


}


System.exit(0);


}


}

Kerberos stopped working

Novell Support Forums - New Posts - 13 hours 42 min ago
Hi!

I have configured kerberos authentication. It worked just fine but now it stopped working. What happes is that the user is prompted with the basic auth box.

The IDP is added to trusted sites in IE7.

Anyone has a suggestion?

Code: <amLogEntry> 2009-11-24T11:34:45Z INFO NIDS Application: AM#500105009: AMDEVICEID#BBDFEA795CA142A3: AMAUTHID#F78EF45D05094DAAD1C84020400C8095:  Executing contract Kerberos_Contract. </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z VERBOSE NIDS Application: Executing authentication method Introductions </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z VERBOSE NIDS Application: Authentication method Introductions failed. </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z VERBOSE NIDS Application: Session has consumed authentications: false </amLogEntry>

Debug is  true storeKey true useTicketCache true useKeyTab true doNotPrompt true ticketCache is /opt/novell/java/jre/lib/security/spnegoTicket.cache KeyTab is /opt/novell/java/jre/lib/security/nidpkey.keytab refreshKrb5Config is false principal is HTTP/namidp01.rogfk.no@ROGFK.NO tryFirstPass is false useFirstPass is false storePass is false clearPass is false
Principal is HTTP/namidp01.rogfk.no@ROGFK.NO
null credentials from Ticket Cache
principal's key obtained from the keytab
principal is HTTP/namidp01.rogfk.no@ROGFK.NO
Added server's keyKerberos Principal HTTP/namidp01.rogfk.no@ROGFK.NOKey Version 4key EncryptionKey: keyType=3 keyBytes (hex dump)=
0000: 8A BF 6D 76 83 91 94 A8 

                [Krb5LoginModule] added Krb5Principal  HTTP/namidp01.rogfk.no@ROGFK.NO to Subject
Commit Succeeded

<amLogEntry> 2009-11-24T11:34:45Z VERBOSE NIDS Application: Executing authentication method Kerberos_Method </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z VERBOSE NIDS Application: Authentication method Kerberos_Method requires additional interaction. </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z INFO NIDS Application: AM#500105010: AMDEVICEID#BBDFEA795CA142A3: AMAUTHID#F78EF45D05094DAAD1C84020400C8095:  Contract Kerberos_Contract requires additional interaction. </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z DEBUG NIDS Application: AM#600105011: AMDEVICEID#BBDFEA795CA142A3: AMAUTHID#F78EF45D05094DAAD1C84020400C8095:  IDP Liberty handler to process request received for sso </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z VERBOSE NIDS Application: Session has consumed authentications: false </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z VERBOSE NIDS IDFF: Handling IDFF request, session authenticated: false </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z VERBOSE NIDS Application: Session has consumed authentications: false </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z DEBUG NIDS Application: /nidp/idff/sso is a ProxyRequest: false </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z VERBOSE NIDS IDFF: Processing Liberty SSO request </amLogEntry>

<amLogEntry> 2009-11-24T11:34:45Z DEBUG NIDS IDFF:
--
Frode

I/O Error, error code = 8201. 17:10:43 472 File write error

Has anyone seen this error before? We keep getting this on the GWIA, it will continue to log, then all of a sudden this error comes up on the beginning of the next new log. I am have been seeing this for about 6 months now since we upgraded to 8.0 and sometimes it goes for days without any ZERO error logs, then it hickups, and moves over to a new log file with this error at the top of it.

17:10:43 472 I/O Error, error code = 8201.
17:10:43 472 File write error on file "/var/opt/novell/grpwise/logfiles/gwia/1123gwia.01f" in module "GweLogToDisk2".
17:10:43 472 *************** Switching to new log file ***************

Any insight would be appreciated and thanks for your help everyone!

Paul

Online Demo Dashboard Goes Live

Novell Support Forums - New Posts - 15 hours 32 min ago
Dear all,

It gives me great pleasure to announce that our new Online Demo Dashboard feature is now live across all three Geo's. The dashboard is a customisable web page that is automatically generated each time you schedule a demo on NODS. With instant mesaging, a bulletin board, document uploads and innovative new remote control features, the Dashboard really takes the Art Of The Remote Demo to the next level by giving you a slick, professional home page for each specific remote customer meeting.

Try it out right now by visiting our portal at http://www.novell.com/demosystems
Or, watch this ten minute video to see what the dashboard can do http://is.gd/4RMYu

Kudos to our developer Dave Mitchell for the great work he has done on this.

Travel Less, Sell More!

Chris

Footer in Proxy Mailboxes

Novell Support Forums - New Posts - 15 hours 43 min ago
We use GroupWise 7.0.1 and I need to 'fix' a problem with Proxy Mailboxes.

We have several 'departmental' mailboxes that multiple staff members at times access. When they sometimes need to reply or email out to answer request's there is no Footer attached to the mail.

Is it possible to have a footer setup in each Proxy Mailbox and have that attached to the mails sent via a proxy connection?

Thanks Rob

How can I run msi apps in Netware 6.5

How can I run msi apps in Netware 6.5, I just installed Netware 6.5 in a clean server and now I need to deploy an msi package in that server but how do i run it?

Copy System Requirements from Folders

I can copy reqirements between bundles but the option is greyed out when I select a bundle folder.
Also looking at details from any givven Bundle Folder there is no way to set these requirements.

It is doumented in course 3098, and in on-web documentation that this is possible.

Explain, anyone ?

erp generates already finished tasks

Novell Support Forums - New Posts - 16 hours 12 min ago
Hello everyone,

Our ERP (OpaccOne) generates already finished tasks for users.
The problem is, groupwise is showing them as finished (with a tick),
but colors them red and move them always to the actual day, like
they were not finished.

Anyone got an idea why this is happen? I thought maybe the problem
is, that the tasks got generated finished, because I wasn't able to do
that from my gw client.

Thank you for your help / ideas.

Regards
damian

© 2009 Novell, Inc. All Rights Reserved.