329 Lotus blogs updated hourly. Who will post next? Home | Downloads | Events | Jobs | Twitter | Bookmarks | Pods | Blogs | Search | myPL | About 
 
Latest 7 Posts
Getlibs 2.06 missing?
Tue, Apr 2nd 2013 142
Traveler UP2 - connection errors
Wed, Mar 6th 2013 266
Traveler - logging user activity - Part 1
Tue, Nov 20th 2012 414
Attachments - Thunderbird
Thu, May 10th 2012 230
Sametime Auto-Status Changes troubleshooting
Wed, Feb 1st 2012 570
SPNEGO - SSO from Hell
Fri, Jan 27th 2012 251
NotesDateTime to Java Timestamp
Wed, Nov 16th 2011 213
Top 10
Sametime Auto-Status Changes troubleshooting
Wed, Feb 1st 2012 570
Contact's Picture
Mon, Oct 3rd 2011 555
Traveler - logging user activity - Part 1
Tue, Nov 20th 2012 414
Domino Designer Crashes - Never Ending Story
Tue, Jun 7th 2011 291
Traveler UP2 - connection errors
Wed, Mar 6th 2013 266
SPNEGO - SSO from Hell
Fri, Jan 27th 2012 251
Attachments - Thunderbird
Thu, May 10th 2012 230
NotesDateTime to Java Timestamp
Wed, Nov 16th 2011 213
Extlib trouble?
Wed, Mar 9th 2011 205
Update jpegphoto in an LDAP Server
Tue, Aug 17th 2010 185


SPNEGO - SSO from Hell
Urs Meli    

Just during Lotusphere I got the message that our SPNEGO support stoppt working.
Right back from Orlando I checked everything in the troubleshooting guide . Nothing helped. No one did any changes to our dominos or to the active directory.

Wireshark revealed a KRB_AP_ERR_MODIFIED error, while authentication. So I lurked around the internet for this error without success. Some pages indicated, that it is a replication problem between domain controllers. But dcdiag.exe didn't find anything.

The solution for me was to remove the password
Bild

 

 

 

 

 

 

 

 

 

 

 

 

 

and restart the domino server. SSO works again. Maybe a simple restart would have solved the issue too :-)

 



---------------------
http://www.bleedyellow.com/blogs/umeli/entry/spnego_sso_from_hell
Jan 27, 2012
252 hits



Recent Blog Posts
142


Getlibs 2.06 missing?
Tue, Apr 2nd 2013 4:16p   Urs Meli
If you want to install Lotus Notes 8.5.X on Ubuntu 12 you'll need this getlibs. The link for Launchpad is not working anymore. [read] Keywords: lotus notes bleedyellow bleedyellow.com ubuntu
266


Traveler UP2 - connection errors
Wed, Mar 6th 2013 5:08a   Urs Meli
I tried to install Traveler UP2 some days ago. I had a test server running Traveler UP1, which I upgraded. After the upgrade I could register new devices (iphone and android) but they were unable to sync. The device log showed an error 500 http error. The server console showed some longish severe error messages from traveler. Something about getDevicePreferences error. The common reason for this error is a misstyped traveler url in the server document or the notes.ini, which in fact [read] Keywords: notes traveler iphone server
414


Traveler - logging user activity - Part 1
Tue, Nov 20th 2012 5:08a   Urs Meli
Ever wondered that traveler does not provide any statistics about the user activities? Do you want to know how much data gots transmitted over your traveler server? The statistics from the traveler task gives you just a brief overview but if you want to track a single user you are lost, are you? There's a simple way to get the results. Do you remember DomLog.nsf ? If you enable Domlog.nsf on the traveler server every request gets logged. I built a new view - traveler - in the domlo [read] Keywords: agent traveler archiving archive server
230


Attachments - Thunderbird
Thu, May 10th 2012 3:09p   Urs Meli
Sometimes there are some small things that disrupt useability. I use thunderbird for my personal mail accounts. I was very surprised, when I missed a little feature. I tried to drag an attachment into a new mail as I'm used to do from Notes. I was very surprised, that this doesn't work. It's only a small thing, but it's anoying. [read] Keywords: notes
570


Sametime Auto-Status Changes troubleshooting
Wed, Feb 1st 2012 8:11a   Urs Meli
Today I ran into something strange. A user tried to enable the auto-status change feature in sametime embedded. Everytime he opened the preferences he got an error message. And when he changed the properties they wouldn't save. After some investigation I discovered, that the file notesdataworkspace.metadata.pluginscom.ibm.collaboration.realtime.alertmanagerautostatus.xml was empty but 1kb big. So I copied the file from another workstation. After the user had restarted the notes clien [read] Keywords: collaboration ibm notes notes client sametime properties workspace xml
252


SPNEGO - SSO from Hell
Fri, Jan 27th 2012 5:10a   Urs Meli
Just during Lotusphere I got the message that our SPNEGO support stoppt working. Right back from Orlando I checked everything in the troubleshooting guide . Nothing helped. No one did any changes to our dominos or to the active directory. Wireshark revealed a KRB_AP_ERR_MODIFIED error, while authentication. So I lurked around the internet for this error without success. Some pages indicated, that it is a replication problem between domain controllers. But dcdiag.exe didn't find anything. [read] Keywords: domino ibm lotusphere bleedyellow bleedyellow.com password server




213


NotesDateTime to Java Timestamp
Wed, Nov 16th 2011 6:11a   Urs Meli
Based on this work I needed a function to convert a notesdatetime to a java timestamp. I changed the getTimestamp method to Function getTimestamp(dt As Variant) As String Const EPOCH_DATE = "01/01/1970 00:00:00" Const DT_TYPENAME= "NOTESDATETIME" Dim epochDT As New NotesDateTime(EPOCH_DATE) Dim tempDT As New NotesDateTime(Now) If(TypeName(dt) = DT_TYPENAME) Then tempDT.LSLocalTime = dt.Lslocaltime Else tempDT.LSLocalTime = dt End If getTimestamp = cstr(tempDT.TimeDifference(epo [read] Keywords: lotus lotusscript notes blogging java
131


Return of VB6?
Mon, Oct 31st 2011 4:53a   Urs Meli
The last 3 days I was porting a VB6 application to .NET. I had to remove some relicts from the past: - UI used some 3rd party components wich had their EOL by october 2005..... - underlying sql 2000 server changed to sql 2008 When did you last store data in multidimensional dynamic arrays? [read] Keywords: application server sql
171


Managed beans and the revenge of the ACL
Fri, Oct 14th 2011 7:11a   Urs Meli
Yesterday I started the upgrade process for pure notes client database. The plan was to put a xpage database besides the original notes db. Instead of using views as datasources I tried to do it with beans. Very simple: Xpages and managed beans When I openend the XPage, there was no data. So I put a lot of debug statements in my java code. I could track it down until I found that Document doc = view.getFirstDocument(); returned alwas null. So I double checked the view: there were document [read] Keywords: acl notes notes client xpages database interface java password server
169


Designer 8.5.3 - Whooohaaa
Fri, Oct 7th 2011 12:11a   Urs Meli
Working now the 2nd day with the 8.5.3 designer without a crash. Switching ID's works. No crashes while editing and / or viewing large script libraries. It seems that I'm able to work again with Lotusscript. Thank you, Domino Designer Developers, great job. [read] Keywords: domino lotusscript




Created and Maintained by Yancy Lent - About - Blog Submission - Suggestions - Change Log - Blog Widget - Advertising - Mobile Edition