Microsoft.Project.Server.Library missing namespace name 'Office' -Error while building a PSI application using WCF sample code to read calendar exceptions.

Hi,
I have a WCF application to pull calendar exception detail from a Project Server instance 2013. As per msdn links shared below I have added two dlls Microsoft.Office.Project.Server.Library , Microsoft.Office.Project.Server.Events.Receivers as well as ProjectserverServices.dll
from the server.
On building the solution I am an error, The type or namespace name 'Office' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?).
The links referred for development are-
https://msdn.microsoft.com/en-us/library/office/gg223326(v=office.15).aspx
https://msdn.microsoft.com/en-us/library/office/ee872368(v=office.15).aspx
Thanks in advance!!
Mridhula
Mridhula.S

Hi All,
The issue is resolved!! The Target framework by default was set to .NET Framework 4 Client Profile instead of .NET Framework 4.
Regards,
Mridhula
Mridhula.S

Similar Messages

  • Microsoft Project Server Support for SQL Server 2014

    Does anyone know the timeline for Microsoft Project Server to support deployment on SQL Server 2014?   Also, has anyone tried this yet as an unsupported deployment, and if so, have they found any issues?

    "SQL Server 2014 is not yet supported for Project Server 2013", as per the article Hardware
    and software requirements for Project Server 2013: https://technet.microsoft.com/en-us/library/ee683978(v=office.15).aspx updated as on Dec
    09, 2014.
    Cheers! Happy troubleshooting !!! Dinesh S. Rai - MSFT Enterprise Project Management Please click Mark As Answer; if a post solves your problem or Vote As Helpful if a post has been useful to you. This can be beneficial to other community members reading
    the thread.

  • Microsoft Project Server Event/Queue Services has been disable

    Hi after update Service pack 2 and December 2013 CU,Microsoft Project Server Event/Queue Services has been disable . I have manually change and start  but after some time again same thing happen.
    Kinldy let me know the process hwo to resolve this issue.
    I have fallow the below link but this is not impactable on my envirnment.
    http://blogs.technet.com/b/projectsupport/archive/2012/12/26/project-server-2010-my-queue-service-keeps-getting-disabled.aspx
    Help is appricable.
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

    Hi Muelder,
    Yes share point Project Appl service is enabled.
    Now i have resolved issue with the help of below script.
    ((Get-SPFarm).Services | ? {$_.Name -match "ProjectQueueService14"}).Instances | % {$_.Id} | Stop-SPServiceInstance -Confirm:$false -Verbose;
    ((Get-SPFarm).Services | ? {$_.Name -match "ProjectEventService14"}).Instances | % {$_.Id} | Stop-SPServiceInstance -Confirm:$false -Verbose;
    ((Get-SPFarm).Services | ? {$_.Name -match "ProjectQueueService14"}).Instances | % {$_.Id} | Start-SPServiceInstance -Confirm:$false -Verbose;
    ((Get-SPFarm).Services | ? {$_.Name -match "ProjectEventService14"}).Instances | % {$_.Id} | Start-SPServiceInstance -Confirm:$false -Verbose;
    ((Get-SPFarm).Services | ? {$_.Name -match "ProjectQueueService14"}).Instances | ft -AutoSize
    ((Get-SPFarm).Services | ? {$_.Name -match "ProjectEventService14"}).Instances | ft -AutoSize
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

  • Microsoft Project Server Online

    I need to know Microsoft Project Server Online fees/user and
    if we have a discount as we are a gold Microsoft partner  or for free, please advise?

    Hi,
    We can use the Microsoft Project Server 2013 trial version with below link:
    http://office.microsoft.com/en-us/project/project-server-2013-project-portfolio-management-software-FX103802061.aspx
    As far as I know, Microsoft has different business policy in different states and here is a technical forum. Thus, I recommend we connect the Customer Service Center or local provider.
    http://support.microsoft.com/gp/customer-service-phone-numbers/en-us
    Thanks for your understanding.
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • Integrate cProjects with Microsoft Project server

    Dear all,
    Does anyone know how to integrate cProjects 4.0 with Microsoft Project server 2003 in details? Pls kindly help.
    Thanks and best regards
    Trung

    Hi Murali,
    Do you have any documents showing how to configure cProjects step by step to integrate with Microsoft Project server? Pls help.
    Hi Niranjan,
    Pls check your email.
    Thanks and best regards,
    Trung

  • Microsoft Project Server for SharePoint Standard

    Hi,
    We are using Microsoft SharePoint Standard version. Which product in Microsoft family should we add on to get the full capabilities of Microsoft Project into SharePoint Standard version? Is it Microsoft Project server? But Microsoft Project Server has a
    prerequisite of SharePoint Server.
    Any ideas?

    From a licensing perspective to run Project Server you require SharePoint Server 2013 Enterprise edition. A user (or device) that is using Project server would therefore require all the following CALs:
    SharePoint Server Standard
    SharePoint Server Enterprise
    Project Server
    Jason Warren
    @jaspnwarren
    jasonwarren.ca
    habaneroconsulting.com/Insights

  • ¿Can i run the Microsoft Project Server in Mac OS X Lion Server?

    When i use the Mac OS X Lion Server, or even, the Mac OS X Leopard Server, can i run another program like Microsoft Project Server, because i need the features that this gives me.
    Thanks you for your solutions
    (is it possible on Xserver?)

    Unfortunately, no one will be be able to answer your question re. a not-yet-released OS; they either do not know or are prevented from sharing their knowledge because of an NDA.

  • CRM and Microsoft Project Server Integration

    Hello,
    Can anyone explain what solutions are available that can help in integrating SAP CRM with Microsoft Project Server? Is there any documentation available on this? Thanks.

    Hello Roberto,
    E-Mail rerouting is possible with an Exchange server. We use an adress [email protected] provided from the Exchangeserver. The mail is then forwarded to [email protected] to be retrieved by our CRM System for further processing. Please ask your Exchange admin again. I think he has to get wome more information about configuration possibilities.
    Regards
    Gregor

  • Project Server 2013: QueueUpdateProject2 fails with LookupTableItemInvalidLookupTable error

    Hi,
    We have a strange problem here using the newly introduced QueueUpdateProject2 PSI method in WebSvcProject. The server is running version 15.0.4481.1005 (Project Server 2013, March 2013 PU). Here's the minimum repro code:
    projectService.CheckOutProject(projectUid, sessionUid, sessionDescription);
    var projectDataSet = projectService.ReadProject(projectUid, DataStoreEnum.WorkingStore);
    projectDataSet.Project[0].SetModified(); // Simplest repro
    var jobUid = Guid.NewGuid();
    projectService.QueueUpdateProject2(jobUid, sessionUid, projectDataSet, false);
    Unfortunately the QueueUpdateProject2 queue job always fails with error LookupTableItemInvalidLookupTable for this project. Here's the full error information as shown in PWA:
    LookupTableItemInvalidLookupTable for lookup table value b99b7782-924c-e311-9404-00155d027b07:
    LookupTableItemInvalidLookupTable (11073). Details: id='11073' name='LookupTableItemInvalidLookupTable' uid='b1c62182-924c-e311-9404-00155d027b07'.
    Queue:
    GeneralQueueJobFailed (26000) - ProjectUpdate.ProjectUpdate2Message. Details: id='26000' name='GeneralQueueJobFailed' uid='b020bf82-924c-e311-9404-00155d027b07' JobUID='f294b911-f500-45bc-91ec-a493bdf3d07a' ComputerName='1beb2ff2-5dc9-4136-aa24-1c2be86c5768'
    GroupType='ProjectUpdate' MessageType='ProjectUpdate2Message' MessageId='2' Stage='' CorrelationUID='ce4e569c-0aa5-70d6-c576-8b3b764d14f1'. For more details, check the ULS logs on machine
    1beb2ff2-5dc9-4136-aa24-1c2be86c5768 for entries with JobUID
    f294b911-f500-45bc-91ec-a493bdf3d07a.
    Here are some corresponding entries from the ULS log:
    11/13/2013 19:36:30.82  Microsoft.Office.Project.Server (0x06D0) 0x1E60 Project Server                 Active Cache Save            
     myzo Medium   Error is: LookupTableItemInvalidLookupTable. Details: LookupTableItemInvalidLookupTable for lookup table value b99b7782-924c-e311-9404-00155d027b07 . Standard Information: , LogLevelManager Warning-ulsID:0x6D797A6F has no
    entities explicitly specified. ce4e569c-0aa5-70d6-c576-8b3b764d14f1
    11/13/2013 19:36:30.82  Microsoft.Office.Project.Server (0x06D0) 0x1E60 Project Server                 Active Cache Save            
     4zbp Monitorable PWA:, ServiceApp:Project Server Service Application, User:i:0#.w|my\account, PSI: [TrackingId:fa790381-924c-e311-9404-00155d027b07][ResourceId:3222f5b7-c13b-e311-9404-00155d027b07][SessionGuid:db83645c-50e1-4368-a59f-94df13ff7d5e][SessionDescr:][JobGuid:af20bf82-924c-e311-9404-00155d027b07][ProjectGuid:81a4a757-c446-e311-9404-00155d027b07][PS_AC][400]
    Microsoft.Office.Project.Server.BusinessLayer.WinProjUtility.WinProjException: LookupTableItemInvalidLookupTable for lookup table value b99b7782-924c-e311-9404-00155d027b07     at Microsoft.Office.Project.Server.BusinessLayer.WinProjUtility.P12Deserializer.PostReadRow(P12ContainerHeader
    cntrHeader, Row row)     at Microsoft.Office.Project.Server.BusinessLayer.WinProj.SaveProjectInternal(Guid projGuid, String projName, Int32 projType, Boolean ... ce4e569c-0aa5-70d6-c576-8b3b764d14f1
    11/13/2013 19:36:30.82* Microsoft.Office.Project.Server (0x06D0) 0x1E60 Project Server                 Active Cache Save            
     4zbp Monitorable ...isNewProj, Guid jobGuid, Guid sessionGuid, Guid checkOutByResUid, String sessionDescr, Boolean isFirstPacket, Boolean isLastPacket, String newVersionStamp, Int16 dataFormatVersion, Boolean isDataCompressed, Byte[] projectData,
    String winprojBuildNumber, ACProcessorType acProcType), LogLevelManager Warning-ulsID:0x347A6270 has no entities explicitly specified. ce4e569c-0aa5-70d6-c576-8b3b764d14f1
    We would be happy to provide more information if needed. Project Professional can open and save the project just fine, so it seems to be unrelated to other forum posts (1, 2).
    Has anybody seen this before? Any hints on where to search or what to look for?
    Thanks,
    Thomas
    TPG The Project Group
    [1] http://social.technet.microsoft.com/Forums/projectserver/en-US/da3c0d64-1ced-45dd-ace6-ce821fd1c362/what-are-the-lookup-fields-in-the-local-project-cant-publish-project-to-the-server
    [2] http://answers.microsoft.com/en-us/office/forum/office_2010-project/error-110730x2b41-importsave-to-project-server/03fd792f-4451-4512-ac0b-ddad946c3e3

    Just to clarify,  I get these errors in the ULS logs:
    06-11-2014 14:15:02.42        w3wp.exe (0x23AC)        0x23E0        Project
    Server        Active Cache Save        myzo        Medium        Error is: LookupTableItemInvalidLookupTable.
    Details: LookupTableItemInvalidLookupTable for lookup table value 440c1ce7-61f1-e311-944d-00155de84b1a . Standard Information: PSI Entry Point:  Project User: i:0#.w|africa\spsetupdev Correlation Id: f6a91701-62f1-e311-944d-00155de84b1a PWA Site URL:
    http://epmdev.af.didata.local/PWA SA Name: SharePoint_EPM_Dev_ProjectServerService PSError: LookupTableItemInvalidLookupTable (11073), LogLevelManager Warning-ulsID:0x6D797A6F has no entities explicitly specified.        72d0999c-429e-80e4-4f95-1037e3c788ff
    06-11-2014 14:15:02.42        w3wp.exe (0x23AC)        0x23E0        Project
    Server        Active Cache Save        4zbp        Monitorable        PWA:http://epmdev.af.didata.local/PWA,
    ServiceApp:SharePoint_EPM_Dev_ProjectServerService, User:i:0#.w|africa\spsetupdev, PSI: [TrackingId:f6a91701-62f1-e311-944d-00155de84b1a][ResourceId:f6760993-7a33-47ef-8cea-0c9cc5231ae7][SessionGuid:6c189001-cd9e-e311-9426-00155d879c00][SessionDescr:ZABRYSVEPMD01\Dev
    PWA][JobGuid:d3e31201-62f1-e311-944d-00155de84b1a][ProjectGuid:7537ccc0-7692-4456-93dd-fc7adcb5d1c8][PS_AC][807] Microsoft.Office.Project.Server.BusinessLayer.WinProjUtility.WinProjException: LookupTableItemInvalidLookupTable for lookup table value 440c1ce7-61f1-e311-944d-00155de84b1a    
    at Microsoft.Office.Project.Server.BusinessLayer.WinProjUtility.P12Deserializer.PostReadRow(P12ContainerHeader cntrHeader, Row row)     at Microsoft.Office.Project.Server.BusinessLayer.WinProj.SaveProjectInternal(Guid projGuid, String projName,
    Int32 projType, Boolean isNewProj, Guid jobGuid, Guid sessionGuid, Guid checkOutByResUid, String sessionDescr, Boolean isFirstPacket, Boolean isLastPacket, String newVersionStamp, Int16 dataFormatVersion, Boolean isDataCompressed, Byte[] projectData, String
    winprojBuildNumber, ACProcessorType acProcType), LogLevelManager Warning-ulsID:0x347A6270 has no entities explicitly specified.        72d0999c-429e-80e4-4f95-1037e3c788ff
    And in addition to that, we get the Error  9000 when saving in MSP.  
    Still downloading the files, but the more and more I look at it I'm hopeful this will solve our problem.
    http://blogs.umtsa.co.za/nicoo

  • Product: Microsoft SQL Server 2012 Transact-SQL Compiler Service -- Error 1335

    Hello,
    I am getting an error while using windows update or manually downloading and running
    SQLServer2012-KB2793634-x64.exe
    Product: Microsoft SQL Server 2012 Transact-SQL Compiler Service  -- Error 1335. The cabinet file 'Redist.cab' required for this installation is corrupt and cannot be used. This could indicate a network error, an error reading from installation media,
    or a problem with this package.
    What can be done?
    Thanks
    Bye

    Hello,
    I am getting an error while using windows update or manually downloading and runningT
    SQLServer2012-KB2793634-x64.exe
    Product: Microsoft SQL Server 2012 Transact-SQL Compiler Service  -- Error 1335. The cabinet file 'Redist.cab' required for this installation is corrupt and cannot be used. This could indicate a network error, an error reading from installation media,
    or a problem with this package.
    What can be done?
    Thanks
    Bye
    This KB article was issued as fix for known Issue as per below link.
    http://support.microsoft.com/kb/2793634
    Now I assume you are getting this error because downloaded file seems corrupt to me.Can you download again and copy it to local disk and start running  from there.
    http://www.microsoft.com/en-in/download/details.aspx?id=36215
    Also make sure your installer is not corrupt.If you find it corrupt please download it from below link and install after that run the setup again
    http://support.microsoft.com/kb/942288
    Hope this helps
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Exchange Server Information Store has encountered an error while executing a full-text index query

    Hi Team need help
    Exchange 2013 EAC doesnt show the databases and it gives message
    "Your request couldn't be completed. Please try again in a few minutes."
    Its a 9 Node DAG and I stopped and diabled Search and Search Host controller on all of them
    in the event viewer see a lot of Event id 1012
    Log Name:      Application
    Source:        MSExchangeIS
    Date:          4/1/2013 9:23:48 AM
    Event ID:      1012
    Task Category: General
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      ex1301.dagdc.com
    Description:
    Exchange Server Information Store has encountered an error while executing a full-text index query ("and(or(itemclass:string("IPM.Note*", mode="and"), itemclass:string("IPM.Schedule.Meeting*", mode="and"), itemclass:string("IPM.OCTEL.VOICE*",
    mode="and"), itemclass:string("IPM.VOICENOTES*", mode="and")), subject:string("SearchQueryStxProbe*", mode="and"), folderid:string("48A300C7FBA4DA408B80EB019A1CE94900000000000E0000"))"). Error
    information: System.TimeoutException: Failed to open a channel.
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.ExecuteServiceCall(IProcessingEngineChannel& serviceProxy, Action`1 call, Int32 retryCount)
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.ExecuteSearchFlow(String flowName, Dictionary`2 inputData)
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.<ExecuteInternal>d__18.MoveNext()
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.<ExecuteSimple>d__a.MoveNext()
       at Microsoft.Exchange.Server.Storage.FullTextIndex.FullTextIndexQuery.ExecutePagedFullTextIndexQuery(Guid databaseGuid, Guid mailboxGuid, Int32 mailboxNumber, String query, CultureInfo culture, Guid correlationId, QueryLoggingContext loggingContext,
    PagedQueryResults pagedQueryResults)
       at Microsoft.Exchange.Server.Storage.StoreCommonServices.StoreFullTextIndexHelper.ExecuteFullTextIndexQuery(Context context, MailboxState mailboxState, QueryParameters queryParameters, PagedQueryResults pagedQueryResults, ExchangeId searchFolderId,
    SearchExecutionDiagnostics diagnostics)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="MSExchangeIS" />
        <EventID Qualifiers="49156">1012</EventID>
        <Level>2</Level>
        <Task>1</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-04-01T16:23:48.000000000Z" />
        <EventRecordID>192599</EventRecordID>
        <Channel>Application</Channel>
        <Computer>ex1301.dagdc.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data>and(or(itemclass:string("IPM.Note*", mode="and"), itemclass:string("IPM.Schedule.Meeting*", mode="and"), itemclass:string("IPM.OCTEL.VOICE*", mode="and"), itemclass:string("IPM.VOICENOTES*",
    mode="and")), subject:string("SearchQueryStxProbe*", mode="and"), folderid:string("48A300C7FBA4DA408B80EB019A1CE94900000000000E0000"))</Data>
        <Data>System.TimeoutException: Failed to open a channel.
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.ExecuteServiceCall(IProcessingEngineChannel&amp; serviceProxy, Action`1 call, Int32 retryCount)
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.ExecuteSearchFlow(String flowName, Dictionary`2 inputData)
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.&lt;ExecuteInternal&gt;d__18.MoveNext()
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.&lt;ExecuteSimple&gt;d__a.MoveNext()
       at Microsoft.Exchange.Server.Storage.FullTextIndex.FullTextIndexQuery.ExecutePagedFullTextIndexQuery(Guid databaseGuid, Guid mailboxGuid, Int32 mailboxNumber, String query, CultureInfo culture, Guid correlationId, QueryLoggingContext loggingContext,
    PagedQueryResults pagedQueryResults)
       at Microsoft.Exchange.Server.Storage.StoreCommonServices.StoreFullTextIndexHelper.ExecuteFullTextIndexQuery(Context context, MailboxState mailboxState, QueryParameters queryParameters, PagedQueryResults pagedQueryResults, ExchangeId searchFolderId,
    SearchExecutionDiagnostics diagnostics)</Data>
        <Binary>5B444941475F4354585D000084000000FF09000000000000000268000000808A00100000000080CA00100000000080B200100000000080D200100000000030FF001000000000309F00100000000030DF001000000000B09D001000000000B0DD001000000000B0ED001000000000B08D001000000000B095001000000000B0A5001000000000</Binary>
      </EventData>
    </Event>

    Hi,
    Please reenable and start the search engine service and try again.
    The simillar case for your reference:
    http://social.technet.microsoft.com/Forums/en-US/exchangesvrgeneral/thread/4f43ef50-b71f-4ab3-8ced-70f1c36c5509
    Hope it is hlepful.
    Fiona Liao
    TechNet Community Support

  • Can't open Project Server 2013 word documents with office 2010 installed

    hello forum members,
    we having issues opening a word document in a Project Server 2013 . we have Office 2010 on our computers installed. 
    when I click on a document link, i get a message "The webpage cannot be displayed".  the only way to open a document is to right click on link and select "Open". 
    Does Project Server 2013 require Office 2013 installed? If not, is there a way to open documents in Project Server 2013 without right clicking on links?
    tatiana
    tatiana

    Hi Tatiana,
    This is the know issue. I have experienced this issue with one of our client. The cause of issue as below -
    Scenario
    You have 2007 Microsoft Office installed on a computer.
    On the same computer, you also have a Microsoft Office 2013 application installed, such as Microsoft Lync 2013 or Microsoft Word 2013.
    SOLUTION
    To work around this issue, remove the Microsoft SharePoint Foundation Support program component from the Office 2013
    installation on the affected computer or computers. To do this, follow the “Install or remove individual Office program components” section of the following Microsoft Office website:
    Install or remove individual Office
    programs and components
    (http://office.microsoft.com/redir/HA010354261.aspx)
    After you complete these steps, repair 2007 Office. For more information about how to repair the installation, click
    the following article number to go to the article in the Microsoft Knowledge Base:
    924611
    (http://support.microsoft.com/kb/924611/ )
    How to install the individual 2007 Office features or to repair the installed 2007 Office programs
    Note When
    you follow these steps, set the Microsoft SharePoint Foundation Support
    component within Office Tools to Not Available.
    This solution doesn't apply to scenarios in which SharePoint Designer 2013 is installed on the affected computer.
    You can find further details here at Microsoft support site -
    http://support.microsoft.com/kb/2888015
    Hope this helps you.
    Cheers, Badal

  • Error on new windows 8.1 project: The type or namespace name 'Foundation' does not exist in the namespace

    I upgraded to win 8.1 and VS 2013. I created a new Windows 8.1 C# grid  project and tried to compile it and I'm seeing the  following error: Error 1 The type or namespace name 'Foundation' does not exist in the namespace [my namespace](are
    you missing an assembly reference?)
    The errors are in navigationhelper.cs line 59  
    [Windows.Foundation.Metadata.WebHostHidden] // Foundation has the squigglies
    public class NavigationHelper : DependencyObject
    and app.xaml.cs line 68 ==> rootFrame.Language = Windows.Globalization.ApplicationLanguages.Languages[0]; which causes this error: Error 2 The type or namespace name 'Globalization' does not exist in the namespace [my namespace] (are you missing
    an assembly reference?)
    Windows phone and mvc projects are working fine and I've installed all the updates and even tried to fix vs 2013.
    Any help Is greatly appreciated.

    I did some more investigation and noticed that if I create an app with a "." in the name then this problem occurs. For example create a windows store project with the default name "App1": this will compile.
    However if I name the project "App1.Forms" to correspeond with the default namespace I want, then this problem occurs.  Still investigating but anyone should be able to repro it with that step.

  • Unable open Project details or a project from PWA Project server 2010 with Alias name

    Hi,
    I am unable to open the Projects from Project center with the Alias name with the server name i am able to open the projects, version is  project server 2010,
    My system is ABC.DC.IN  alias name i have given is DEF.AD.COM  
    With the system name i can able access PWA and all are working fine.
    As i have observed with alias name i can able to login to  pwa and all the server  setting approval center all are working fine but only in the project center i am not able to open the projects (http://DEF.AD.COM/pwa/ProjectDrillDown.aspx .xxxx)
    its is coming in the below of the ie. 
    But with Alias name these are the issues i am facing,
    1.when longing with alias name its asking two times for user name and password
    2.when i click on a project from project center its taking some time and asking for user name and password after i enter user name and password "PAGE cannot displayed" error i am getting.
    can any one Help me. 
    vijay kommireddi

    Hi Eric,
    Thanks for your Reply.
    As you said i have added in Manged Path as  (Testpwa/projects.aspx as <Wildcard inclusion>) But still problem is there it is asking user
    name password again if click on any project in project center and  and showing page cannot be displayed error. 
    This is url its is showing in the below of the IE ( http://def.ad.com/testpwa/projectdrilldown.aspx?ProjUid=e28c6d43-85b6-478d-9542-2961cc81a69e)
    I have observed one more thing if click on Project
    details then only this issue  is coming project schedule and project information
    is also opening with Alias name.
    My farm version is 14.0.7015.1000
    Vijay Kommireddi

  • Microsoft Project Server 2013 with SharePoint Standard 2013

    Hi,
    We are using SharePoint 2013 standard. What are our options to implement project web app into our SharePoint architecture? Please note that we are not using SharePoint Server.
    Thanks, 

    Project Server 2013 requires SharePoint Server 2013 Enterprise edition. Users that use Project Server functionality require a SharePoint Server Standard CAL, Enterprise CAL, and Project Server CAL.
    I'm not sure I understand your last comment, SharePoint Server 2013 Standard Edition is SharePoint Server.
    Jason Warren
    @jaspnwarren
    jasonwarren.ca
    habaneroconsulting.com/Insights

Maybe you are looking for

  • Disabling the Button in Ap invoice through custom pll

    Hi i have done one customization in ap invoices , such way that in supplier screen --> organization tab--> created the DFF for the supplier limit say 4000 now in ap invoices screen, now i creating the PREPAYMENT, if the amount exceed that 4000, it wi

  • See & in query Designer for variable

    Hi guys, When i turn the technical name on in the Query designer, sometimes I see & in front and end of a variable. Sometimes, I dont see them. I was wondering why.

  • Pre-ordering albums before their release date

    If I pre-order an album prior to its official release date, does anyone know at what time of day during the release date I can download it? The album in question is released tomorrow (April 25). Can I download it at midnight? If so, midnight in what

  • I'm trying to open ADE. How can I do that

    ADE installeren: Als u ADE voor het eerst opent, zal u gevraagd worden om Adobe Digital Editions te activeren. U kunt anoniem activeren of met een Adobe ID. Indien u anoniem activeert, bent u enkel in staat om de boeken te downloaden op 1 enkele PC/l

  • DSEE 6.3 Released

    {font:arial,helvetica,sans-serif}We have just released the latest update in the Directory Server Enterprise Edition 6.x product line. {font} {font:arial,helvetica,sans-serif}This patch release brings: {font} <ul><li>      {font:arial,helvetica,sans-s