Portlet page names

Ok I think I'm on the right newsgroup now.
Subrahmanyam,
My question back to you. Who do you login in as? I am logging in as administrator.
-Travis
Subject: Re: portlet page names.
Date: Mon, 22 Apr 2002 10:15:29 -0600
From: Subrahmanyam Allamaraju <[email protected]>
Newsgroup: weblogic.developer.interest.personalization
Travis,
You can change the display names via the JSP tools. Login to the tools, and select
the portal for the "everyone" group. The procedure is the same as for group portals.
In future, please post all WLP related questions to the weblogic.developer.interest.portal
newsgroup.
Sincerely,
Subbu
travis wissink wrote:
I have a question regarding portlet names. Referring to the stockportal that comeswith portal server, I notice that the name for one of the portlets is "About Avitek."
In the ebcc the portlet is identified as "AboutAvitek." So, I am wondering how the
space got in the middle of the two words. I found that in the PORTLET_P13N table
that the value in the Display_Name column was the "About Avitek." I would like to
control the title bar name of the portlet for non-logged in users. Has anyone else
notices and overcome this issue? My desired goal is to allow the ebcc user to control
the title bar name through the ebcc. Any suggestions would be most appreciated.

Travis,
I just spoke to the engineer working on this for the 4.1 release and it has
already been implemented. If you want to do some custom coding I think you
can also write a JSP that exposes the API methods to your users to change
the display name.
http://edocs.bea.com/wlp/docs40/javadoc/wlp/index.html
Sincerely,
Daniel Selman
"travis wissink" <[email protected]> wrote in message
news:3cc46327$[email protected]..
>
Dan,
Actually, I think the "display-name" is the more appropriate element toedit.
>
This is a bummer; this appears so naturally for the example, when in factits going
to be nearly impossible for a "Business User" to edit such a file. Iguess my main
request to the EBCC group is if there is an option in any of theassociated schema's,
e.g. the "display-name" element in the portal-1_0.xsd schema, then providea way
to edit it via the EBCC.
Thanks,
Travis Wissink
"Daniel Selman" <[email protected]> wrote:
Travis,
It looks like you are going to have to edit the XML by hand to introduce
the
space into the portlet-name. E.g.
<portlet-name>ReviewNewsletters</portlet-name>
goes to:
<portlet-name>Review Newsletters</portlet-name>
I will take this up with the EBCC engineers and file a CR. Please let me
know if this does not solve the problem.
Thanks (and sorry),
Daniel Selman
"travis wissink" <[email protected]> wrote in message
news:3cc45bd8$[email protected]..
Subbu,
I've been all over the ebcc. Even inside of the xml files. Nowhere dois
see the
possibility of manipulating the "Display Name" of the portlets in theebcc
at all.
Of course when you create a new portlet you can name it but that namehas
restrictions
against it, e.g. no spaces.
Do you know specifically where I can manipulate that attribute in theebcc?
-Travis
Subrahmanyam Allamaraju <[email protected]> wrote:
Sorry for mt wrong answer. You've to do this via the EBCC. Check the
default portal configuration.
Sincerely,
Subbu

Similar Messages

  • How to catch and display a link content in another portlet page?

    Can you tell me how to display a URL content into next page after an user click s on this link? I am developing a JSR 168 portlet under a Portal. I have 3 pages so far in my portlet. view.jsp, view2.jsp and IpByHourPage.jsp. view2.jsp displays a lis of IP address. When an user clicks on an IP in view2.jsp, it goes to IpByHourPage.jsp. How to catch the IP address such as 123.23.89.21 that an user just click displayed in IpByHourPage.jsp. I don't know why I got null value returned.
    Also, I don't know how to do a "go back to previous page". I want to go back to view2.jsp from IpbyHourPage.jsp
    Here is my code
    in view2.jsp
    <portlet:renderURL var="aURL">
    <portlet:param name="goto" value="IpByHourPage"/>
    </portlet:renderURL>
    <a href="<%=aURL.toString() %> "><%=MyIP%></a>
    in IpByHourPage.jsp
    <%
    String MyIPHour = request.getParameter("goto");
    %>
    <h1>IP Report by Hour ( <%=MyIPHour%> )</h1>
    <portlet:renderURL var="Ret_IPByHour">
    <portlet:param name="Ret_IPHourPage" value="Ret_IPByHourPage"/>
    </portlet:renderURL>
    <center> <a href="<%=Ret_IPByHour.toString() %> "><b>Choose Another IP</b></a></center>
    in my .java file
    protected void doView(RenderRequest request, RenderResponse response)
    throws PortletException, IOException, UnavailableException {
    response.setContentType("text/html");
    String MyBegDate = request.getParameter("BegDate");
    String MyEndDate = request.getParameter("EndDate");
    String MyNetworks = request.getParameter("networks");
    String MyYourName = request.getParameter("yourname");
    PortletURL renderURL = response.createRenderURL();
    renderURL.setPortletMode(PortletMode.VIEW);
    request.setAttribute("renderURL", renderURL.toString() )
    String GotoRenderAction = request.getParameter("goto");
    String MyIPHourAction = request.getParameter("Ret_IPHourPage");
    if ( (MyIPHourAction!=null) && MyIPHourAction.equals("Ret_IPByHourPage") )
    PortletRequestDispatcher kk = getPortletContext().getRequestDispatcher("/view2.jsp");
    kk.include(request, response);
    if (MyIPHourAction != null && MyIPHourAction.equals("Ret_IPByHourPage"))
    PortletRequestDispatcher mm = getPortletContext().getRequestDispatcher("/view2.jsp");
    mm.include(request, response);
    if (GotoRenderAction != null && GotoRenderAction.equals("IpByHourPage"))
    request.setAttribute("BegDate", "MyBegDate");
    request.setAttribute("EndDate", "MyEndDate");
    System.out.println("BegDate" + MyBegDate);
    System.out.println("Endate" + MyEndDate);
    PortletRequestDispatcher mm = getPortletContext().getRequestDispatcher("/IpByHourPage.jsp");
    mm.include(request, response);
    if(MyEndDate!= null )
    PortletRequestDispatcher prd = getPortletContext().getRequestDispatcher("/view2.jsp");
    prd.include(request, response);
    else if (MyEndDate==null && GotoRenderAction == null)
    PortletRequestDispatcher prd = getPortletContext().getRequestDispatcher("/view.jsp");
    prd.include(request, response);
    The problem for above code is the clicked single IP can not be displayed in IpByHourPage.jsp. and I cannot go back to view2.jsp from IpByHourPage.jsp. when I click "Choose Another IP"
    I find out that the MyBegDate and MyEndDate values are all null when I click Choose Another IP link. I got the following error message
    Caused by: javax.servlet.ServletException: Unparseable date: "null null"
         at org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:858)
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:791)
         at org.apache.jsp.view2_jsp._jspService(view2_jsp.java:651)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    How to fix above problems. Thanks

    I think the problems are related to portletsession. But I don't know how to use it. How to put portletsession into doview method or my jsp pages. Can anyone tell me in my code? Thanks a lot.

  • How to get a Page name?

    Hello,
    I have a dynamic page component portlet, which display different images depending upon page name.
    Is there any APIs to get the current page name in pl/sql.
    or is there any way to get the page name ?
    Thanks
    Sha

    I can't help you with the Javascript option - don't know if this is possible.
    A simple PL/SQL item type that demonstrates how to do this:
    declare
    page_id varchar2(100);
    begin
    page_id := WWPRO_API_PARAMETERS.GET_VALUE('_pageid','a');
    htp.p('The page id is ' || page_id);
    exception
    when others then null;
    end;
    A custom item type procedure is even simpler - you can pass the page group id and page id directly to the procedure, so you don't need to call WWPRO_API_PARAMETERS.GET_VALUE to pull the pageid off the URL.
    There is a very good example of using custom item type procedures in this submission on the Knowledge Exchange. You must register for Portal Developer Services to access the Knowledge Exchange.
    If you are not familiar with PL/SQL item types and/or custom item procedures, please consult the documentation.
    Regards,
    Jerry
    PortalPM

  • Default "Gateway" for page name

    I am using pt:pagename in a banner portlet. It works fine in 5.04 , but in 6.0 when the page is a hosted remote portlet, the banner text displays "Gateway" by default.
    Any clue how to display a custom text instead, or just blank?
    Thanks!
    Val

    1. I have a banner portlet
    I've inserted pt:pagename tag on the html, and every time I navigate on the portal, the banner displays the page name.
    2. I have a remote portlet (C#) running on a different server.
    When I open the page containing the portlet, the banner displays the name of the page(correct)
    but if I try to navigate inside the C# app, opening a different page, the "Gateway" text is displayed.
    The same portlet on 5.04 just displayed blank. The 6.0 is comming with this "feature", and I do not know how to get rid of it.
    Unfortunately, Chris B. idea is not working, because if I delete the
    "edkRes.SetHostedDisplayMode(HostedDisplayMode.Hosted);"
    the page is not hosted anymore.
    Val

  • Display current page name using API ?

    I want to display the current page name using a PL/SQL API. I can get it using smart text - current page item, but I need to get it programmatically using a procedure. Which one? What variable? If I need to pass values in, where do I get them?
    Thanks,
    John

    You can use wwpro_api_parameters.get_value('_pageid','a') in a pl/sql item or UI template to get the value of the current page id. You can then use the page id to look up page attributes in the WWSBR_ALL_FOLDERS view. In a portlet, you have to use the reference_path instead of the 'a' as the second parameter.
    Please note that is is an undocumented use of this API and is not guaranteed to work in future releases. However, it does work in 9.0.2 and 9.0.2.6. WWSBR_ALL_FOLDERS is not officially supported until the 9.0.2.6 version.
    Regards,
    Jerry
    PortalPM

  • How to get the Portal Page name from PLSQL?

    Can anyone tell me how to get the portal page name from my dynamic page using plsql?
    Apparently you can get the page id and work it out from there, but my calls to get the page id are not returning any values anyway.
    My code for attempting to get the page id is below.
    <oracle>
    declare
    v_pageid varchar2(30);
    begin
    v_pageid := wwpro_api_parameters.get_value('_pageid', '/pls/portal30');
    htp.print('Page is '|| v_pageid);
    end;
    </oracle>
    Ideally I'd actually just like to get the page name. Is there a straightforward way to do this?
    Thanks in advance!
    Sarah

    Few clarifications -
    1. wwpro_api_parameters cannot be used to get default portal
    page parameters such as '_pageid', '_dad', '_schema' etc.,
    2. Page information can be obtained through any components which
    are available in that particular page. For example, in case of
    dynamic page, we need to publish it as a portlet and add it to the
    page. This process creates necessary packages in the DB, but we
    will not have access to the portlet methods.
    So, I would prefer creating a simple DB provider & portlet and access
    page title from its show method as follows -
    //Declare local variable l_page_id, l_page_title as varchar2
    select page_id into l_page_id from wwpob_portlet_instance$ where
    portlet_id = p_portlet_record.portlet_id and
    provider_id = p_portlet_record.provider_id;
    select name into l_page_title from wwpob_page$ where id=l_page_id;
    More information on DB provider can be found at
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/articles/understanding.database.providers.html
    Secondly, usage of wwpro_api_parameters.get_value method is
    incorrect. This method expects two arguments -
    <ul>
    <li><b>p_name : </b> The name of the parameter to be returned.</li>
    <li><b>p_reference_path : </b> An unique identifier for a portlet instance on the current page.</li>
    </ul>
    p_reference_path would be something like 99_SNOOP_PORTLET_76535103 and not some type of path as its name suggests.
    The following code fragment fetches all parameters available
    for a portlet.
    Note : Copy this code into 'show' method of your portlet.
    //Declare l_names, l_values as owa.vc_arr
    * Retreive all of the names of parameters for this portlet
    l_names := wwpro_api_parameters.get_names(
    p_reference_path=>p_portlet_record.reference_path);
    * Retreive all of the values of parameters for this portlet
    l_values := wwpro_api_parameters.get_values(p_names=>l_names,
    p_reference_path=>p_portlet_record.reference_path);
    //Loop through these arrays to get parameter information
    htp.p('<center><table BORDER COLS=2 WIDTH="90%" >');
    htp.p('<tr ALIGN=LEFT VALIGN=TOP>');
    htp.tableData(wwui_api_portlet.portlet_heading('Name',1));
    htp.tableData(wwui_api_portlet.portlet_heading('Value',1));
    htp.tableRowClose;
    if l_names.count = 0 then
    htp.p('<tr ALIGN=LEFT VALIGN=TOP>');
    htp.p('<td COLSPAN="2">'
    ||wwui_api_portlet.portlet_text(
    'No portlet parameters were passed on the URL.',1)
    ||'</td>');
    htp.tableRowClose;
    else
    for i in 1..l_names.count loop
    htp.p('<tr ALIGN=LEFT VALIGN=TOP>');
    htp.tableData(l_names(i));
    htp.tableData(l_values(i));
    htp.tableRowClose;
    end loop;
    end if;
    htp.p('</table></center>');
    Hope it helps...
    -aMJAD.

  • Reg: Dashboard page Name not getting displayed.

    Hi
    I have created a dashboard Dashboard1 and it has 5 different pages
    pg1 thru pg5. I have 5 users USER1,USER2.USER3,USER4 and USER5.
    I have assigned each page to a user and all the users have access to Dashboard1
    i.e
    USER1 pg1 of Dashboard1
    USER2 pg2 of Dashboard1
    USER3 pg3 of Dashboard1
    USER4 pg4 of Dashboard1
    USER5 pg5 of Dashboard1
    The problem is name of the pages is not displayed once the dashboard is accessed after log on..The report attached to that page is displaying data, but page name on the tab is blank...
    Could anybody help me with this information pls..
    Thanks in Advance...

    Hi,
    When a single page is placed on the Dashboard it will not show the page name as it won't show any tab on the Dashboard. This is happening by default.
    This case applies to your scenario as you restricting those pages among the users.
    To just check, give the permissions to the user1 to view 2 dashboard pages instead of 1. Then you can able to see the page names on the tabs as 2 pages are on the Dashboard for that user.
    I am also not aware of displaying the Page name when there is a single page on the dashboard...:(
    -Vency

  • Can I stop iWeb from putting a page name at the top?

    I don't want page names across the top in iWeb. I have a list of hyperlinked icons on the side for that.
    Can anyone tell me how to stop iWeb from putting the page name on the page?
    Thanks.

    The script is for the text in the browser title bar.
    The title is taken from the large textbox at the top of each webpage.
    If that box is missing or empty, iWeb uses a next textbox for the title.
    If that is missing too, the pagename is used for the title.
    If you want the title in the titlebar but not the large textbox on your page, select the textbox, do Cm-T and drag the font-size slider to the bottom.
    Then click the color next to the T-icon and drag that opacity slider to the left (0).
    Then resize the textbox to it minimun size and drag it out of view. And don't forget you did.
    But I think the OP means the navigation links at the top.

  • Can I import HTMLs from inside the project and use as portlet page ?

    As you know, I am using Java Studio Creator 2 Update 1 for my current portal project. I have created JSR-168 JSF Portlet Project for my portlet development.
    As I have some html pages ready for my development,
    Can I import HTMLs from inside the project and use as portlet page for my project?
    I did the followings steps:
    1: In side the project - File -> Add Existing Item -> Web Page ( imported test.html page from my local folder)
    2: Let it convert some of the tags for me ( so now it becomes - �test.jsp� )
    3: Set it to initial view.
    4. A default portlet page � newPortletPage.jsp is still there with no initial view.
    Now after doing this, No Visual Designer and Properties window available to for that �test.jsp� page. Though it allowed me to �build� the project successfully.
    When I build and run the portlet application, got the error message �Error occurred in portlet!� on Pluto Portal. Please advice.

    You do not open fcpproject files. You don't double click or anything else. The files have to be in the correct folder structure in the Final Cut Projects folder and the application opens them automatically. Can you post screen shots of the Final Cut Projects folder and its location.

  • Problem with pages name in dashboard  Oracle BIEE 11g

    Hello.
    I use Oracle BIEE 11.1.1.3.0
    I have dashboard 'CBR_CTLOG'. Dashboard has two pages 'Протокол контроля' and 'Протокол контроля детализированный'.
    Both pages have dashboards prompt with active "Apply to all prompt pages"
    When I go from 'Протокол контроля' to 'Протокол контроля детализированный', I get error:
    Invalid path (/shared/CBR/_portal/CBR_CTLOG/Протокол контроля детализированный) -- path not found in dashboard
    But when pages have English name "Test" and "Test2", I don't get this error.
    I think, it's connected with that I don't use English languages for pages name, and BI EE don't make link for crossing.
    How can I solve this problem, because I can't use English names for pages.

    Hi Ramon,
    I am also facing the same problem... My driver name get changed after installing oracle 8.1.7.. I also don't know how to change back the driver name..

  • 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 ?

  • What are the things to be changed when changing page name, model, jws, etc?

    Hi Everyone,
    My jdev version is 11.1.2.3.0.
    I have developed one ADF application with one page and it is working fine.
    Now i need to change my page name so i modified and it is also working fine.
    But while deploying it gives error like model-viewcontroller already exists because previous application without changes is already there in server.
    without disturbing the previous application i need to deploy this changed application as a new application to the web logic server.
    For that what are all the changes i need to perform and where to perform?
    Please give suggestions.
    Thanks.

    You only need to change the webroot and the application name (you may try with the same application name, but I', not sure it works then).
    When you then deploy the server take the ear a new application.
    Timo

  • How do i change the text in a submenu diffrent than the page name? I want it wrap into two lines

    How do i change the text in a submenu diffrent than the page name? I want it wrap into two lines or be a diffrent title but i can't figure out how to make any changes to the text.

    Hello,
    Text in Menu/Submenu canno tbe changed while using menu widget. However, if you use the Manual Menu option, then you can create your own Menu and add the hyperlinks according to your requirement.
    To create Manual Menu, please follow the steps below :
    1) In the Widget palette, go to "Menus" click and drag "Vertical/Hrizontal" into your artboard/workspace
    2) Click on the widget itself to a blue arrow appears to the right
    3) There is a drop down called "Menu Type" set it to "Manual" (as shown in screenshot) :
    4) Now You can create your own Menu and add your own text and hyperlink to  this Menu.
    Hope this helps.
    Regards,
    Sachin

  • Insert Page Name in Master page

    Hello.
    I was wondering if there was an easy way to insert the page name inside a master page, something like indesign's variable ?
    If i want this exactly like the widgets (drag and drop a box, it places with editable attribute of pageitem::menu), i'm ok to type and paste some html.
    (I also wonder how to use the widgets.muse file to build my own, but that's another question i guess)

    Thanks, this sounds like just what I'm after. However…
    I feel pretty silly asking this, but I can't understand the Adobe Help files on overriding a master item.
    It lists a two step process:
    Make sure the master item can be overridden -this seems to be fine. After selecting the inserted File Name in the master I can see a tick next to Allow Master Item Overrides On Selection in the Pages panel menu.
    Override specific master items on a document page - this is where I get lost.
    Firstly I can't select the items on a regular (non-master) page. Am I meant to select them on the master page?
    Secondly the help file simply says "Change the selected master items as desired." How do I change them. There's no explicit instruction, and I can't for the life of me work it out.
    More generally (if this does happen on a master), do I need to make this change on every document in the book, or can I simply make the change on the Style Source and then synchronise the remaining files?

  • Unable to update the page name programmatically

    Hi,
    I'm trying to change the Page title through the program. It seems, its updating but when I actually open the page and see the page it is not showing the updated page title.
    Here is the code
    IPcdObjectFactory pcdObjectFactory =
              ((IPcdGlService) PortalRuntime.getRuntimeResources().getService(IPcdGlService.KEY)).getPcdObjectFactory();
    IPcdAttribute newPcdAttr = null;
    newPcdAttr = pcdObjectFactory.createPcdAttribute(PcdAttributeValueType.STRING, "com.sap.portal.pcm.Title");
    if(att!=null && att.getType() == PcdAttributeValueType.STRING){
         newPcdAttr.set(0, new String("Test : Employé "));
    }else{
         newPcdAttr.set(pcdObjectFactory.getDefaultLocale(), new String("Test FR123: Employé"));               
    ModificationItem[] mods = new ModificationItem[] { new ModificationItem(DirContext.REPLACE_ATTRIBUTE, (Attribute) newPcdAttr)};
    targetobject.modifyAttributes("", mods);
    If we add this page to a workset as a delta link & it should reflect the updated page name
    We are on EP6 SP12
    Thank you,
    Satya

    Hi Satya,
    Can you explain a little what is your intended result? Is not clear (to me anyway) if you want to change the text in the navigation, page title inside an iview or browser title.
    Things that might interfere with what you want to do independent of the intended result is:
    1. Navigation cache: check that is turned off.
    2. User locale vs. iView/Page default Locale. If they are not equal and you change a "translatable" value you could be changing it right but the user won't see it.
    3. Even with the cache turned off I see very dificult that you could see the titled changed if "something" doesn't trigger some kind of refresh.
    Regards,

Maybe you are looking for

  • Append table - Regenerating a maintenance view

    People, I would like to create one more fied in a standard table, so I will create an append in this table. But it has a maintenance view associated to it. As this is a standard table, is there a way to regenerate this maintenance including the new f

  • Flat panel scanner hpscanjet 3570c

    I have an old flat panel scanner hp scanjet 3570c which has been working fine. I got a new hp laptop last month with windows 8 installed. I would like to continue using this scanner. Do you know of a driver I can download to make this work? Jim Beck

  • Any indicators for  3rd party Radio alarm clock docks and iPhone 5?

    Has Apple created any guidelines for the iPhone 5 when using an older radio alarm clock dock, using the lightning to 30 pin adapter ? My iPad is no problem, but my iPhone 5 (when I have it in hand) might be. Any ideas?

  • Trigger mutating and delete tables

    hello i have to update 2 tables one is mutating wich i already resolve, the other no and both get the values for a third table , after i update the 2 tables, i have to delete the values of the third one . But if i use the instruccion FOLLOWS this don

  • Is it bad to have the fans running?

    Is it bad for my macbook pro to be playing counter strike source for long amounts of time which makes the fans run this whole time?