Manually refreshing TGT leads to "Message stream modified" error

We wish to use Kerberos to implement application authentication without needing username/password. We have code which gets the TGT and can get other tickets from that, and those tickets can successfully be used with LDAP to make queries. However, the TGT will expire after 10 hours, unless (for example) the lockscreen is used to supply a username/password, at which point the TGT is renewed.
We understand that it should be possible to renew the TGT from the application, so that long-running processes do not require another login. The ticket's metadata says it is renewable, and we have set options to say we want to do this. We get hold of the ticket and do refresh(), and this attempts to renew the Credentials. However, the attempt fails with the following exception:
javax.security.auth.RefreshFailedException: Failed to renew Kerberos Ticket for client [email protected] and server krbtgt/[email protected] - Message stream modified (41)
Having traced the executing code down through the debugger, it goes down through KerberosTicket.refresh(), Credentials.renew(), is constructing a new EncryptedData and does Cipher.getInstance() with transformation "DES/CBC/NoPadding". This gets down to a Provider, which raises the exception.
We have checked that we only have one matched pair for serviceprincipalname.
So the questions are: (a) should it be possible to refresh the TGT in this way, or is it simply impossible to refresh it without a username and password?; (b) if it should be possible, what is the likely cause of the exception?
A debug trace of an attempt looks like:
H:\support\users\paulw\Workspace\kerberos\bin>java -Dsun.security.krb5.debug=true -Djava.security.krb5.realm=NMS.DEV.PS.GE.COM -Djava.security.krb5.kd
c=UKCBGDC01DFPS -Djava.security.auth.login.config=jaas.conf JaasAcn
KinitOptions cache name is C:\Documents and Settings\paulw\krb5cc_paulwAcquire default native Credentials
Obtained TGT from LSA: Credentials:
[email protected]
server=krbtgt/[email protected]
authTime=20090127152629Z
startTime=20090127152629Z
endTime=20090128012629Z
renewTill=20090203152629Z
flags: FORWARDABLE;RENEWABLE;INITIAL;PRE-AUTHENT
EType (int): 23
Authentication succeeded!
[email protected]
Start time = Tue Jan 27 15:26:29 GMT 2009, Expires = Wed Jan 28 01:26:29 GMT 2009, isCurrent = true, isInitial=true, [email protected].
GE.COM, ServerPrincipal=krbtgt/[email protected]
Using builtin default etypes for default_tgs_enctypes
default etypes for default_tgs_enctypes: 3 1 23 16 17.
CksumType: sun.security.krb5.internal.crypto.RsaMd5CksumType
EType: sun.security.krb5.internal.crypto.ArcFourHmacEType
KrbKdcReq send: kdc=UKCBGDC01DFPS UDP:88, timeout=30000, number of retries =3, #bytes=1799
KDCCommunication: kdc=UKCBGDC01DFPS UDP:88, timeout=30000,Attempt =1, #bytes=1799
KrbKdcReq send: #bytes read=106
KrbKdcReq send: #bytes read=106
KDCRep: init() encoding tag is 126 req type is 13
KRBError:sTime is Tue Jan 27 16:00:42 GMT 2009 1233072042000
suSec is 717480
error code is 52
error Message is Response too big for UDP, retry with TCP
realm is NMS.DEV.PS.GE.COM
sname is krbtgt/NMS.DEV.PS.GE.COM
msgType is 30
KrbKdcReq send: kdc=UKCBGDC01DFPS TCP:88, timeout=30000, number of retries =3, #bytes=1799
DEBUG: TCPClient reading 1783 bytes
KrbKdcReq send: #bytes read=1783
KrbKdcReq send: #bytes read=1783
EType: sun.security.krb5.internal.crypto.ArcFourHmacETypeerr: javax.security.auth.RefreshFailedException: Failed to renew Kerberos Ticket for client [email protected] and server krbtgt/[email protected] - Message stream modified (41)
The problem is reproducible with a simple java client and has been reproduced on two machines within the corporate network using different kdc's. It is also reproducible on a customers site where the ticket expiry is 1 hour.
thanks
paul

If it helps.. the client code and config file.
If someone has a working system and could confirm whether the general principle here is correct, that would be much appreciated.
thanks
paul
java -Dsun.security.krb5.debug=true -Djava.security.krb5.realm=<realm-name> -Djava.security.krb5.kdc=<kdc-name> -Djava.security.auth.login.config=jaas.conf JaasAcn
* @(#)JaasAcn.java
* Copyright 2001-2002 Sun Microsystems, Inc. All Rights Reserved.
* Redistribution and use in source and binary forms, with or
...snip
* intended for use in the design, construction, operation or
* maintenance of any nuclear facility.
import java.util.*;
import javax.security.auth.kerberos.*;
import javax.security.auth.*;
import javax.security.auth.login.*;
import com.sun.security.auth.callback.TextCallbackHandler;
import java.security.*;
import javax.security.auth.Subject;
* This JaasAcn application attempts to authenticate a user
* and reports whether or not the authentication was successful.
public class JaasAcn {
     public static void main(String[] args) {
          // Obtain a LoginContext, needed for authentication. Tell it
          // to use the LoginModule implementation specified by the
          // entry named "JaasSample" in the JAAS login configuration
          // file and to also use the specified CallbackHandler.
          LoginContext lc = null;
          try {
               lc = new LoginContext("JaasSample", new TextCallbackHandler());
          } catch (LoginException le) {
               System.err.println("Cannot create LoginContext. "
                         + le.getMessage());
               System.exit(-1);
          } catch (SecurityException se) {
               System.err.println("Cannot create LoginContext. "
                         + se.getMessage());
               System.exit(-1);
          System.out.println("Time is now " +new Date());
          try {
               // attempt authentication
               lc.login();
          } catch (LoginException le) {
               System.err.println("Authentication failed:");
               System.err.println("  " + le.getMessage());
               System.exit(-1);
          System.out.println("Authentication succeeded!");
          Subject mSubject = lc.getSubject();
          Iterator li = mSubject.getPrincipals().iterator();
          // Should only have one Principal
          if ( li.hasNext() ) {
               Principal lPrincipal = (Principal) li.next();
               System.out.println(lPrincipal.toString());
          li = mSubject.getPrivateCredentials().iterator();
          if ( li.hasNext() ) {
               Object lObject = (Object) li.next();
               if ( lObject instanceof KerberosTicket ) {
                    KerberosTicket lKerberosTicket = (KerberosTicket) lObject;
                    System.out.println(
                              "Start time=" + lKerberosTicket.getStartTime() +
                              ", Expires=" + lKerberosTicket.getEndTime() +
                              ", RenewUntil=" + lKerberosTicket.getRenewTill() +
                              ", isCurrent=" + lKerberosTicket.isCurrent() +
                              ", isRenewable=" + lKerberosTicket.isRenewable() +
                              ", isInitial=" + lKerberosTicket.isInitial() +
                              ", ClientPrincipal=" + lKerberosTicket.getClient().toString() +
                              ", ServerPrincipal=" + lKerberosTicket.getServer().toString());            
                    try {
                         lKerberosTicket.refresh();
                    catch ( RefreshFailedException e )
                         System.err.println("err: " + e);
/** Login Configuration for the JaasAcn and
** JaasAzn Applications
   [email protected]
   doNotPrompt=true
   useKeyTab=true
JaasSample {
   com.sun.security.auth.module.Krb5LoginModule required
   useTicketCache=true
   renewTGT=true
   debug=true;
};

Similar Messages

  • RenewTGT using native cache with KRB5  Message stream modified

    I have implemented the Jass tutorial JassAcn.java and it works fine when username and password are entered.
    However,when I try to use the ticket from the native cache I get the following error :
         Ticket could not be renewed : Message stream modified (41)     
    and then get prompted to enter the username followed by the password. If I enter the user name
    and password the authentication is successfull.
    I am using a Windows XP SP2 client and JDK 1.5 and a Win2000 server.
    The registry key "allowtgtsessionkey" on the client has been set to 0x01 as recommended by
    C:\jdk15help\docs\guide\security\jgss\tutorials\Troubleshooting.html
    The "Message stream modified" error seems to imply that
    checksum used to verify the data packet didn't match what was expected or some packets are being corrupted.
    I tried different default_checksum but to no avail.
    Has anyone encountered this before?
    My config file is as follows:
    JaasSample {
    com.sun.security.auth.module.Krb5LoginModule required
                        useTicketCache=true
                        renewTGT = true
                        debug=true;
    and the debug log
    Debug is true storeKey false useTicketCache true useKeyTab false doNotPrompt false ticketCache is null KeyTab is null refreshKrb5Config is false principal is null tryFirstPass is false useFirstPass is false storePass is false clearPass is false
    Acquire TGT from Cache
    Ticket could not be renewed : Message stream modified (41)
    Principal is null
    null credentials from Ticket Cache
    Kerberos username [myname]:
    Kerberos password for myname: mypassword
              [Krb5LoginModule] user entered username: myname
    principal is [email protected]
    Acquire TGT using AS Exchange
    EncryptionKey: keyType=3 keyBytes (hex dump)=0000: 38 1A 02 C8 EA 5B EA 67
    EncryptionKey: keyType=1 keyBytes (hex dump)=0000: 38 1A 02 C8 EA 5B EA 67
    EncryptionKey: keyType=16 keyBytes (hex dump)=0000: D5 F1 D5 DF AD 67 37 5D 3B AB A2 AE 89 1F 13 F1 .....g7];.......
    0010: FB EA AB AB D3 52 40 D6
    Commit Succeeded

    I have implemented the Jass tutorial JassAcn.java and it works fine when username and password are entered.
    However,when I try to use the ticket from the native cache I get the following error :
         Ticket could not be renewed : Message stream modified (41)     
    and then get prompted to enter the username followed by the password. If I enter the user name
    and password the authentication is successfull.
    I am using a Windows XP SP2 client and JDK 1.5 and a Win2000 server.
    The registry key "allowtgtsessionkey" on the client has been set to 0x01 as recommended by
    C:\jdk15help\docs\guide\security\jgss\tutorials\Troubleshooting.html
    The "Message stream modified" error seems to imply that
    checksum used to verify the data packet didn't match what was expected or some packets are being corrupted.
    I tried different default_checksum but to no avail.
    Has anyone encountered this before?
    My config file is as follows:
    JaasSample {
    com.sun.security.auth.module.Krb5LoginModule required
                        useTicketCache=true
                        renewTGT = true
                        debug=true;
    and the debug log
    Debug is true storeKey false useTicketCache true useKeyTab false doNotPrompt false ticketCache is null KeyTab is null refreshKrb5Config is false principal is null tryFirstPass is false useFirstPass is false storePass is false clearPass is false
    Acquire TGT from Cache
    Ticket could not be renewed : Message stream modified (41)
    Principal is null
    null credentials from Ticket Cache
    Kerberos username [myname]:
    Kerberos password for myname: mypassword
              [Krb5LoginModule] user entered username: myname
    principal is [email protected]
    Acquire TGT using AS Exchange
    EncryptionKey: keyType=3 keyBytes (hex dump)=0000: 38 1A 02 C8 EA 5B EA 67
    EncryptionKey: keyType=1 keyBytes (hex dump)=0000: 38 1A 02 C8 EA 5B EA 67
    EncryptionKey: keyType=16 keyBytes (hex dump)=0000: D5 F1 D5 DF AD 67 37 5D 3B AB A2 AE 89 1F 13 F1 .....g7];.......
    0010: FB EA AB AB D3 52 40 D6
    Commit Succeeded

  • Error from sample JAAS client: Message stream modified (41)

    I am trying to follow the tutorial for JAAS Authentication located here:
    http://java.sun.com/j2se/1.4.2/docs/guide/security/jgss/tutorials/AcnOnly.html
    I am trying to run the sample client JaasAcn.java but am getting a strange error when I try to log on to my Active Directory.
    I am using Java version: jre1.6.0_03
    I can login to Active Directory fine with the credentials I am providing, just not with this client, so I know the credentials are valid.
    Here is the error I get that I don't understand. Any suggestions would be very helpful, if you provide help for this
    The Error message is: [Krb5LoginModule] authentication failed
    Message stream modified (41)
    Here is the full output:
    C:\Progra~1\Java\jre1.6.0_03\bin\java -Dsun.security.krb5.debug=true -Djava.security.krb5.realm=PRSDev.local -Djava.security.krb5.kdc=192.168.40.72 -Djava.security.auth.login.config=jaas.conf JaasAcn
    Debug is true storeKey false useTicketCache false useKeyTab false doNotPrompt f
    alse ticketCache is null isInitiator true KeyTab is null refreshKrb5Config is fa
    lse principal is null tryFirstPass is false useFirstPass is false storePass is f
    alse clearPass is false
    Kerberos username [ILea]: sra
    Kerberos password for sra:
    [Krb5LoginModule] user entered username: sra
    Using builtin default etypes for default_tkt_enctypes
    default etypes for default_tkt_enctypes: 3 1 23 16 17.
    Acquire TGT using AS Exchange
    Using builtin default etypes for default_tkt_enctypes
    default etypes for default_tkt_enctypes: 3 1 23 16 17.
    KrbAsReq calling createMessage
    KrbAsReq in createMessage
    KrbKdcReq send: kdc=192.168.40.72 UDP:88, timeout=30000, number of retries =3, #bytes=144
    KDCCommunication: kdc=192.168.40.72 UDP:88, timeout=30000,Attempt =1, #bytes=144
    KrbKdcReq send: #bytes read=202
    KrbKdcReq send: #bytes read=202
    KDCRep: init() encoding tag is 126 req type is 11
    KRBError:sTime is Mon Dec 31 11:56:40 PST 2007 1199131000000
    suSec is 884978
    error code is 25
    error Message is Additional pre-authentication required
    realm is PRSDev.local
    sname is krbtgt/PRSDev.local
    eData provided.
    msgType is 30
    Pre-Authentication Data:PA-DATA type = 11
    PA-ETYPE-INFO etype = 23
    Pre-Authentication Data:PA-DATA type = 2
    PA-ENC-TIMESTAMP
    Pre-Authentication Data:PA-DATA type = 15
    AcquireTGT: PREAUTH FAILED/REQUIRED, re-send AS-REQ
    Using builtin default etypes for default_tkt_enctypes
    default etypes for default_tkt_enctypes: 3 1 23 16 17.
    Pre-Authentication: Set preferred etype = 23
    KrbAsReq salt is PRSDev.localsraPre-Authenticaton: find key for etype = 23
    AS-REQ: Add PA_ENC_TIMESTAMP now
    EType: sun.security.krb5.internal.crypto.ArcFourHmacEType
    KrbAsReq calling createMessage
    KrbAsReq in createMessage
    KrbKdcReq send: kdc=192.168.40.72 UDP:88, timeout=30000, number of retries =3, #bytes=210
    KDCCommunication: kdc=192.168.40.72 UDP:88, timeout=30000,Attempt =1, #bytes=210
    KrbKdcReq send: #bytes read=1182
    KrbKdcReq send: #bytes read=1182
    EType: sun.security.krb5.internal.crypto.ArcFourHmacEType[Krb5LoginModule] authentication failed
    Message stream modified (41)
    Authentication failed:
    Message stream modified (41)

    FYI I have fixed this problem (and moved on to the next error)
    I disabled the preauthentication requirement on the Active Directory account according to this article:
    http://technet2.microsoft.com/windowsserver/en/library/a0bd7520-ef2d-4de4-b487-e105a9de9e4f1033.mspx?mfr=true

  • Hi, be greatful for some help! Trying to change appleid in my app store. Whenever i try and manually add, i get the message, an unknown error has occured. Appreciate any tips!

    Problem solved!

    Since the question - actually not a question but merely a useless post - is almost one year old, the chances of the OP still getting email notifications for this "issues" are probably non existent and you are most likely not going to hear back from him.
    Sign out of your ID, restart the iPad and then try signing in again and see if that works. And since I have no clue what iOS your are running, this will be somewhat generic.
    Settings>Store>Tap your ID. Sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button. To back to Settings>Store>Apple ID - sign in again.

  • Manual refresh of queries in the Web

    Hello,
    in the web the default action following any change to the navigation state of the query-result is that an automatic refresh of the query is performed.
    We want to enter a series of navigation-steps. It would be inefficient for the query
    to automatically refresh each time a navigation-step was entered. Is it possible to halt the auto refresh from executing and instead switch to a manual refresh mode which means that the users can enter a series of navigation-steps and when they are ready, they simply press a refresh button?
    Thanks in advance!
    Regards,
    Birgit.

    Birgit,
    options could be ..
    1. Have the query automatically expand to a specific level for all queries...
    2. Have a prequery window where the selection parameters are specified and then let the user enter the drilldown level for the query and then take the values from this template and then pass the same to the main query as URL parameters .. you can refer the Web API 3.x to find out how to do the same and also search for Command Line URLs.. this option would require some innovative javascript and command Line specifications..
    Arun
    Assign points if useful

  • How can I manually refresh a Materialized View

    Hi,
    There's a materialized view created in 2006 as under:
    CREATE MATERIALIZED VIEW "schema"."mv_name"
    USING INDEX
    REFRESH FAST ON DEMAND
    WITH PRIMARY KEY USING DEFAULT LOCAL ROLLBACK SEGMENT
    DISABLE QUERY REWRITE AS SELECT * FROM "table_name@dblink;
    The problem is that the last refresh was done in Aug. I want to manually refresh this materialized view right now as there is a procedure based on this MV and its not showing the right data as the above materialized view has not been refreshed, so the data for this month is not showing.
    Please let me know how I can refresh that MV right now.
    Also do I need to change the refresh option. How can I change it so that the MV refreshes itself every second.
    Thanks

    Also do I need to change the refresh option. How can
    I change it so that the MV refreshes itself every
    second. Every second? Why do you want to do that?? Perhaps waht you really want is refresh the MV on commit.

  • HT201302 Even though there are over 200 photos on my ipad, after trying both methods of importing and connecting with a lead, a message appears saying that there are no photos on this device. Any ideas?

    Even though there are over 200 photos on my ipad, after trying both methods of importing and connecting with a lead, a message appears saying that there are no photos on this device. Any ideas?

    Did you connect your iPad to your computer then open the application on your computer that transfers photos from a camera? Your computer should recognize the iPad as a camera. All photos in the Camera Roll on the iPad should then be seen and you should be able to copy them to the computer using that application.
    Photos that were synced to your iPad by connecting to your syncing computer cannot be copied back this way as the master file for those photos are on the syncing computer.

  • When I try to delete a few messages in a message stream I marked them BUT I don't see a trash bin? I see a camera icone in place of the trash bin (in iphone 6 )

    When I try to delete a few messages in a message stream I marked them BUT I don't see a trash bin? I see a camera icone in place of the trash bin (in iphone 6 )

    Hi,
    If you have not already I would change the Slide size to something that has a 4:3 Ratio.
    The Buddy maybe trying to scroll left and right to see the whole slide although this shoud be controlled at you end.
    I would open the Connection Doctor during a Chat  (iChat's Video menu).
    Check that both Bit Rates are relatively stable (there is always some variance.)
    Anything over 5% particularly if over 500kbps is likely to be causing problems.
    You could try limiting the Bandwidth (iChat Menu > Preferences > Video section) to 500kbps at both ends
    It may pay to drop to 200kbps as a test.  (you may lose the Side by Side presentation at this speed).
    10:12 PM      Tuesday; June 21, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Manually Refresh Toplink cache

    Gurus,
    Can we write some servlet which will alllow to manually refresh toplink cache, on click of button.
    Do we have to change any settings in session.xml or server.xml.
    Please point me in right direction.
    Thanks
    gbk

    There is no straight forward way of refreshing all the objects in the cache (short of looping through all the objects in the cache and manually refreshing them).
    The most common approach to this issue is to determine which queries need refreshing and refresh those.
    If this solution isn't what you were looking for, please provide more detail and I will be happy to help you further.
    Peter

  • Any way to manually refresh list of network computers?

    Sometimes it takes quite a while for a new computer on the network to show up on the finder sidebar. Is there Any way to manually refresh list of network computers?

    i am running osx 10.8.4 and if you right click on finder and select "connect to server" you can easily find the servers you usually connect to or be able to find a new server manually by selecting browse.
    to prevent this from happening again the server that you want to remain connected to will be easily joined in the future by hitting the "+" button next to the desiered server name
    select "connect" from the bottom right
    next it will ask you to select the hard drive you wish to connect to. [in my setup i have two optons here 1. the hard drive which starts with "_" and also "user"
    in my case and most likely yours, select the hard drive.
    from this screen you will be prompted for password or to select guest.
    from this new menu depending on what type of connection you have with the server, whether it be (home) or (business) type selecting guest will connect without a password.
    but some office servers use password protected servers and for this you must know that servers connecting password. occasionally it is the same as the WiFi password but sometimes it can be more secure and require a different password.
    normally guest will do just fine as long as the server has not been set up with a lock on it.
    hoped this helped

  • HT1277 how do you eliminate a message stream so each email will be separate and not a continuation?

    How do you eliminate a message stream so an email response will be separted from related emails?

    Mail Preferences/Composing. Check (or uncheck) the appropriate boxes under 'Responding'.

  • "Event code: 3008 Event message: A configuration error has occurred" while accessing the sharepoint site.

    Hello All,
    Wish You Happy New Year to All in advance.
    while accessing the share point site i got the error message
    Server Error in '/' Application.
    Configuration Error
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
    Parser Error Message: The element <forms> may only appear once in this section.
    Source Error:
    Line 104: <!--<forms loginUrl="/_layouts/log-in.aspx" />-->
    Line 105: <forms loginUrl="/_layouts/log-in.aspx" />
    Line 106: <forms loginUrl="/_layouts/log-in.aspx" />
    Line 107: <forms loginUrl="/_layouts/log-in.aspx" />
    Line 108: </authentication>
    Source File: C:\Inetpub\wwwroot\wss\VirtualDirectories\4545\web.config    Line:
    106
    Version Information: Microsoft .NET Framework Version:2.0.50727.3662; ASP.NET Version:2.0.50727.3658
    i have found event message in the event log
    Event code: 3008
    Event message: A configuration error has occurred.
    Event ID: 523cefee6a0943948cf01b4e9f476fff
    Event sequence: 77
    Event occurrence: 76
    Event detail code: 0
    Exception information:
        Exception type: ConfigurationErrorsException
        Exception message: The element <forms> may only appear once in this section. (C:\Inetpub\wwwroot\wss\VirtualDirectories\4545\web.config line 106)
    Request information:
        Request URL: http://beesppesxapp70:4545/_vti_bin/sitedata.asmx
        Request path: /_vti_bin/sitedata.asmx
        User host address: 172.16.20.80
        User:  
        Is authenticated: False
        Authentication Type:  
        Thread account name: abc\wss_setup
    Thread information:
        Thread ID: 1
        Thread account name: abc\wss_setup
        Is impersonating: False
        Stack trace:    at System.Configuration.BaseConfigurationRecord.EvaluateOne(String[] keys, SectionInput input, Boolean isTrusted, FactoryRecord factoryRecord, SectionRecord sectionRecord, Object parentResult)
       at System.Configuration.BaseConfigurationRecord.Evaluate(FactoryRecord factoryRecord, SectionRecord sectionRecord, Object parentResult, Boolean getLkg, Boolean getRuntimeObject, Object& result, Object& resultRuntimeObject)
       at System.Configuration.BaseConfigurationRecord.GetSectionRecursive(String configKey, Boolean getLkg, Boolean checkPermission, Boolean getRuntimeObject, Boolean requestIsHere, Object& result, Object& resultRuntimeObject)
       at System.Configuration.BaseConfigurationRecord.GetSection(String configKey)
       at System.Web.Configuration.RuntimeConfig.GetSectionObject(String sectionName)
       at System.Web.Configuration.RuntimeConfig.GetSection(String sectionName, Type type, ResultsIndex index)
       at System.Web.Configuration.RuntimeConfig.get_Authentication()
       at System.Web.Security.FormsAuthenticationModule.Init(HttpApplication app)
       at System.Web.HttpApplication.InitModulesCommon()
       at System.Web.HttpApplication.InitInternal(HttpContext context, HttpApplicationState state, MethodInfo[] handlers)
       at System.Web.HttpApplicationFactory.GetNormalApplicationInstance(HttpContext context)
       at System.Web.HttpApplicationFactory.GetApplicationInstance(HttpContext context)
       at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
     kindly advise me
    Thank a lot in advance

    Hi,
    As per the error logs it seems you have the Form element twice in your web config file.  Just take one or the other one out. if you did any changes in web. config file please share and elaborate little more about the changes if you have made recently before
    the error.
    Krishana Kumar http://www.mosstechnet-kk.com
    Please mark the replies and Proposed as answer if they help and solve your issue

  • Stream closed error while testing a composite in EM

    HI,
    I have deployed a simple composite and wanted to test it in EM. I am getting a stream closed popup, not sure whats wrong?
    I have restarted the server and problem still persists.

    its actually remote server, I am able to deploy a simple HelloWorld composite and even able to see the same in Em.I can even browse through all the composites deployed there by many other people.But problem is when I try to test it its giving the Stream closed error.
    Is it something to do with access permissions, if so i would not have deployed it in first case..
    the pop up error message----
    Stream Closed
    For more information, please see the server's error log for
    an entry beginning with: Server Esception beginning with PPR, #14
    _______________________________

  • "Message from Webpage (error) There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."

    I created a site column at the root of my site and I have publishing turned on.  I selected the Hyperlink with formatting and constraints for publishing.
    I went to my subsite and added the column.  The request was to have "Open in new tab" for their hyperlinks.  I was able to get the column to be added and yesterday we added items without a problem. 
    The problem arose when, today, a user told me that he could not edit the hyperlink.  He has modify / delete permissions on this list.
    He would edit the item, in a custom list, and click on the address "click to add a new hyperlink" and then he would get the error below after succesfully putting in the Selected URL (http://www.xxxxxx.com), Open
    Link in New Window checkbox, the Display Text, and Tooltip:
    "Message from Webpage  There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."
    We are on IE 9.0.8.1112 x86, Windows 7 SP1 Enterprise Edition x64
    The farm is running SharePoint 2010 SP2 Enterprise Edition August 2013 CU Mark 2, 14.0.7106.5002
    and I saw in another post, below with someone who had a similar problem and the IISreset fixed it, as did this problem.  I wonder if this is resolved in the latest updated CU of SharePoint, the April 2014 CU?
    Summary from this link below: Comment out, below, in AssetPickers.js
    //callbackThis.VerifyAnchorElement(HtmlElement, Config);
    perform IISReset
    This is referenced in the item below:
    http://social.technet.microsoft.com/Forums/en-US/d51a3899-e8ea-475e-89e9-770db550c06e/message-from-webpage-error-there-was-an-error-in-the-browser-while-setting?forum=sharepointgeneralprevious
    TThThis is possibly the same information that I saw, possibly from the above link as reference.
    http://seanshares.com/post/69022029652/having-problems-with-sharepoint-publishing-links-after
    Again, if I update my SharePoint 2010 farm to April 2014 CU is this going to resolve the issue I have?
    I don't mind changing the JS file, however I'd like to know / see if there is anything official regarding this instead of my having to change files.
    Thank you!
    Matt

    We had the same issue after applying the SP2 & August CU. we open the case with MSFT and get the same resolution as you mentioned.
    I blog about this issue and having the office reference.
    Later MSFT release the Hotfix for this on December 10, 2013 which i am 100% positive should be part of future CUs.
    So if you apply the April CU then you will be fine.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Itunes says I must update to 11.1, but everytime I try to run it I get an error message saying:  "an error occured while running installation"  Help?

    Itunes says I must update to 11.1, but everytime I try to run it I get an error message saying:  "an error occured while running installation"  Help?

    The full message reads:  "Errors occurred during installation before iTunes could be configured.  Your system has not been modified.  To complete the installation, run the installer again.  Click finish to exit the installer."
    I have run it again and get the same message.  Have rebooted and tried again.  Same results.

Maybe you are looking for

  • Problem with reversal of Service entry Sheet

    Hi All, I am facing a problem with reversal of service entry sheet. The user has posted the document in dec 2009 and now the user wants to reverse the doc. I told the process how to reverse it. But when she is trying to revoke the acceptance, she is

  • Cannot open file from Bridge after saving in Photoshop CS3

    I was working on three images in Photoshop CS3, when I went to open them from Bridge for review, two of three files were reduced to tiny white squares with a dogear in the top right corner, a little blue bounding box containing three tinier red green

  • Is it possible to dynamically load an image/resources embed in a SWF?

    Hi all,    i have created a flex library project, just containing images (.GIF)...etc.    And i create another flex application project that merge the .GIF files into the final SWF application.   based on the current time, i want to display different

  • The "BACK ARROW" has disappered. How can I get it back ?

    Whenever I wanted to return to a previous page / site I could click on the return arrow at the top left hand side of the screen but now I cannot find it, How can I restore it ? Not sure if I can provide any more info

  • Reversing iTunes organized file structure

    Help! I just imported my entire music library and had checked "keep iTunes music folders organized" under preferences. In my "my music" folder I had my songs named artist - title (Johnny Cash - Ring of Fire)and now iTunes renamed all the songs by tra