String to Stream

Hi!
How do you convert a String to an InputStream?
I'm sending more than one XML file in a String through a Socket. I receive an Input Stream and convert it to a String. but i now need this String to be an Input Stream!
Andr�

Hi!
How do you convert a String to an InputStream?
I'm sending more than one XML file in a String through
a Socket. I receive an Input Stream and convert it to
a String. but i now need this String to be an Input
Stream!
Andr�Why ? Can't you use the original input stream (the socket's one)?

Similar Messages

  • Questions on Stream Closed

    Hi,
    I was just testing on this sequence of reopening the input stream. Im having an error when trying to read again to the System.in after I've closed in another function. Please advise what could be the cause of it. Here's the code and output. Thanks.
    import java.io.InputStreamReader;
    import java.io.IOException;
    public class Streams{
        public static void main(String[] args){
            Streams s = new Streams();
            s.closeOne();
            s.closeTwo();
        public void closeOne(){
            InputStreamReader ir = new InputStreamReader(System.in);
            try{
                ir.read();
                ir.close();
            }catch(IOException io){}
        public void closeTwo(){
            InputStreamReader ir = new InputStreamReader(System.in);
            try{
                ir.read();
                ir.close();
            }catch(IOException ioe){ ioe.printStackTrace(); }
    java Streams
    3
    java.io.IOException: Stream closed
            at java.io.BufferedInputStream.ensureOpen(BufferedInputStream.java:120)
            at java.io.BufferedInputStream.read(BufferedInputStream.java:270)
            at sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:408)
            at sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:450)
            at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:182)
            at sun.nio.cs.StreamDecoder.read0(StreamDecoder.java:131)
            at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:117)
            at java.io.InputStreamReader.read(InputStreamReader.java:151)
            at Streams.closeTwo(Streams.java:21)
            at Streams.main(Streams.java:7)Regards,
    Rhani

    java.io.IOException: Stream closed
    Oh come on. How mch more clearer can the error
    message be? Can you walk through a door after ithas
    been closed?May I interest you in some Midol?Bite me!I'm not big on seafood.
    I just don't think it's that bad a question.

  • Open/edit file

    I need to open a file, and edit part of the file based on some static text in that file. For example, lets say the text file looks something like this:
    a
    b
    c
    1
    2
    1
    a
    b
    c
    I need a program that will open the file, and delete everything from the first 1 to the last 1, and do nothing if no 1's exist.
    Afterwards, save the existing file.
    Can someone please show me how to do this?
    Thanks.

    I finished writing the program I was asking about. In case anyone needs anything like this in the future, I have posted the program here(w/ a few modifications):
    import java.io.IOException;
    import java.io.BufferedReader;
    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.BufferedWriter;
    import java.io.File;
    import java.util.Collection;
    import java.util.ArrayList;
    public class ABC{
       // Main method
       public static void main(String args[]) {
          // Stream to read file
          FileReader fr;
          FileWriter fw;
          Collection<String> lineStorage = new ArrayList<String>();
          String line = "";
          boolean finishedRemoving = true;
          final String filePath = "b.xml";
          try {
             // Open an input stream
             fr = new FileReader(filePath);
             // Read a line of text
             BufferedReader br = new BufferedReader(fr);
             while (br.ready()) { //while there's another line
                line = br.readLine();
                if (line.compareToIgnoreCase("  <app>") == 0) {
                   finishedRemoving = false;
                   continue;
                } else if (line.compareToIgnoreCase("  </app>") == 0) {
                   finishedRemoving = true;
                   continue;
                if (finishedRemoving) {
                   lineStorage.add(line);
             // Close our input stream
             fr.close();
             fw = new FileWriter(filePath);
             BufferedWriter bw = new BufferedWriter(fw);
             for (String aLineStorage : lineStorage) {
                bw.write(aLineStorage);
                bw.newLine();
             bw.flush();
             fw.close();
          // Catches any error conditions
          catch (IOException e) {
             System.err.println("Unable to read from file");
             System.exit(-1);
    }

  • SharePoint 2010 Slow query duration when setting metadata on folder

    I'm getting "Slow Query Duration" when I programmatically set a default value for a default field to apply to documents at a specified location on a SP 2010 library.
    It has nothing to do with performance most probably as I'm getting this working with a folder within a library with only a 1 document on a UAT environment. Front-end: AMD Opteron 6174 2.20GHz x 2 + 8gb RAM, Back-end: AMD Opteron 6174 2.20GHz x 2 + 16gb
    RAM.
    The specific line of code causing this is:
    folderMetadata.SetFieldDefault(createdFolder, fieldData.Field.InternalName, thisFieldTextValue);
    What SP says:
    02/17/2014 16:29:03.24 w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa42 Monitorable A large block of literal text was sent to sql. This can result in blocking in sql and excessive memory use on the front end. Verify that no binary parameters are
    being passed as literals, and consider breaking up batches into smaller components. If this request is for a SharePoint list or list item, you may be able to resolve this by reducing the number of fields.
    02/17/2014 16:29:03.24 w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa43 High Slow Query Duration: 254.705556153086
    02/17/2014 16:29:03.26 w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High Slow Query StackTrace-Managed: at Microsoft.SharePoint.Utilities.SqlSession.OnPostExecuteCommand(SqlCommand command, SqlQueryData monitoringData) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand
    command, CommandBehavior behavior, SqlQueryData monitoringData, Boolean retryForDeadLock) at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock) at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) at Microsoft.SharePoint.Library.SPRequestInternalClass.PutFile(String
    bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int32 cbFile, Object punkFFM, PutFileOpt PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Obje...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ...ct varProperties, String bstrCheckinComment, Byte partitionToCheck, Int64 fragmentIdToCheck, String bstrCsvPartitionsToDelete, String bstrLockIdMatch, String bstEtagToMatch,
    Int32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields, Guid gNewDocId, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, Int32& pbIgnoredReqProps) at Microsoft.SharePoint.Library.SPRequest.PutFile(String
    bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int32 cbFile, Object punkFFM, PutFileOpt PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties,
    String bstrCheckinComment, Byte partitionToCheck, Int64 fragmentIdToCheck...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ..., String bstrCsvPartitionsToDelete, String bstrLockIdMatch, String bstEtagToMatch, Int32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields,
    Guid gNewDocId, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, Int32& pbIgnoredReqProps) at Microsoft.SharePoint.SPFile.SaveBinaryStreamInternal(Stream file, String checkInComment, Boolean checkRequiredFields,
    Boolean autoCheckoutOnInvalidData, Boolean bIsMigrate, Boolean bIsPublish, Boolean bForceCreateVersion, String lockIdMatch, SPUser modifiedBy, DateTime timeLastModified, Object varProperties, SPFileFragmentPartition partitionToCheck, SPFileFragmentId fragmentIdToCheck,
    SPFileFragmentPartition[] partitionsToDelete, Stream formatMetadata, String etagToMatch, Boolea...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ...n bSyncUpdate, SPLockType lockType, String lockId, TimeSpan lockTimeout, Boolean refreshLock, Boolean requireWebFilePermissions, Boolean failIfRequiredCheckout, Boolean
    validateReqFields, Guid newDocId, SPVirusCheckStatus& virusCheckStatus, String& virusCheckMessage, String& etagReturn, Boolean& ignoredRequiredProps) at Microsoft.SharePoint.SPFile.SaveBinary(Stream file, Boolean checkRequiredFields, Boolean
    createVersion, String etagMatch, String lockIdMatch, Stream fileFormatMetaInfo, Boolean requireWebFilePermissions, String& etagNew) at Microsoft.SharePoint.SPFile.SaveBinary(Byte[] file) at Microsoft.Office.DocumentManagement.MetadataDefaults.Update()
    at TWINSWCFAPI.LibraryManager.CreatePathFromFolderCollection(String fullPathUrl, SPListItem item, SPWeb web, Dictionary2...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ... folderToCreate, Boolean setDefaultValues, Boolean mainFolder) at TWINSWCFAPI.LibraryManager.CreatePathFromFolderCollection(String fullPathUrl, List1 resultDataList,
    SPListItem item, SPWeb web, Boolean setDefaultValues, Boolean mainFolder) at TWINSWCFAPI.LibraryManager.CreateExtraFolders(List1
    pathResultDataList, List1 resultDataList, String fullPathUrl, SPWeb web, SPListItem item, Boolean setDefaultValues) at TWINSWCFAPI.LibraryManager.CreateFolders(SPWeb web, List1
    pathResultDataList, SPListItem item, String path, Boolean setDefaultValues) at TWINSWCFAPI.LibraryManager.MoveFileAfterMetaChange(SPListItem item) at TWINSWCFAPI.DocMetadataChangeEventReceiver.DocMetadataChangeEventReceiver.FileDocument(SPWeb web, SPListItem
    listItem) at TWINSWCFAPI.DocMetadataChang...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ...eEventReceiver.DocMetadataChangeEventReceiver.ItemCheckedIn(SPItemEventProperties properties) at Microsoft.SharePoint.SPEventManager.RunItemEventReceiver(SPItemEventReceiver
    receiver, SPUserCodeInfo userCodeInfo, SPItemEventProperties properties, SPEventContext context, String receiverData) at Microsoft.SharePoint.SPEventManager.RunItemEventReceiverHelper(Object receiver, SPUserCodeInfo userCodeInfo, Object properties, SPEventContext
    context, String receiverData) at Microsoft.SharePoint.SPEventManager.<>c__DisplayClassc1.b__6() at Microsoft.SharePoint.SPSecurity.RunAsUser(SPUserToken userToken, Boolean bResetContext, WaitCallback code, Object param) at Microsoft.SharePoint.SPEventManager.InvokeEventReceivers[ReceiverType](SPUserToken
    userToken, Gu...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ...id tranLockerId, RunEventReceiver runEventReceiver, Object receivers, Object properties, Boolean checkCancel) at Microsoft.SharePoint.SPEventManager.InvokeEventReceivers[ReceiverType](Byte[]
    userTokenBytes, Guid tranLockerId, RunEventReceiver runEventReceiver, Object receivers, Object properties, Boolean checkCancel) at Microsoft.SharePoint.SPEventManager.HandleEventCallback[ReceiverType,PropertiesType](Object callbackData) at Microsoft.SharePoint.Utilities.SPThreadPool.WaitCallbackWrapper(Object
    state) at System.Threading.ExecutionContext.runTryCode(Object userData) at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData) at System.Threading.ExecutionContext.Run(ExecutionContext
    execu...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ...tionContext, ContextCallback callback, Object state) at System.Threading._ThreadPoolWaitCallback.PerformWaitCallbackInternal(_ThreadPoolWaitCallback tpWaitCallBack)
    at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)
    02/17/2014 16:29:03.26 w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzku High ConnectionString: 'Data Source=PFC-SQLUAT-202;Initial Catalog=TWINSDMS_LondonDivision_Content;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect
    Timeout=15' ConnectionState: Open ConnectionTimeout: 15
    02/17/2014 16:29:03.26 w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzkv High SqlCommand: 'DECLARE @@iRet int;BEGIN TRAN EXEC @@iRet = proc_WriteChunkToAllDocStreams @wssp0, @wssp1, @wssp2, @wssp3, @wssp4, @wssp5, @wssp6;IF @@iRet <> 0 GOTO
    done; DECLARE @@S uniqueidentifier; DECLARE @@W uniqueidentifier; DECLARE @@DocId uniqueidentifier; DECLARE @@DoclibRowId int; DECLARE @@Level tinyint; DECLARE @@DocUIVersion int;DECLARE @@IsCurrentVersion bit; DECLARE @DN nvarchar(256); DECLARE @LN nvarchar(128);
    DECLARE @FU nvarchar(260); SET @DN=@wssp7;SET @@iRet=0; ;SET @LN=@wssp8;SET @FU=@wssp9;SET @@S=@wssp10;SET @@W=@wssp11;SET @@DocUIVersion = 512;IF @@iRet <> 0 GOTO done; ;SET @@Level =@wssp12; EXEC @@iRet = proc_UpdateDocument @@S, @@W, @DN, @LN, @wssp13,
    @wssp14, @wssp15, @wssp16, @wssp17, @wssp18, @wssp19, @wssp20, @wssp21, @wssp22, @wssp23, @wssp24, @wssp25, @wssp26,...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzkv High ... @wssp27, @wssp28, @wssp29, @wssp30, @wssp31, @wssp32, @wssp33, @wssp34, @wssp35, @wssp36, @wssp37, @wssp38, @wssp39, @wssp40, @wssp41, @wssp42, @wssp43, @wssp44, @wssp45,
    @wssp46, @wssp47, @wssp48, @wssp49, @wssp50, @wssp51, @@DocId OUTPUT, @@Level OUTPUT , @@DoclibRowId OUTPUT,@wssp52 OUTPUT,@wssp53 OUTPUT,@wssp54 OUTPUT,@wssp55 OUTPUT ; IF @@iRet <> 0 GOTO done; EXEC @@iRet = proc_TransferStream @@S, @@DocId, @@Level,
    @wssp56, @wssp57, @wssp58; IF @@iRet <> 0 GOTO done; EXEC proc_AL @@S,@DN,@LN,@@Level,0,N'London/Broking/Documents/E/E _ E Foods Corporation',N'2012',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,1,N'London/Broking/Documents/E',N'E _ E Foods Corporation',72,85,83,1,N'';EXEC
    proc_AL @@S,@DN,@LN,@@Level,2,N'London/Broking/Documents/E/E _ E Foods Corporation',N'2013',72,85,...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzkv High ...83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,3,N'London/Broking/Documents/E/E _ E Foods Corporation/2013',N'QA11G029601',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,4,N'London/Broking/Documents/K',N'Konig
    _ Reeker',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,5,N'London/Broking/Documents/K/Konig _ Reeker',N'2012',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,6,N'London/Broking/Documents/K/Konig _ Reeker/2012',N'QA12E013201',72,85,83,1,N'';EXEC proc_AL
    @@S,@DN,@LN,@@Level,7,N'London/Broking/Documents/K/Konig _ Reeker/2012',N'A12EL00790',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,8,N'London/Broking/Documents/K/Konig _ Reeker/2012',N'A12DA00720',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,9,N'London/Broking/Documents/K/Konig
    _ Reeker/2012',N'A12DC00800',72,85,83,1,N'';EXEC proc...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzkv High ..._AL @@S,@DN,@LN,@@Level,10,N'London/Broking/Documents/A',N'Ace European Group Limited',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,11,N'London/Broking/Documents/A/Ace
    European Group Limited',N'2012',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,12,N'London/Broking/Documents/A/Ace European Group Limited/2012',N'JXB88435',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,13,N'London/Broking/Documents/A/Ace European Group
    Limited/2012/JXB88435/Closings',N'PRM 1',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,14,N'London/Broking/Documents/A/Ace European Group Limited/2012/JXB88435/Closings',N'PRM 2',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,15,N'London/Broking/Documents/C',N'C
    Moore-Gordon',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,16,N'London/Broking/Documents/C/C Moore-Gordo...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzkv High ...n',N'2012',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,17,N'London/Broking/Documents/C/C Moore-Gordon/2012',N'QY13P700201',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,18,N'London/Broking/Documents/C/C
    Moore-Gordon',N'2013',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,19,N'London/Broking/Documents/C/C Moore-Gordon/2013',N'Y13PF07010',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,20,N'London/Broking/Documents/A/Ace European Group Limited/2012/JXB88435/Closings',N'ARP
    7',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,21,N'London/Broking/Documents/A/Ace European Group Limited/2012/JXB88435/Closings',N'ARP 8',72,85,83,1,N'';EXEC proc_AL . . .
    Thanks in advance A

    SharePoint and SQL Server installed on same server or how is the setup?
    i would start to enable the developer dashboard, analyze the report of the developer dashboard...
    you will see if any webpart, or page or sql server query taking too much time.
    http://www.sharepoint-journey.com/developer-dashboard-in-sharepoint-2013.html
    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

  • SoapEndPoint do not work

    hi,
    i installed adobe livecycle forms 7.2 (win 2003 and jboss). i used turnkey installation to install this server.
    i am trying to use .net soap assembly to render the forms, but it do not work.
    i am using a sample from "SmartDoc Technologies".
    for the soapendpoint i set following value:
    formServer.setSoapEndPoint("http://localhost:8080/jboss_net/services/AdobeFSService")
    renderForm(...) throws an exception (see below). the same exception is thrown after i changed the url of soapendpoint to string like "test_test".
    how can i determine if the soap interface was installed successfully?
    jboss and mysql are running, i can login on "http://localhost:8080/adminui"
    need help.
    thanks
    Event Type: Error
    Event Source: mii.EVN.Barcode.Forms
    Event Category: None
    Event ID: 0
    Date: 18.09.2007
    Time: 11:55:23
    User: N/A
    Computer: SMIILAB3801
    Description:
    Safe handle has been closed
    at System.Net.UnsafeNclNativeMethods.OSSOCK.setsockopt(SafeCloseSocket socketHandle, SocketOptionLevel optionLevel, SocketOptionName optionName, Int32& optionValue, Int32 optionLength)
    at System.Net.Sockets.Socket.SetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName, Int32 optionValue, Boolean silent)
    at System.Net.Sockets.NetworkStream.SetSocketTimeoutOption(SocketShutdown mode, Int32 timeout, Boolean silent)
    at System.Net.ConnectStream.SafeSetSocketTimeout(SocketShutdown mode)
    at System.Net.ConnectStream.Read(Byte[] buffer, Int32 offset, Int32 size)
    at System.Xml.XmlTextReaderImpl.InitStreamInput(Uri baseUri, String baseUriStr, Stream stream, Byte[] bytes, Int32 byteCount, Encoding encoding)
    at System.Xml.XmlTextReaderImpl..ctor(String url, Stream input, XmlNameTable nt)
    at System.Xml.XmlDocument.Load(Stream inStream)
    at SoapClient.FSSoapClient.ReachServerRequest(String SoapMethod, Byte[] vRequest)
    at SoapClient.FSSoapClient.XMLGetForm(Byte[] vRequest)
    at SoapClient.FSSoapClient.renderForm(String sFormQuery, String sFormPreference, Byte[] cXMLData, String sOptions, String sUserAgent, String sApplicationWebRoot, String sTargetURL, String sContentRootURI, String sBaseURL)
    at Service.CreateADOBEForm(String TemplateName, String XMLContent) in c:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\WebSites\mii.EVN.Barcode.Forms\App_Code\Service.cs:line 59
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.

    I'm sorry but your post doesn't make much sense in English. You may want to try posting again in your native language.
    Best of luck.

  • Error while pulling report for particular dates

    hi
    i am trying to fetch report for the first quarter in incident management --> incident analyst i got an error the below error:
    On in-depth analysis i found out that this error occurs in the month Jan and Feb 2014 hence i am not able to pull the complete report of quarter. Kindly help me to resolve this issue.
    Date: 14-04-2014 15:13:11
    Application: System Center Service Manager Console
    Application Version: 7.0.6555.0
    Severity: Error
    Message: An error has occurred during report processing.
    System.Exception: An error has occurred during report processing. ---> System.Exception: Query execution failed for dataset 'Data_Incidents'. ---> System.Exception: For more information about this error navigate to the report server on the local server
    machine, or enable remote errors
       --- End of inner exception stack trace ---
       --- End of inner exception stack trace ---
       at Microsoft.Reporting.WinForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ProcessingThread.ProcessThreadMain(Object arg)
    System.Exception: Query execution failed for dataset 'Data_Incidents'. ---> System.Exception: For more information about this error navigate to the report server on the local server machine, or enable remote errors
       --- End of inner exception stack trace ---
    System.Exception: For more information about this error navigate to the report server on the local server machine, or enable remote errors
    Micheal Nishit

    Hi All,
    Any pointers or suggestions for this issue ??
    Is there a setting/option avialable in CMC which could resolve these errors.
    Or, user has to login once to infoview in all circumstances to avoid these errors.
    Thanks,
    Chandra

  • Server Error in '/Report Manager' Application: System.IO.IOException: The file exists. When trying to export a completed report.

    I am using SQL Server 2005.  I run a report which runs and renders perfectly. But I am unable to export it into any format. It fails with the following error:
    Server Error in '/Reports' Application. 
    The file exists.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.IO.IOException: The file exists.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [IOException: The file exists.
    Microsoft.Reporting.WebForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension) +489
    Microsoft.Reporting.WebForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension) +924
    Microsoft.Reporting.WebForms.ServerReportControlSource.RenderReport(String format, String deviceInfo, NameValueCollection additionalParams, String& mimeType, String& fileExtension) +84
    Microsoft.Reporting.WebForms.ExportOperation.PerformOperation(NameValueCollection urlQuery, HttpResponse response) +153
    Microsoft.Reporting.WebForms.HttpHandler.ProcessRequest(HttpContext context) +75
    System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +303
    System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64
    I have seen this question asked several years ago, but have never seen a response that suggests what the issue may be.
    I would really appreciate any help in resolving this problem.\
    The application has been running from quite some time and this problem started just recently.
    Thank You.
    -Rick

    Hi Rick,
    According to your description, the exception “System.IO.IOException: The file exists.” is thrown out when you export the report on report manager.
    Generally, the exception is thrown out because there are more than 65535 files without deleting previous temporary files in our temporary directory. Based on my research, it has reported the same issue when exporting the report on report manager, and deleting all
    temp files from C:\Windows\Temp could resolve the issue. I would also suggest you remove the temporary files from C:\Users\<username>\AppData\Local\Temp. Please refer to the first comment at this link:
    System.IO.IOException: The file exists
    Reference:
    Path.GetTempFileName Method
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • [Forum FAQ] Troubleshooting "An error has occurred during report processing" message when viewing SCCM reports

    Symptom:
    When you view a report with SCCM, you may encounter the following error message:
    An error has occurred during report processing.
    Under the details box, you can see the detailed error information as below:
    System.Web.Services.Protocols.SoapException: The report server has encountered a configuration error. Logon failed for the unattended
    execution account. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration error. Logon failed for the unattended execution account. ---> Microsoft.ReportingServices.Diagnostics.Utilities.LogonFailedException:
    Log on failed. Ensure the user name and password are correct. ---> System.ComponentModel.Win32Exception: The user name or password is incorrect
    at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetReportParameters(String Report, String HistoryID, Boolean ForRendering, ParameterValue[] Values, DataSourceCredentials[] Credentials, ParameterInfoCollection& Parameters)
    at Microsoft.ReportingServices.WebServer.ReportingService2005.GetReportParameters(String Report, String HistoryID, Boolean ForRendering, ParameterValue[] Values, DataSourceCredentials[] Credentials, ReportParameter[]& Parameters)
    Figure 1 is the screenshot of the error message in SCCM:
    Figure 1.
    Cause:
    According to the detailed error message, it indicates that “The report server has encountered a configuration error. Logon failed for the unattended execution account.”
    and “The user name or password is incorrect”, so this issue would be caused by the mismatched credential stored in report server.
    Solution:
    To solve this issue, you can follow the steps below:
      1.
    Access Report Manager URL on your reporting server.
    From figure 2, you can see that the URL for Report Manager is
    http://SCCM:80/Reports
    in our lab environment. You can check your Report Manager URL in Reporting Services Configuration Manager.
    Figure 2.
      2.
    Find out the date source {5C6358F2-4BB6-4a1b-A16E-8D96795D8602} and access it.
    Figure 3.
    3. Test connection (Figure 4)
    You can have a test connection to check whether the credentials stored in the report server are correct or not.
    Figure 4.
    4.
    Modify the password or choose another authentication method
    If you want to change the password, please make sure that password is the same as the one that you have set for that user account in the domain.
    5. Confirm connection
    After you change the password, you can test connection again. From figure 5, we can see that connection created successfully.
    Figure 5.
    After all the steps above, there is no error message when viewing the report. (Figure 6)
    Figure 6.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    ok . the user name is sccm.admin this user have the assignment to run as a services, he is a domain admin, on the sql server this user have the sysadmin, i create the reporting with the Reporting Services Configuration Manager, and on the Database i use
    the sccm.admin to create the new database, on the Service Account i use sccm.admin user, also this user have local administrator on the SCCM server, + i give him the dbreader on All the database on the SCCM server witch it also the SQL server, i add the sccm.admin
    on the reporting web the system role and check the all settings give him full permissions
    do i make my self clear ? (my English is not so bright )
    now from the SCCM 2012 console , some reports run perfectly, and some run and trow this error at me
    Microsoft.Reporting.WinForms.ReportServerException
    An error has occurred during report processing. (rsProcessingAborted)
    Stack Trace:
       at Microsoft.Reporting.WinForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.AsyncMainStreamRenderingOperation.RenderServerReport(ServerReport report)
       at Microsoft.Reporting.WinForms.AsyncRenderingOperation.PerformOperation()
       at Microsoft.Reporting.WinForms.ReportViewer.AsyncReportOperationWrapper.PerformOperation()
       at Microsoft.Reporting.WinForms.ProcessingThread.ProcessThreadMain(Object arg)
    this poor gay have the same problem
    An error has occurred during report processing. (rsProcessingAborted)

  • To write to a particular position in file

    I have to write objects involved with the diagram in to a XML file.as new components are drawn in the diagram corresponding objects will get added to XML file.For the Object to xml conversion i am using Xstream API.
    In have to insert this portion
    *<Rstmain.gui.TextRectangle>*
      *<x>15</x>*
      *<y>2350</y>*
      *<width>110</width>*
      *<height>63</height>*
      *<rectNo>0</rectNo>*
      *<text__Rectangle>With its distant orbit-50 percent farther from the sun </text__Rectangle>*
    *</Rstmain.gui.TextRectangle>*
    above </temp>
    *<temp>*
    <string-array>
      <string>With its distant orbit-50 percent farther from the sun </string>
      <string>than earth-and slim atmospheric blanket,mars experiences frigid weather conditions.Surface temperatures typically average about -60 d</string>
      <string>egrees Celsius(-76 degrees Fahrenheit)at the equator and can dip to -123 degrees C nea</string>
      <string>r the poles.Only the midday sun at tropic</string>
      <string>al lattitudes is warm enough to thaw ice on occasion,but any liquid water formed in </string>
      <string>this way would evaporate almost </string>
      <string>instantly because of low atmospheric pressure. </string>
    </string-array>
    <int-array>
      <int>55</int>
      <int>189</int>
      <int>276</int>
      <int>318</int>
      <int>403</int>
      <int>436</int>
      <int>485</int>
    </int-array>
    *</temp>*
    <Rstmain.gui.TextRectangle>
      <x>15</x>
      <y>2350</y>
      <width>110</width>
      <height>63</height>
      <rectNo>0</rectNo>
      <text__Rectangle>With its distant orbit-50 percent farther from the sun </text__Rectangle>
    </Rstmain.gui.TextRectangle>I cant use random access file for this because the lines in xml file are not of equal length.
    currently i am using this approach.convert each object separately to xml and then write to a file.
    tempOut = new BufferedWriter(new FileWriter(tempFileXML, true));
                         tempOut.newLine();
                        String txtRectXml = stream.toXML(textRectangle);
                        tempOut.write(txtRectXml);
                        tempOut.close();please suggest some method for solving my problem...

    Thanks...I could solve it by another approach...
    Hope it will be helpful for others
    create Root Node first.tempFileXML is the fileName here.
    String root="temp";
            documentBuilderFactory = DocumentBuilderFactory.newInstance();
            documentBuilder = documentBuilderFactory.newDocumentBuilder();
            document = documentBuilder.newDocument();
            rootElement = document.createElement(root);
            document.appendChild(rootElement);
            writeXmlFile(document,tempFileXML);//writing document to file...
             For appending one document to another
    txtXml is string Object comprising a xml document
    txtXml is
    <string-array>
      <string>With its distant orbit-50 percent farther from the sun than</string>
      <string> earth-and slim atmospheric blanket,mars experiences frigid weather conditions.Surface temperatures typically average</string>
      <string> about -60 degrees Celsius(-76 degrees Fahrenheit)at the equator and can dip to -123 degrees C near the poles.</string>
      <string>Only the midday sun at tropical lattitudes is warm </string>
      <string>enough to thaw ice on occasion,but any liquid water formed in this way</string>
      <string> would evaporate almost instantly because of low atmospheric pressure. </string>
    </string-array>
    //Creating new instances of document builder factory
                documentBuilderFactory2 = DocumentBuilderFactory.newInstance();
                documentBuilder2 = documentBuilderFactory.newDocumentBuilder();
               inStream = new InputSource();
               inStream.setCharacterStream(new StringReader(txtXml)); 
               document2=documentBuilder2.parse(inStream);
               document=documentBuilder.parse(tempFileXML);
               document.getFirstChild().appendChild(document.importNode(document2.getDocumentElement(),true));
               writeXmlFile(document,tempFileXML);
                writeXmlFile I got from another forum posting
    public static void writeXmlFile(Document doc, String filename) {
            try {
                // Prepare the DOM document for writing
                Source source = new DOMSource(doc);
                // Prepare the output file
                File file = new File(filename);
                Result result = new StreamResult(file);
                // Write the DOM document to the file
                Transformer xformer = TransformerFactory.newInstance().newTransformer();
                xformer.transform(source, result);
            } catch (TransformerConfigurationException e) {
            } catch (TransformerException e) {
        }

  • Made an avi, but it wont play :(

    Hi!
    I have modified jpegstomovie to create a .mov file OR an .avi file. While I have seemingly gotten through all of the compile errors, and runtime errors, my outputted avi file does not play.
    instead, it opens up in windows media player, and windows media player does not throw an error. It does seem to want to play the file. However while it has the 2 seconds of video listed properly, and the play button seems depressed, I cannot see the video, and the timeline of the video does not proceed forward.
    I found the bug fixes for the avi time frame thing, but I do not believe that it has fixed my problem. Below I decided to copy and past the code in hopes of desperation that someone will have the answer for me...
    i still send a vector of jpeg images...
    thanks for the help
    import java.io.*;
    import java.util.*;
    import java.awt.Dimension;
    import javax.media.*;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import javax.media.datasink.*;
    import javax.media.format.VideoFormat;
    * @author AOrnstei
    * TODO To change the template for this generated type comment go to
    * Window - Preferences - Java - Code Style - Code Templates
          * This program takes a list of JPEG image files and convert them into
          * a QuickTime movie.
         public class JpegsToMovie implements ControllerListener, DataSinkListener {
             public boolean doIt(int width, int height, int frameRate, Vector inFiles, MediaLocator outML, String strSave) {
              ImageDataSource ids = new ImageDataSource(width, height, frameRate, inFiles, strSave);
              Processor p;
              try {
                  System.err.println("- create processor for the image datasource ...");
                  p = Manager.createProcessor(ids);
              } catch (Exception e) {
                  System.err.println("Cannot create a processor from the data source.");
                  return false;
              p.addControllerListener(this);
              // Put the Processor into configured state so we can set
              // some processing options on the processor.
              p.configure();
              if (!waitForState(p, p.Configured)) {
                  System.err.println("Failed to configure the processor.");
                  return false;
              if (strSave.endsWith(".mov")){
                   //Set the output content descriptor to QuickTime.
                   p.setContentDescriptor(new ContentDescriptor(FileTypeDescriptor.QUICKTIME));
              }else if (strSave.endsWith(".avi")){
                   p.setContentDescriptor(new ContentDescriptor(FileTypeDescriptor.MSVIDEO));
              // Query for the processor for supported formats.
              // Then set it on the processor.
              TrackControl tcs[] = p.getTrackControls();
              Format f[] = tcs[0].getSupportedFormats();
              if (f == null || f.length <= 0) {
                  System.err.println("The mux does not support the input format: " + tcs[0].getFormat());
                  return false;
              tcs[0].setFormat(f[0]);
              System.err.println("Setting the track format to: " + f[0]);
              // We are done with programming the processor.  Let's just
              // realize it.
              p.realize();
              if (!waitForState(p, p.Realized)) {
                  System.err.println("Failed to realize the processor.");
                  return false;
              // Now, we'll need to create a DataSink.
              DataSink dsink;
              if ((dsink = createDataSink(p, outML)) == null) {
                  System.err.println("Failed to create a DataSink for the given output MediaLocator: " + outML);
                  return false;
              dsink.addDataSinkListener(this);
              fileDone = false;
              System.err.println("start processing...");
              // OK, we can now start the actual transcoding.
              try {
                  p.start();
                  dsink.start();
              } catch (IOException e) {
                  System.err.println("IO error during processing");
                  return false;
              // Wait for EndOfStream event.
              waitForFileDone();
              // Cleanup.
              try {
                  dsink.close();
              } catch (Exception e) {}
              p.removeControllerListener(this);
              System.err.println("...done processing.");
              return true;
              * Create the DataSink.
             DataSink createDataSink(Processor p, MediaLocator outML) {
              DataSource ds;
              if ((ds = p.getDataOutput()) == null) {
                  System.err.println("Something is really wrong: the processor does not have an output DataSource");
                  return null;
              System.out.println("outML  -------- " + outML.toString());
              DataSink dsink;
              try {
                  System.err.println("- create DataSink for: " + outML);
                  dsink = Manager.createDataSink(ds, outML);
                  dsink.open();
              } catch (Exception e) {
                  System.err.println("Cannot create the DataSink: " + e);
                  return null;
              return dsink;
             Object waitSync = new Object();
             boolean stateTransitionOK = true;
              * Block until the processor has transitioned to the given state.
              * Return false if the transition failed.
             boolean waitForState(Processor p, int state) {
              synchronized (waitSync) {
                  try {
                   while (p.getState() < state && stateTransitionOK)
                       waitSync.wait();
                  } catch (Exception e) {}
              return stateTransitionOK;
              * Controller Listener.
             public void controllerUpdate(ControllerEvent evt) {
                   if (evt instanceof ConfigureCompleteEvent ||
                       evt instanceof RealizeCompleteEvent ||
                       evt instanceof PrefetchCompleteEvent) {
                       synchronized (waitSync) {
                        stateTransitionOK = true;
                        waitSync.notifyAll();
                   } else if (evt instanceof ResourceUnavailableEvent) {
                       synchronized (waitSync) {
                        stateTransitionOK = false;
                        waitSync.notifyAll();
                   } else if (evt instanceof EndOfMediaEvent) {
                       evt.getSourceController().stop();
                       evt.getSourceController().close();
             Object waitFileSync = new Object();
             boolean fileDone = false;
             boolean fileSuccess = true;
              * Block until file writing is done.
             boolean waitForFileDone() {
              synchronized (waitFileSync) {
                  try {
                   while (!fileDone)
                       waitFileSync.wait();
                  } catch (Exception e) {}
              return fileSuccess;
              * Event handler for the file writer.
             public void dataSinkUpdate(DataSinkEvent evt) {
              if (evt instanceof EndOfStreamEvent) {
                  synchronized (waitFileSync) {
                   fileDone = true;
                   waitFileSync.notifyAll();
              } else if (evt instanceof DataSinkErrorEvent) {
                  synchronized (waitFileSync) {
                   fileDone = true;
                   fileSuccess = false;
                   waitFileSync.notifyAll();
    //java JpegImagesToMovie -w <width> -h <height> -f <frame rate> -o <output URL> <input JPEG file 1> <input JPEG file 2> ...
             //adam - make movie from vector of jpeg files
    public static MediaLocator ProduceMovie(int width, int height, int frameRate, Vector inputFiles, String strSave){//String outputURL) {
              /*     // Check for output file extension.
              if (!filSave.toString().endsWith(".mov") && !filSave.toString().endsWith(".MOV")) {
              // Check the frame rate.
              if (frameRate < 1)
                  frameRate = 1;
              // Generate the output media locators.
              MediaLocator oml = createMediaLocator(strSave);
              System.out.println(strSave);
              if (oml == null) {
                  System.err.println("Cannot build media locator from: " + strSave);
                  System.exit(0);
              JpegsToMovie imageToMovie = new JpegsToMovie();
              imageToMovie.doIt(width, height, frameRate, inputFiles, oml, strSave);
              return oml;
              //System.exit(0);
    /*         static void prUsage() {
              //System.err.println("Usage: java JpegsToMovie -w <width> -h <height> -f <frame rate> -o <output URL> <input JPEG file 1> <input JPEG file 2> ...");
              System.exit(-1);
              * Create a media locator from the given string.
             static MediaLocator createMediaLocator(String url) {
              MediaLocator ml;
              if (url.indexOf(":") > 0 && (ml = new MediaLocator(url)) != null)
                  return ml;
              if (url.startsWith(File.separator)) {
                  if ((ml = new MediaLocator("file:" + url)) != null)
                   return ml;
              } else {
                  String file = "file:" + System.getProperty("user.dir") + File.separator + url;
                  if ((ml = new MediaLocator(file)) != null)
                   return ml;
              return null;
             // Inner classes.
              * A DataSource to read from a list of JPEG image files and
              * turn that into a stream of JMF buffers.
              * The DataSource is not seekable or positionable.
             class ImageDataSource extends PullBufferDataSource {
              ImageSourceStream streams[];
              ImageDataSource(int width, int height, int frameRate, Vector images, String strSave) {
                  streams = new ImageSourceStream[1];
                  streams[0] = new ImageSourceStream(width, height, frameRate, images, strSave);
              public void setLocator(MediaLocator source) {
              public MediaLocator getLocator() {
                  return null;
               * Content type is of RAW since we are sending buffers of video
               * frames without a container format.
              public String getContentType() {
                  return ContentDescriptor.RAW;
              public void connect() {
              public void disconnect() {
              public void start() {
              public void stop() {
               * Return the ImageSourceStreams.
              public PullBufferStream[] getStreams() {
                  return streams;
               * We could have derived the duration from the number of
               * frames and frame rate.  But for the purpose of this program,
               * it's not necessary.
              public Time getDuration() {
                  return DURATION_UNKNOWN;
              public Object[] getControls() {
                  return new Object[0];
              public Object getControl(String type) {
                  return null;
              * The source stream to go along with ImageDataSource.
             class ImageSourceStream implements PullBufferStream {
                  float frameRate;
                   long seqNo = 0;
              Vector images;
              int width, height;
              VideoFormat format;
              int nextImage = 0;     // index of the next image to be read.
              boolean ended = false;
              public ImageSourceStream(int width, int height, int frameRate, Vector images, String strSave) {
                  this.width = width;
                  this.height = height;
                  this.images = images;
                  this.frameRate = (float) frameRate;
                  if (strSave.endsWith(".mov")){
                       format = new VideoFormat(VideoFormat.JPEG,
                                  new Dimension(width, height),
                                  Format.NOT_SPECIFIED,
                                  Format.byteArray,
                                  (float)frameRate);
                   }else if (strSave.endsWith(".avi")){
                        format = new VideoFormat(VideoFormat.CINEPAK,
                                  new Dimension(width, height),
                                  Format.NOT_SPECIFIED,
                                  Format.byteArray,
                                  (float)frameRate);
                  format = new VideoFormat(VideoFormat.JPEG,
                             new Dimension(width, height),
                             Format.NOT_SPECIFIED,
                             Format.byteArray,
                             (float)frameRate);*/
               * We should never need to block assuming data are read from files.
              public boolean willReadBlock() {
                  return false;
               * This is called from the Processor to read a frame worth
               * of video data.
               public void read(Buffer buf) throws IOException {
                    // Check if we've finished all the frames.
                  if (nextImage >= images.size()) {
                       long time = (long)seqNo * (1000 / (long)frameRate) * 1000000;
                        buf.setTimeStamp(time);
                        buf.setSequenceNumber(seqNo++);
                        // We are done.  Set EndOfMedia.
                        //System.err.println("Done reading all images.");
                        buf.setEOM(true);
                        buf.setOffset(0);
                        buf.setLength(0);
                        ended = true;
                        return;
                  String imageFile = (String)images.elementAt(nextImage);
                  nextImage++;
                  //System.err.println("  - reading image file: " + imageFile);
                  // Open a random access file for the next image.
                  RandomAccessFile raFile;
                  raFile = new RandomAccessFile(imageFile, "r");
                  byte data[] = null;
                  // Check the input buffer type & size.
                  if (buf.getData() instanceof byte[])
                   data = (byte[])buf.getData();
                  // Check to see the given buffer is big enough for the frame.
                  if (data == null || data.length < raFile.length()) {
                   data = new byte[(int)raFile.length()];
                   buf.setData(data);
                  long time = (long) (seqNo * (1000 / frameRate) * 1000000);
                buf.setTimeStamp(time);
                buf.setSequenceNumber(seqNo++);
                  // Read the entire JPEG image from the file.
                  raFile.readFully(data, 0, (int)raFile.length());
                  //System.err.println("    read " + raFile.length() + " bytes.");
                  buf.setOffset(0);
                  buf.setLength((int)raFile.length());
                  buf.setFormat(format);
                  buf.setFlags(buf.getFlags() | buf.FLAG_KEY_FRAME);
                  // Close the random access file.
                  raFile.close();
               * Return the format of each video frame.  That will be JPEG.
              public Format getFormat() {
                  return format;
              public ContentDescriptor getContentDescriptor() {
                  return new ContentDescriptor(ContentDescriptor.RAW);
              public long getContentLength() {
                  return 0;
              public boolean endOfStream() {
                  return ended;
              public Object[] getControls() {
                  return new Object[0];
              public Object getControl(String type) {
                  return null;
         }

    Try deleting the problematic tune (electing to remove original file if/when prompted) and then re-downloading the file from the iTunes store.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option at the bottom of the screen of the iTunes app on your iOS device.
    If the problem re-occurs, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.

  • SSRS 2012 Print Error w/ Win 8.1 IE11 (0x80004005)

    I'm having an issue printing SSRS 2012 reports from Win 8.1/IE11.  When I print I get "An error occurred trying to render the report. (0x80004005)"  See below for SSRS Log.  This happens when trying to print any reports from this
    server on a win 8.1 machine. I've checked on Win8/IE10 and Win7/IE11 and they both work fine.  When I change the "User agent string" in F12/Emulation to IE10 instead of default it also works fine.  These reports are in compatibility mode
    by default due to the "Dispaly intranet sites in Compatibility View" being checked by default.  If I uncheck this box the reports will not even run.  They display an error message of "Value cannot be null. Parameter name: String"
    which is very similar looking to the error in the log below.
    TIA for any help
    Tommy
    The error log from SSRS is
    webserver!ReportServer_0-15!14cc!06/11/2014-09:59:40:: e ERROR: Internal error: System.ArgumentNullException: Value cannot be null.
    Parameter name: String
       at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
       at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
       at System.Web.Configuration.HttpCapabilitiesBase.get_MajorVersion()
       at Microsoft.ReportingServices.Diagnostics.Utilities.BrowserDetectionUtility.GetBrowserInfoFromRequest(HttpRequest request)
       at Microsoft.ReportingServices.WebServer.HttpRequestContext.get_BrowserCapabilities()
       at Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.HttpRequestWrapper.get_BrowserCapabilities()
       at Microsoft.ReportingServices.Library.StreamRequestHandler.PopulateRSRequestParameters()
       at Microsoft.ReportingServices.Library.StreamRequestHandler.PerformStreamedOperation(StreamedOperation operation)
       at Microsoft.ReportingServices.Library.StreamRequestHandler.RenderItem(ItemType itemType)
       at Microsoft.ReportingServices.Library.StreamRequestHandler.ExecuteCommand()
       at Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
    library!ReportServer_0-15!14cc!06/11/2014-09:59:40:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeException: ArgumentException is encountered. Check inner exception for details., Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeException:
    An error occurred in the HTTP Runtime object for application domain ReportServer_MSSQLSERVER_0-15-130469329522201322. Most likely, the HTTP request contains an unsupported verb or invalid syntax. ---> System.ArgumentNullException: Value cannot be null.
    Parameter name: String
       at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
       at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
       at System.Web.Configuration.HttpCapabilitiesBase.get_MajorVersion()
       at Microsoft.ReportingServices.Diagnostics.Utilities.BrowserDetectionUtility.GetBrowserInfoFromRequest(HttpRequest request)
       at Microsoft.ReportingServices.WebServer.HttpRequestContext.get_BrowserCapabilities()
       at Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.HttpRequestWrapper.get_BrowserCapabilities()
       at Microsoft.ReportingServices.Library.StreamRequestHandler.PopulateRSRequestParameters()
       at Microsoft.ReportingServices.Library.StreamRequestHandler.PerformStreamedOperation(StreamedOperation operation)
       at Microsoft.ReportingServices.Library.StreamRequestHandler.RenderItem(ItemType itemType)
       at Microsoft.ReportingServices.Library.StreamRequestHandler.ExecuteCommand()
       at Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
       --- End of inner exception stack trace ---;
    ui!ReportManager_0-16!3cc!06/11/2014-09:59:40:: i INFO: Unhandled exception: Microsoft.Reporting.WebForms.ReportServerException: An error occurred in the HTTP Runtime object for application domain ReportServer_MSSQLSERVER_0-15-130469329522201322. Most likely,
    the HTTP request contains an unsupported verb or invalid syntax. (rsHttpRuntimeError) ---> Microsoft.Reporting.WebForms.ReportServerException: For more information about this error navigate to the report server on the local server machine, or enable remote
    errors
       --- End of inner exception stack trace ---
       at Microsoft.Reporting.WebForms.SoapReportExecutionService.ServerUrlRequest(AbortState abortState, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WebForms.SoapReportExecutionService.Render(AbortState abortState, String reportPath, String executionId, String historyId, String format, XmlNodeList deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream,
    String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WebForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WebForms.ServerModeSession.RenderReport(String format, Boolean allowInternalRenderers, String deviceInfo, NameValueCollection additionalParams, Boolean cacheSecondaryStreamsForHtml, String& mimeType, String& fileExtension)
       at Microsoft.Reporting.WebForms.ServerModeSession.RenderReportForPrint(String deviceInfo, NameValueCollection additonalParams, HttpResponse response)
       at Microsoft.Reporting.WebForms.HttpHandler.ProcessRequest(HttpContext context)
       at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

    Hi Joshua.Arenz,
    As per my understanding, you configured SSRS 2012 of SharePoint mode, when you click system setting in Central Admin, you got the error message.
    According to the error message, the Reporting Services service application is not configured correctly. Please make sure you created service application correctly by following steps:
    In SharePoint Central Administration, in the Application Management group, click Manage Service Applications.
    In the SharePoint toolbar, click the New button.
    In the New menu, click SQL Server Reporting Services Service Application.
    In the Create SQL Server Reporting Services Service Application page, enter a name for the application.
    In Application Pool section, create a new application pool for the application (recommended). Then select or create a managed account for the application pool.
    In the Database Server, you can use the current server or choose a different SQL Server.
    In Database Name the default value is ReportingService_<guid>, which is a unique database name. If you type a new value, type a unique value.
    In Database Authentication, the default is Windows Authentication.
    In the Web Application Association section, select the Web Application to be provisioned for access by the current Reporting Services Service Application.
    Click OK.
    For more information about Creating a new Reporting Services Service Application, please refer to the following document:
    http://niftit.com/how-to-install-configure-reporting-services-sharepoint-2013/
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • Not able to pull report for only 2 months Jan and Feb of 2014

    I am not able to pull the report from Service Manager DWH for the months Jan and Feb of 2014. on attempting i am getting the below screenshot of error
    and the content of the same is:
    Date: 29-04-2014 15:31:04
    Application: System Center Service Manager Console
    Application Version: 7.0.6555.0
    Severity: Error
    Message: An error has occurred during report processing.
    System.Exception: An error has occurred during report processing. ---> System.Exception: Query execution failed for dataset 'Data_Incidents'. ---> System.Exception: For more information about this error navigate to the report server on the local server
    machine, or enable remote errors
       --- End of inner exception stack trace ---
       --- End of inner exception stack trace ---
       at Microsoft.Reporting.WinForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ProcessingThread.ProcessThreadMain(Object arg)
    System.Exception: Query execution failed for dataset 'Data_Incidents'. ---> System.Exception: For more information about this error navigate to the report server on the local server machine, or enable remote errors
       --- End of inner exception stack trace ---
    System.Exception: For more information about this error navigate to the report server on the local server machine, or enable remote errors
    Further troubleshooting i ran the query
    USE DWDataMart1
    SELECT * FROM sysobjects
    WHERE name like 'ServiceManager_Report_%'
    and found out that below mentioned 8 of Stored procedure is missing, i am not sure if this has something to do with the error
    ServiceManager_Report_ReleaseManagement_SP_GetAllActivitiesOfReleaseRecord
    ServiceManager_Report_ReleaseManagement_SP_GetListOfReleaseRecords
    ServiceManager_Report_ServiceManagement_SP_GetCMCollectionContainsComputersMap
    ServiceManager_Report_ServiceManagement_SP_GetOMGroupContainsComputersMap
    ServiceManager_Report_ServiceManagement_SP_GetServiceContainsComputersMap
    ServiceManager_Report_ServiceManagement_SP_GetSMServiceGroupData
    ServiceManager_Report_ServiceManagement_SP_GetSMServiceSummaryData
    ServiceManager_Report_Common_SP_GetServicesAffectedByWI
    kindly help me in resolving this issue..
    thanks in advance
    Micheal Nishit

    looks like your data warehouse install is borked. unfortunately there's not much more we can determine based on this. you're obviously missing a lot of the stored procedures that service the default reports, but there isn't any reasoning. 
    The error from above is the generic "a bad thing, recorded elsewhere, has occurred" that you usually get from Web Services. Try running the report from the DW machine to see if you get better error details, or
    enable remote errors.

  • TF215097: An error occurred while initializing a build for build definition : Could not establish trust relationship for the SSL/TLS secure channel

    Hello,
    We are facing an issue when triggering a new build using TFS 2013 Update 4, VS2013 Update 4 using TFVCTemplate.12.XAML template. All our other older build definitions just work fine but not the TFVCTemplate.12.XAML.  It seems to me that some certificate
    might be invalidated. Can anyone please point me in the right direction? 
    Thanks, 
    Mitul
    TF215097: An error occurred while initializing a build for build definition :
    Exception Message: One or more errors occurred. (type AggregateException)
    Exception Stack Trace: at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)
    at Microsoft.TeamFoundation.Build.Client.FileContainerHelper.GetFile(TfsTeamProjectCollection projectCollection, String itemPath, Stream outputStream)
    at Microsoft.TeamFoundation.Build.Client.FileContainerHelper.GetFileAsString(TfsTeamProjectCollection projectCollection, String itemPath)
    at Microsoft.TeamFoundation.Build.Client.ProcessTemplate.Download(String sourceGetVersion)
    at Microsoft.TeamFoundation.Build.Hosting.BuildControllerWorkflowManager.PrepareRequestForBuild(WorkflowManagerActivity activity, IBuildDetail build, WorkflowRequest request, IDictionary`2 dataContext)
    at Microsoft.TeamFoundation.Build.Hosting.BuildWorkflowManager.TryStartWorkflow(WorkflowRequest request, WorkflowManagerActivity activity, BuildWorkflowInstance& workflowInstance, Exception& error, Boolean& syncLockTaken)
    Inner Exception Details:
    Exception Message: An error occurred while sending the request. (type HttpRequestException)
    Exception Stack Trace: at Microsoft.VisualStudio.Services.WebApi.VssHttpRetryMessageHandler.<SendAsync>d__1.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
    at System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult()
    at Microsoft.VisualStudio.Services.WebApi.HttpClientExtensions.<DownloadFileFromTfsAsync>d__2.MoveNext()
    Inner Exception Details:
    Exception Message: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. (type WebException)Exception Stack Trace: at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
    at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar)
    Inner Exception Details:
    Exception Message: The remote certificate is invalid according to the validation procedure. (type AuthenticationException)
    Exception Stack Trace: at System.Net.TlsStream.EndWrite(IAsyncResult asyncResult)
    at System.Net.ConnectStream.WriteHeadersCallback(IAsyncResult ar)

    Hi Mitul,
    Thanks for your reply.
    It’s strange, if your old build definitions can work using the same TFS Build Server, that indicate your TFS Server configuration is correct and can works. But only new build definition with default TfvcTemplate.12.xaml template cannot build successful.
    Please share your TFS Server detailed environment information here. And share your
    Build Service Properties dialog screenshot here.
    Try to clean the Cache for TFS 2013 manually(delete the content of the folder only, not the cache folder itself):
    Clean the Cache folder on Server machine. The folder path is:
    C:\Program Files\Microsoft Team Foundation Server 12.0\Application Tier\Web Services\_tfs_data.  
    After cleaned, on Server machine, click Start and select
    Run… to open the dialog box, then input iisreset.exe and click OK, wait it run completely.
    Additionally, you can run the TFS 2013 Power Tools BPA to scan the installation of your TFS Server.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error while Exporting large data from Reportviewer on azure hosted website.

    Hi,
    I have website hosted on azure. I used SSRS reportviewer control to showcase my reports. while doing so i faced an issue.
    Whenever i export large amount of data as Excel/PDF/word/tiff it abruptly throw following error:
    Error: Microsoft.Reporting.WebForms.ReportServerException: The remote server returned an error: (401) Unauthorized. ---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.
    at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
    at Microsoft.Reporting.WebForms.SoapReportExecutionService.ServerUrlRequest(AbortState abortState, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
    --- End of inner exception stack trace ---
    at Microsoft.Reporting.WebForms.SoapReportExecutionService.ServerUrlRequest(AbortState abortState, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
    at Microsoft.Reporting.WebForms.SoapReportExecutionService.Render(AbortState abortState, String reportPath, String executionId, String historyId, String format, XmlNodeList deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
    at Microsoft.Reporting.WebForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
    at Microsoft.Reporting.WebForms.ServerReport.Render(String format, String deviceInfo, NameValueCollection urlAccessParameters, String& mimeType, String& fileNameExtension)
    at Microsoft.Reporting.WebForms.ServerModeSession.RenderReport(String format, Boolean allowInternalRenderers, String deviceInfo, NameValueCollection additionalParams, Boolean cacheSecondaryStreamsForHtml, String& mimeType, String& fileExtension)
    at Microsoft.Reporting.WebForms.ExportOperation.PerformOperation(NameValueCollection urlQuery, HttpResponse response)
    at Microsoft.Reporting.WebForms.HttpHandler.ProcessRequest(HttpContext context)
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    It works locally (developer machine) or having less data. But it didn't work with large data when publish on azure.
    Any help will be appreciated.
    Thanks.

    Sorry, let me clarify my questions as they were ambiguous:
    For a given set if input, does the request always take the same amount of time to fail? How long does it take?
    When it works (e.g. on local machine using same input), how big is the output file that gets downloaded?
    Also, if you can share your site name (directly or
    indirectly), and the UTC time where you made an attempt, we may be able to get more info on our side.

  • Unexpected error has occured , when editting a wiki page name

    I am working on SharePoint 2013 , and i have a site collection of type Enterprise wiki. currently when users edit a wiki page and they change the wiki page name, they will get the following error page:-
    but the modifications will take effect, so if the users refresh the above error page they will be redirected to the wiki page.. and after that the whole site collection will be raising the same error when other users create or edit wiki pages.  here
    is the logs after we create a wiki page and we chnage its tittle to be "T Group Email Setup" :-
    14:38:53.46 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Information Rights Management ajd2k Medium Information Rights Management (IRM): The email address of the requesting user is successfully set to IRM. 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.46 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Information Rights Management ai4ko Medium Information Rights Management (IRM): The IRM status of the document [Pages/T Group Email Setup.aspx] is: untried (-1), the return values is: 0x0. 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.46 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ahjki Medium Spent 0 ms to parse 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.47 w3wp.exe (0xB558) 0x8520 SharePoint Foundation General akhc2 Medium defaultcss.ashx: resource specified null 7fc8f89c-6c37-c0b7-30fc-0af39e0d7160
    04/02/2015 14:38:53.47 w3wp.exe (0xB558) 0x8520 SharePoint Foundation General aj5g6 Medium defaultcss.ashx: attempting to get web.MasterCssUrl 7fc8f89c-6c37-c0b7-30fc-0af39e0d7160
    04/02/2015 14:38:53.47 w3wp.exe (0xB558) 0x8520 SharePoint Foundation General akhc4 Medium defaultcss.ashx: creating final redirect url and send 301. 7fc8f89c-6c37-c0b7-30fc-0af39e0d7160
    04/02/2015 14:38:53.47 w3wp.exe (0xB558) 0x8520 SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 nasq,13 agb9s,25 akhc2,0 aj5g6,0 akhc4 7fc8f89c-6c37-c0b7-30fc-0af39e0d7160
    04/02/2015 14:38:53.47 w3wp.exe (0xB558) 0x8520 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://www.tgroupgroup.intra:80/kb/CustomerServiceKB/_layouts/15/defaultcss.ashx?ctag=0)). Execution Time=43.8773643018875 7fc8f89c-6c37-c0b7-30fc-0af39e0d7160
    04/02/2015 14:38:53.47 w3wp.exe (0xB558) 0x432C SharePoint Foundation Request Management adc7v Medium Reverse mapping URI from 'http://www.tgroupgroup.intra/_layouts/15/1033/styles/corev15app.css?rev=zuVbsgCb8FoNMkaQ3BfMXg%3D%3D' to 'http://www.tgroupgroup.intra/_layouts/15/1033/styles/corev15app.css?rev=zuVbsgCb8FoNMkaQ3BfMXg%3D%3D' 7fc8f89c-6c37-c0b7-30fc-0af39e0d7160
    04/02/2015 14:38:53.47 w3wp.exe (0xB558) 0x59B0 SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 nasq,2 adc7u,49 adc7v 7fc8f89c-6c37-c0b7-30fc-0af39e0d7160
    04/02/2015 14:38:53.47 w3wp.exe (0xB558) 0x59B0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://www.tgroupgroup.intra/kb/CustomerServiceKB/_layouts/15/defaultcss.ashx?ctag=0)). Execution Time=55.8803563022675 7fc8f89c-6c37-c0b7-30fc-0af39e0d7160
    04/02/2015 14:38:53.49 w3wp.exe (0xB558) 0x9CA4 SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: (none)
    04/02/2015 14:38:53.49 w3wp.exe (0xB558) 0x16A0 SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 nasq,3 adc7u 7fc8f89c-5c38-c0b7-30fc-0dac7025c6cf
    04/02/2015 14:38:53.49 w3wp.exe (0xB558) 0x16A0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://www.tgroupgroup.intra/_layouts/15/images/gears_anv4.gif?rev=23)). Execution Time=42.2711545741149 7fc8f89c-5c38-c0b7-30fc-0dac7025c6cf
    04/02/2015 14:38:53.53 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Dev Events ajekb High [Forced due to logging gap, cached @ 04/02/2015 14:38:53.46, Original Level: Verbose] Invoking EventReceiver - [Id: {0}] 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.53 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Database 8acb High [Forced due to logging gap, Original Level: VerboseEx] Reverting to process identity 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.57 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High UserAgent not available, file operations may not be optimized. at Microsoft.SharePoint.SPFileStreamManager.CreateCobaltStreamContainer(SPFileStreamStore spfs, ILockBytes ilb, Boolean copyOnFirstWrite, Boolean disposeIlb) at Microsoft.SharePoint.SPFileStreamManager.ComputeStreamsToWrite(Int64 putDocOpt, SPFileInfo& fileInfo, Boolean& useTVP, Boolean& doBatchedSqlWrite, Byte& newStreamSchema, Int64& bsnBump, Int32& newNumStreams, Int64& totalStreamLength) at Microsoft.SharePoint.Library.SPRequestInternalClass.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int64 cbFile, Object punkSPFileMgr, Object punkFFM, Int64 PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, O... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.57* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...bject varProperties, String bstrCheckinComment, String bstrLockIdMatch, String bstEtagToMatch, Int32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields, Guid gNewDocId, SPFileSaveParams sfsp, SPFileInfo& pFileProps, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, Int32& pbIgnoredReqProps) at Microsoft.SharePoint.Library.SPRequestInternalClass.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int64 cbFile, Object punkSPFileMgr, Object punkFFM, Int64 PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, String bstrLockIdMatch, String bstEtagToMatch, I... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.57* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...nt32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields, Guid gNewDocId, SPFileSaveParams sfsp, SPFileInfo& pFileProps, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, Int32& pbIgnoredReqProps) at Microsoft.SharePoint.Library.SPRequest.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int64 cbFile, Object punkSPFileMgr, Object punkFFM, Int64 PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, String bstrLockIdMatch, String bstEtagToMatch, Int32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields, Guid gNewDocId, SP... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.57* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...FileSaveParams sfsp, SPFileInfo& pFileProps, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, Int32& pbIgnoredReqProps) at Microsoft.SharePoint.SPFileCollection.AddStreamOrBytesInternal(String urlOfFile, Stream file, Int64 fileSizeToSave, SPFileStreamManager spmgr, PutFileOpt fileOpt, String createdBy, String modifiedBy, Int32 createdByID, Int32 modifiedByID, DateTime timeCreated, DateTime timeLastModified, Object varProperties, String checkInComment, Stream formatMetadata, String lockIdMatch, String etagToMatch, SPLockType lockType, String lockId, TimeSpan lockTimeout, Boolean validateRequiredFields, SPVirusCheckStatus& virusCheckStatus, String& virusCheckMessage, String& etagNew, Boolean& ignoredRequiredProps) at Microsoft.SharePoint.SP... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.57* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...FileCollection.Add(String urlOfFile, Byte[] file, SPFileCollectionAddParameters parameters) at Microsoft.SharePoint.Publishing.PublishingWeb.<>c__DisplayClass27.<AddPublishingPage>b__22() at Microsoft.Office.Server.Diagnostics.FirstChanceHandler.ExceptionFilter(Boolean fRethrowException, TryBlock tryBlock, FilterBlock filter, CatchBlock catchBlock, FinallyBlock finallyBlock) at Microsoft.SharePoint.Publishing.PublishingWeb.AddPublishingPage(String name, PageLayout layout, SPFolder folder) at Microsoft.SharePoint.Publishing.Internal.CodeBehind.CreatePublishingPageDialog15.CreatePublishingPage(String newPageName, PageLayout pageLayout, SPFolder folder, Boolean doCreateFriendlyUrl) at Microsoft.SharePoint.Publishing.Internal.CodeBehind.CreatePublishingPageDialog15.<>c__Dis... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.57* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...playClass2.<CreateButton_Click>b__0(SPLongOperation longOperation) at Microsoft.SharePoint.SPLongOperation.Begin(String leadingHtml, String trailingHtml, BeginOperation beginOperation) at Microsoft.SharePoint.Publishing.Internal.CodeBehind.CreatePublishingPageDialog15.CreateButton_Click(Object sender, EventArgs e) at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecu... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.57* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...tionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Ho... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.57* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...sting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.57 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Cobalt abnwk Medium |No zip central directory found 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.58 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Client File Access ajk3p Medium ttidLogWssCellStgConcise [Url: Pages/T Group Email Setup.aspx][User: i:0#.w|ad-tgroup\system.user (NonCobaltOriginated)][StreamSizes: Request=0 bytes, Response=0 bytes][TotalRequestTime: 0msec][PartitionID: Default][Request: PutChanges **FFU Pri=0 Result=Success][cbOld=0][cbNew=282][cLR:0][MD:0=AutoGenerated.OOF.No.NoOtherUsers.FutureOpen.Recently.DocumentIsActive.Content.Wired.None.Normal][cBCQ=0][cbCQ=0][cBRB=0][cbRB=0][cbREB=0][cBHBW=1][cbHBW=1496][cbHBEW=64320][cBHBDel=0][Mngd] 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.58 w3wp.exe (0xB558) 0x9B4C SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: (none)
    04/02/2015 14:38:53.64 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Database ahjqp High [Forced due to logging gap, cached @ 04/02/2015 14:38:53.58, Original Level: Verbose] SQL connection time: 0.275942892183224 for Data Source=tgroupGVSQL02\SPS;Initial Catalog=WSS_Content_ea05119bb8a4408ab450dcd46d6015e8;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Asynchronous Processing=True;Connect Timeout=15 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.64 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Database 8acb High [Forced due to logging gap, Original Level: VerboseEx] Reverting to process identity 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.66 w3wp.exe (0xB558) 0xABE0 SharePoint Foundation Dev Events ajbpn Medium Set EventFiringDisabled to [False]. Stack trace: [ at Microsoft.SharePoint.SPEventManager.HandleEventCallback[ReceiverType,PropertiesType](Object callbackData) at Microsoft.SharePoint.Utilities.SPThreadPool.WaitCallbackWrapper(Object state) at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem() at System.Threading.ThreadPoolWorkQueue.Dispatch() ] 7ac8f89c-3cf7-c0b7-30fc-056f978cb65a
    04/02/2015 14:38:53.66 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High UserAgent not available, file operations may not be optimized. at Microsoft.SharePoint.SPFileStreamManager.get_UserAgent() at Microsoft.SharePoint.SPFileStreamManager.BindFileInfoToInput(SPFileInfo& fileInfo) at Microsoft.SharePoint.Library.SPRequestInternalClass.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int64 cbFile, Object punkSPFileMgr, Object punkFFM, Int64 PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, String bstrLockIdMatch, String bstEtagToMatch, Int32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields, Guid gNewDocId, SPFileSaveParams sfsp, SPFileInfo& pFileProps,... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.66* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ... UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, Int32& pbIgnoredReqProps) at Microsoft.SharePoint.Library.SPRequestInternalClass.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int64 cbFile, Object punkSPFileMgr, Object punkFFM, Int64 PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, String bstrLockIdMatch, String bstEtagToMatch, Int32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields, Guid gNewDocId, SPFileSaveParams sfsp, SPFileInfo& pFileProps, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, In... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.66* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...t32& pbIgnoredReqProps) at Microsoft.SharePoint.Library.SPRequest.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int64 cbFile, Object punkSPFileMgr, Object punkFFM, Int64 PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, String bstrLockIdMatch, String bstEtagToMatch, Int32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields, Guid gNewDocId, SPFileSaveParams sfsp, SPFileInfo& pFileProps, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, Int32& pbIgnoredReqProps) at Microsoft.SharePoint.SPFileCollection.AddStreamOrBytesInternal(String urlOfFil... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.66* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...e, Stream file, Int64 fileSizeToSave, SPFileStreamManager spmgr, PutFileOpt fileOpt, String createdBy, String modifiedBy, Int32 createdByID, Int32 modifiedByID, DateTime timeCreated, DateTime timeLastModified, Object varProperties, String checkInComment, Stream formatMetadata, String lockIdMatch, String etagToMatch, SPLockType lockType, String lockId, TimeSpan lockTimeout, Boolean validateRequiredFields, SPVirusCheckStatus& virusCheckStatus, String& virusCheckMessage, String& etagNew, Boolean& ignoredRequiredProps) at Microsoft.SharePoint.SPFileCollection.Add(String urlOfFile, Byte[] file, SPFileCollectionAddParameters parameters) at Microsoft.SharePoint.Publishing.PublishingWeb.<>c__DisplayClass27.<AddPublishingPage>b__22() at Microsoft.Office.Server.Diagnostics.FirstChanceHan... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.66* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...dler.ExceptionFilter(Boolean fRethrowException, TryBlock tryBlock, FilterBlock filter, CatchBlock catchBlock, FinallyBlock finallyBlock) at Microsoft.SharePoint.Publishing.PublishingWeb.AddPublishingPage(String name, PageLayout layout, SPFolder folder) at Microsoft.SharePoint.Publishing.Internal.CodeBehind.CreatePublishingPageDialog15.CreatePublishingPage(String newPageName, PageLayout pageLayout, SPFolder folder, Boolean doCreateFriendlyUrl) at Microsoft.SharePoint.Publishing.Internal.CodeBehind.CreatePublishingPageDialog15.<>c__DisplayClass2.<CreateButton_Click>b__0(SPLongOperation longOperation) at Microsoft.SharePoint.SPLongOperation.Begin(String leadingHtml, String trailingHtml, BeginOperation beginOperation) at Microsoft.SharePoint.Publishing.Internal.CodeBehind.C... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.66* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...reatePublishingPageDialog15.CreateButton_Click(Object sender, EventArgs e) at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) a... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.66* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...t System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at Syst... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.66* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...em.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.66 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files aiv4x Medium Spent 125 ms to add 282 byte file stream 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.74 w3wp.exe (0xB558) 0xA334 SharePoint Foundation General g3ql High [Forced due to logging gap, cached @ 04/02/2015 14:38:53.69, Original Level: Verbose] GetUriScheme(/kb/CustomerServiceKB/Pages/T Group Email Setup.aspx) 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.74 w3wp.exe (0xB558) 0xA334 SharePoint Foundation General g3ql High [Forced due to logging gap, Original Level: Verbose] GetUriScheme(/kb/CustomerServiceKB/_catalogs/masterpage/EnterpriseWiki.aspx) 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.74 w3wp.exe (0xB558) 0xABE0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=56.7878040365465 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.75 w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High UserAgent not available, file operations may not be optimized. at Microsoft.SharePoint.SPFileStreamManager.CreateCobaltStreamContainer(SPFileStreamStore spfs, ILockBytes ilb, Boolean copyOnFirstWrite, Boolean disposeIlb) at Microsoft.SharePoint.SPFileStreamManager.SetInputLockBytes(SPFileInfo& fileInfo, SqlSession session, PrefetchResult prefetchResult) at Microsoft.SharePoint.CoordinatedStreamBuffer.SPCoordinatedStreamBufferFactory.CreateFromDocumentRowset(Guid databaseId, SqlSession session, SPFileStreamManager spfstm, Object[] metadataRow, SPRowset contentRowset, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) at Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.75* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...) at Microsoft.SharePoint.Library.SPRequestInternalClass.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID, String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress, Boolean bMigration, Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) at Microsoft.SharePoint.Library.SPRequestInternalClass.AddOrUpdateItem(String bstrUrl, String bstrListNa... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.75* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...me, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID, String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress, Boolean bMigration, Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) at Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVer... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.75* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...sion, Int32& plID, String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress, Boolean bMigration, Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) at Microsoft.SharePoint.SPListItem.AddOrUpdateItem(Boolean bAdd, Boolean bSystem, Boolean bPreserveItemVersion, Boolean bNoVersion, Boolean bMigration, Boolean bPublish, Boolean bCheckOut, Boolean bCheckin, Guid newGuidOnAdd, Int32& ulID, Object& objAttachmentNames, Object& objAttachmentContents, Boolean suppressAfterEvents, String fil... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.75* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...ename, Boolean bPreserveItemUIVersion) at Microsoft.SharePoint.SPListItem.UpdateInternal(Boolean bSystem, Boolean bPreserveItemVersion, Guid newGuidOnAdd, Boolean bMigration, Boolean bPublish, Boolean bNoVersion, Boolean bCheckOut, Boolean bCheckin, Boolean suppressAfterEvents, String filename, Boolean bPreserveItemUIVersion) at Microsoft.SharePoint.Publishing.PublishingWeb.<>c__DisplayClass27.<AddPublishingPage>b__22() at Microsoft.Office.Server.Diagnostics.FirstChanceHandler.ExceptionFilter(Boolean fRethrowException, TryBlock tryBlock, FilterBlock filter, CatchBlock catchBlock, FinallyBlock finallyBlock) at Microsoft.SharePoint.Publishing.PublishingWeb.AddPublishingPage(String name, PageLayout layout, SPFolder folder) at Microsoft.SharePoint.Publishing.Internal.CodeBe... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.75* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...hind.CreatePublishingPageDialog15.CreatePublishingPage(String newPageName, PageLayout pageLayout, SPFolder folder, Boolean doCreateFriendlyUrl) at Microsoft.SharePoint.Publishing.Internal.CodeBehind.CreatePublishingPageDialog15.<>c__DisplayClass2.<CreateButton_Click>b__0(SPLongOperation longOperation) at Microsoft.SharePoint.SPLongOperation.Begin(String leadingHtml, String trailingHtml, BeginOperation beginOperation) at Microsoft.SharePoint.Publishing.Internal.CodeBehind.CreatePublishingPageDialog15.CreateButton_Click(Object sender, EventArgs e) at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.Process... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.75* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...Request(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, ... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.75* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags... 7fc8f89c-ec23-c0b7-30fc-08927bd518c3
    04/02/2015 14:38:53.75* w3wp.exe (0xB558) 0xA334 SharePoint Foundation Files ak8dj High ...) 7fc8f89c-ec23-c0b7-30fc-08927bd518c3

    can anyone adivce on my question please ?

Maybe you are looking for