P6-Unifier Integration q

Has anyone been able to move following information from P6 to Unfier successfully?
1. Dependencies
What Data Mapping do you use for dependencies? 
Column   -> XML Element   ........in the Activity tab of the data mapping windows.
2. activity Planned Cost in P6
Want to move P6 activity Planned Total Cost or At Completion Total Cost to Unifier activity. What Activity mapping should I be using for this?  (Column --> XML Element) I tried following but both did not work
Total Cost      PlannedTotalCost
Fixed Cost     PlannedTotalCost
3. I am able to move all resource assignments  in P6 to Unifier and I moved the assignment PlannedCost to P6 Cost field in Unifier. But I am not able to get the P6 Planned Units for assignments to Quantity (Qty) field in Unifier. I am using default mapping which shows me in the Resources tab as:
Quantity (Qty) ---> PlannedUnits
In my case I have assignment in P6 with planned units as 8 but when the assignment is created in Unifier, it is showing me Qty as 57. There is another assignment with Planned Units in P6 as 32 but when the assignment comes to Unifier, the Qty is 228. Has anyone here were successful in getting Planned Units for assignments to move to Qty field in Unifier?

What is the URL you entered? Make sure it is just the host and port like http://host:port. Save it and then retry and let me know if that works
Regards,
Sachin Gupta

Similar Messages

  • P6 8.3 and Unifier integration issue.

    I had enter correct unifier URL,company short name and authentication key in P6 application setting page.
    Then i selected  Action >Project Set preferences>Primavera Unifier and selected "Link Project to Primavera Unifier Project"
    After that when i select search unifier project new window is opening but i am not seeing any of unifier project.
    But 2 unifier project are avaliable in unifier.
    Please help

    What is the URL you entered? Make sure it is just the host and port like http://host:port. Save it and then retry and let me know if that works
    Regards,
    Sachin Gupta

  • WSDL2Java for Unifier Integration

    Hi,
    How do we get the WSDL file to be used in integration.
    It doesn't seem to be available as a .wsdl file from the installed/deployed folders.
    Please suggest.
    Thanks,
    Ravi V.

    Hi,
    I have used the WSDL URL instead of file.
    Now WSDL2Java fails with the below error
    java.io.IOException: Type {http://xml.apache.org/xml-soap}DataHandler is referenced but not defined.
            at org.apache.axis.wsdl.symbolTable.SymbolTable.checkForUndefined(SymbolTable.java:665)
            at org.apache.axis.wsdl.symbolTable.SymbolTable.add(SymbolTable.java:545)
            at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:518)
    Axis 1.4 is used. Is there an issue with 1.4.
    Thanks,
    Ravi V

  • Sending SAP project to Unifier through TIBCO

    We have Unifier integrated with SAP. Project is created in SAP and sent to Unifier, but it is not getting populated in Unifier. Logs showing error that "Unifier WS Return Status Message = Create Project failed because :Could not invoke method cloneProjectBP."

    Well, if you really want an accurate answer or suggestions, you really need to be more forthcoming with the information. No one can see your rig or your media over the internet.
    What sort of media did you render out of Color?
    What sort of storage device are you using to house those rendered files?
    With a tad of deference to the other poster, occasionally Color will not create the same sequence as the files I've rendered out although it will more often than not. I know how to figure this out and fix the issue. If I were you, I'd ascertain what your sequence settings are and what the clip properties are. Do they match? If not, how do you get them to match? Not too difficult.

  • Moving to EclipseLink (SessionCustomizer problem)

    Hi,
    I moved from Toplink Essentials to EclipseLink with Tomcat 6.0.18 and have this problem:
    I created two web applications both uses EclipseLink. Due to using non-jta-datasources I created in both applications JPAEclipseLinkSessionCustomizer as shown here: http://wiki.eclipse.org/EclipseLink/Examples/JPA/Tomcat_Web_Tutorial
    When I start one application everything works fine. As soon as I run the other application which uses EclipseLink I got exception:
    Exception [EclipseLink-28014] (Eclipse Persistence Services - 1.1.1.v20090430-r4097): org.eclipse.persistence.exceptions.EntityManagerSetupException
    Exception Description: Exception was thrown while processing property (eclipselink.session.customizer) with value (hlaseni.JPAEclipseLinkSessionCustomizer).
    Internal Exception: java.lang.ClassCastException: hlaseni.JPAEclipseLinkSessionCustomizer cannot be cast to org.eclipse.persistence.config.SessionCustomizer
    Can anyone help?
    Thanks
    PERSISTENCE.XML
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
    <persistence-unit name="hlaseniPU" transaction-type="RESOURCE_LOCAL">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <non-jta-data-source>java:comp/env/jdbc/Hlaseni</non-jta-data-source>
    <class>hlaseni.entity.Zmeny</class>
    <exclude-unlisted-classes>true</exclude-unlisted-classes>
    <properties>
    <property name="eclipselink.session.customizer" value="hlaseni.JPAEclipseLinkSessionCustomizer"/>
    <property name="eclipselink.logging.level" value="INFO"/>
    </properties>
    </persistence-unit>
    </persistence>
    CLASS JPAEclipseLinkSessionCustomizer:
    package hlaseni;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import org.eclipse.persistence.config.SessionCustomizer;
    import org.eclipse.persistence.sessions.JNDIConnector;
    import org.eclipse.persistence.sessions.Session;
    public class JPAEclipseLinkSessionCustomizer implements SessionCustomizer {
    public void customize(Session session) throws Exception {
    JNDIConnector connector = null;
    Context context = null;
    try {
    context = new InitialContext();
    if (null != context) {
    connector = (JNDIConnector) session.getLogin().getConnector(); // possible CCE
    connector.setLookupType(JNDIConnector.STRING_LOOKUP);
    System.out.println("_JPAEclipseLinkSessionCustomizer: configured " + connector.getName());
    } else {
    throw new Exception("_JPAEclipseLinkSessionCustomizer: Context is null");
    } catch (Exception e) {
    e.printStackTrace();
    }

    Pavel,
    I was able to run EclipseLink JPA using a non-JTA datasource on Tomcat 6.0.18 using the following configuration.
    I will update the tutorial with this 3rd type of database connectivity.
    1) transaction-type RESOURCE_LOCAL direct connection using "javax.persistence.jdbc" properties - previously working
    2) transaction-type RESOURCE_LOCAL non-JTA datasource connection using "non-jta-data-source" or "javax.persistence.nonJtaDataSource" - verified today
    3) transaction-type JTA "jta-data-source" - working only when Tomcat is run as a service
    2) non-jta-datasource setup for persistence.xml, web.xml and server.xml
    Note: if the resource-ref setup is missing or if the jndi names do not match you will see "name not bound" exceptions
    persistence.xml
    <persistence-unit name="statJPA" transaction-type="RESOURCE_LOCAL">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <non-jta-data-source>java:comp/env/ds/OracleDS</non-jta-data-source>
    <class>org.eclipse.persistence.example.unified.business.***</class>
    <properties>
    <property name="eclipselink.session.customizer" value="org.eclipse.persistence.example.unified.integration.JPAEclipseLinkSessionCustomizer"/>
    <property name="eclipselink.target-database" value="org.eclipse.persistence.platform.database.oracle.OraclePlatform"/>
    <!-- this one overrides -->
    <property name="javax.persistence.nonJtaDataSource" value="java:comp/env/ds/OracleDS"/>
    <property name="eclipselink.logging.level" value="FINEST"/>
    </properties>
    </persistence-unit>
    JPAEclipseLinkSessionCustomizer.java
    - matches what is on
    http://wiki.eclipse.org/EclipseLink/Examples/JPA/Tomcat_Web_Tutorial#Session_Customizer
    web.xml
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
    <display-name>UnifiedTomcatWeb</display-name>
    <servlet>
    <display-name>FrontController</display-name>
    <servlet-name>FrontController</servlet-name>
    <servlet-class>org.eclipse.persistence.example.unified.presentation.FrontController</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>FrontController</servlet-name>
    <url-pattern>/FrontController</url-pattern>
    </servlet-mapping>
    <persistence-context-ref>
    <persistence-context-ref-name>persistence/em</persistence-context-ref-name>
    <persistence-unit-name>statJPA</persistence-unit-name>
    </persistence-context-ref>
    <resource-ref>
    <description>DB Connection</description>
    <res-ref-name>ds/OracleDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    server.xml
    <GlobalNamingResources>
    <Resource
    name="ds/OracleDS"
    auth="Container"
    type="javax.sql.DataSource"
    maxActive="100"
    maxIdle="30"
    maxWait="10000"
    username="scott"
    password="pw"
    driverClassName="oracle.jdbc.driver.OracleDriver"
    url="jdbc:oracle:thin:@y.y.y.y:1521:orcl"
    />
    </GlobalNamingResources>
    <Context
    className="org.apache.catalina.core.StandardContext"
    cachingAllowed="true"
    charsetMapperClass="org.apache.catalina.util.CharsetMapper"
    cookies="true" crossContext="false" debug="0"
    displayName="UnifiedTomcatWeb"
    docBase="C:\opt\tomcat6018\webapps\UnifiedTomcatWeb.war"
    mapperClass="org.apache.catalina.core.StandardContextMapper"
    path="/UnifiedTomcatWeb"
    privileged="false" reloadable="false"
    swallowOutput="false" useNaming="true"
    wrapperClass="org.apache.catalina.core.StandardWrapper">
    <ResourceLink
    global="ds/OracleDS"
    name="ds/OracleDS"
    type="javax.sql.DataSource"/>
    </Context>
    </Host>
    Logs:
    [EL Finest]: 2009-06-01 15:19:23.828--ServerSession(13961193)--Thread(Thread[http-8080-1,5,main])--property=javax.persistence.nonJtaDataSource; value=java:comp/env/ds/OracleDS
    [EL Finest]: 2009-06-01 15:19:23.844--ServerSession(13961193)--Thread(Thread[http-8080-1,5,main])--property=eclipselink.session.customizer; value=org.eclipse.persistence.example.unified.integration.JPAEclipseLinkSessionCustomizer
    _JPAEclipseLinkSessionCustomizer: configured java:comp/env/ds/OracleDS*+_
    [EL Info]: 2009-06-01 15:19:23.844--ServerSession(13961193)--Thread(Thread[http-8080-1,5,main])--EclipseLink, version: Eclipse Persistence Services - 2.0.0.qualifier
    [EL Config]: 2009-06-01 15:19:23.859--ServerSession(13961193)--Connection(6427893)--Thread(Thread[http-8080-1,5,main])--connecting
    (DatabaseLogin(
    platform=>OraclePlatform
    user name=> ""
    connector=>JNDIConnector datasource name=>java:comp/env/ds/OracleDS
    [EL Config]: 2009-06-01 15:19:24.327--ServerSession(13961193)--Connection(24968504)--Thread(Thread[http-8080-1,5,main])--Connected
    : jdbc:oracle:thin:@y.y.y.y:1521:orcl
    User: SCOTT
    Database: Oracle Version: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Driver: Oracle JDBC driver Version: 11.1.0.0.0-Beta5
    EL Info]: 2009-06-01 15:19:24.358--ServerSession(13961193)--Thread(Thread[http-8080-1,5,main])--file:/C:/opt/tomcat6018/webapps/UnifiedTomcatWeb/WEB-INF/classes/-statJPA login successful
    - user sends "demo" command to servlet....
    [EL Finer]: 2009-06-01 15:19:24.39--ServerSession(13961193)--Thread(Thread[http-8080-1,5,main])--client acquired
    [EL Finest]: 2009-06-01 15:19:24.39--UnitOfWork(13645178)--Thread(Thread[http-8080-1,5,main])--PERSIST operation called on: [email protected].
    [EL Finer]: 2009-06-01 15:19:24.483--UnitOfWork(13645178)--Thread(Thread[http-8080-1,5,main])--begin unit of work commit
    [EL Finer]: 2009-06-01 15:19:24.483--ClientSession(26548428)--Connection(16408563)--Thread(Thread[http-8080-1,5,main])--begin transaction
    [EL Finest]: 2009-06-01 15:19:24.499--ClientSession(26548428)--Thread(Thread[http-8080-1,5,main])--reconnecting to external connection pool
    [EL Finest]: 2009-06-01 15:19:24.499--UnitOfWork(13645178)--Thread(Thread[http-8080-1,5,main])--Execute query InsertObjectQuery([email protected])
    [EL Fine]: 2009-06-01 15:19:24.499--ClientSession(26548428)--Connection(26760685)--Thread(Thread[http-8080-1,5,main])--INSERT INTO
    STAT_LABEL (ID, DATE_STAMP) VALUES (?, ?)
    bind => [7127, null]
    thank you
    /michael

  • Lync 2013 On Premises integration with Exchange Online Unified Messaging

    I am working on deploying Lync 2013 Server on premises and integrating it with Exchange Online. We do not use Exchange on premises.
    My question is how to integrate with Unified Messaging specifically. Other functions like Calendar, call logs seem to be working fine.
    There are many guides online on how to do this, and I have read many and attempted to follow with no luck. All seem to assume that UM has already been deployed on prem which I don't have. Is this possible to integrate Lync with Exchange Online without having
    and Exchange deployment on premises first.
    Another source of confusion is the Office Voice Access number and how Lync clients dial voicemail. Where does this go if somebody dials internally (from Lync) and externally (from PSTN)? Exchange online or Lync on prem? And if Lync, then my guess would be
    Lync forwards on to Exchange Online UM somehow. Do I have to purchase a number from somewhere because of it being on 365 or can I use a spare DID?
    From my tests so far, when I call voicemail as any user, it seems to dial that same user and then the call fails.
    Hopefully someone can shed some light on this for me.

    You can integrate Exchange UM with Lync Server 2013.
    Please check the deployment process at http://technet.microsoft.com/en-us/library/gg398968.aspx
    Lisa Zheng
    TechNet Community Support

  • Ask the Expert: C-Series Integration with Cisco Unified Computing System Manager

    Welcome to the Cisco Support Community Ask the Expert conversation. This conversation is an opportunity to learn and ask questions about Cisco C-Series Integration with Cisco Unified Computing System® Manager (Cisco UCS® Manager) with Cisco experts Vishal Mehta and Manuel Velasco.
    Cisco UCS C-Series Rack-Mount Servers are managed by the built-in standalone software, Cisco Integrated Management Controller (Cisco IMC). When a C-Series rack-mount server is integrated with Cisco UCS Manager, the IMC no longer manages the server. Instead you will manage the server using the Cisco UCS Manager GUI or Cisco UCS Manager command-line interface (CLI).
    Cisco UCS Manager 2.2 provides three connectivity modes for Cisco UCS C-Series Rack-Mount Server management. The following are the connectivity modes:
    Dual-wire management (shared LAN On Motherboard [LOM]): Shared LOM ports on the rack server are used exclusively for carrying management traffic.A separate cable connected to one of the ports on the Payment Card Industry Express (PCIe) card carries the data traffic.
    SingleConnect (Sideband): Using Network Controller Sideband Interface (NC-SI), the Cisco UCS Virtual Interface Card 1225 (VIC1225) connects one cable that can carry both data and management traffic.
    Direct Connect Mode: Cisco UCS Manager Version 2.2 introduces an additional rack server management mode using direct connection to the Fabric Interconnect.
    Vishal Mehta is a customer support engineer for Cisco’s Data Center Server Virtualization Technical Assistance Center (TAC) team based in San Jose, California. He has been working in the TAC for the past 3 years with a primary focus on data center technologies such as Cisco Nexus® 5000, Cisco UCS, Cisco Nexus 1000V, and virtualization. He presented at Cisco Live in Orlando 2013 and will present at Cisco Live Milan 2014 (BRKCOM-3003, BRKDCT-3444, and LABDCT-2333). He holds a master’s degree from Rutgers University in electrical and computer engineering and has CCIE® certification (number 37139) in routing and switching and service provider.
    Manuel Velasco is a customer support engineer for Cisco’s Data Center Server Virtualization TAC team based in San Jose, California.  He has been working in the TAC for the past 3 years with a primary focus on data center technologies such as Cisco UCS, Cisco Nexus 1000V, and virtualization.  Manuel holds a master’s degree in electrical engineering from California Polytechnic State University (Cal Poly) and CCNA® and VMware VCP certifications. Remember to use the rating system to let Vishal and Manuel know if you have received an adequate response. 
    Because of the volume expected during this event, our experts might not be able to answer every question. Remember that you can continue the conversation in the Data Center, under subcommunity, Unified Computing, shortly after the event. This event lasts through May 23, 2014. Visit this forum often to view responses to your questions and the questions of other Cisco Support Community members.

    Hello Sebastian,
    The different modes of connecting C-Series with UCSM come into play depending on the type of infrastructure you already have along with C-Series and NIC model.
    Cisco UCS C-Series Rack-Mount Servers are managed by the built-in standalone software, Cisco Integrated Management Controller (CIMC) .
    Powerful features provided by Cisco UCS Manager can be leveraged to manage C-Series server by integrating  C-Series Rack-Mount Server with UCSM.
    This not only gives you rich-feature set but also one management plane to operate UCS-B Series Chassis and UCS-C Series Rack Server.
    You will manage the server using the Cisco UCS Manager GUI or Cisco UCS Manager CLI.
    Cisco UCS Manager 2.2 provides three connectivity modes for Cisco UCS C-Series Rack-Mount Server management.
    The following are the connectivity modes:
    •  Dual-wire Management (Shared LOM):
    Shared LAN on Motherboard (LOM) ports on the rack server are used exclusively for carrying management traffic. A separate cable connected to one of the ports on the PCIe card carries the data traffic. Using two separate cables for managing data traffic and management traffic is also referred to as dual-wire management.
    http://www.cisco.com/c/en/us/td/docs/unified_computing/ucs/c-series_integration/ucsm2-2/b_C-Series-Integration_UCSM2-2/b_C-Series-Integration_UCSM2-2_chapter_0100.html
    This mode is recommended when you have C-Server which does not  have or cannot support VIC 1225 card (such C-200 server)
    •  SingleConnect (Sideband):
    Using Network Controller Sideband Interface (NC-SI), Cisco UCS VIC1225 Virtual Interface Card (VIC) connects one cable that can carry both data traffic and management traffic.
    This feature is referred to as SingleConnect.
    http://www.cisco.com/c/en/us/td/docs/unified_computing/ucs/c-series_integration/ucsm2-2/b_C-Series-Integration_UCSM2-2/b_C-Series-Integration_UCSM2-2_chapter_011.html
    This most recommended Integration model when using FEX and VIC 1225 card
    •  Direct Connect Mode:
    Cisco UCS Manager release version 2.2 introduces an additional rack server management mode using direct connection to the Fabric Interconnect.
    This mode will eliminate the need for FEX module as Servers are directly plugged into the base ports of Fabric Interconnect
    http://www.cisco.com/c/en/us/td/docs/unified_computing/ucs/c-series_integration/ucsm2-2/b_C-Series-Integration_UCSM2-2/b_C-Series-Integration_UCSM2-2_chapter_0110.html
    Please let us know if you need more information. Thank you!
    Thanks,
    Vishal

  • Cisco Unified Communications integration with Exchange cloud service

    Has anyone integrated Presence and/or Unity Connection with an Cloud based Exchange provider service? Presence would be for calendar integration and Unity Connection would be for Unified Messaging (Single inbox for vmail and email)?
    Thanks,
    Mark

    Yes, BPOS is supported in CUC 8.5
    http://www.cisco.com/en/US/docs/voice_ip_comm/connection/8x/design/guide/8xcucdg010.html

  • Can anyone help on integrating Unifier with WebCenter Portal ? We are looking for a solution where we can show Unifier pages within WebCenter Portal application. Is this possible ?

    Can anyone help on integrating Unifier with WebCenter Portal ? We are looking for a solution where we can show Unifier pages within WebCenter Portal application. Is this possible ?

    If you simply would have posted here first, there are plenty of people who would have informed you of the current policy to have a data plan active on an account during the entire contract if purchasing a discounted smartphone.
    Unfortunately, there are just as many on here who would claim the people informing you about this policy of being Verizon plants spreading disinformation and trying to make people afraid to upgrade via this route.
    Yes this is a new policy, one which has been pointed out multiple times in these forums.  Good luck, but I doubt you will have an outcome over this which will make you happy.
    Verizon is closing as many loopholes to keep unlimited data as they can.

  • Unify & UCCXCTI - how tightly integrated - worried ref patching etc

    Hi
    We are currently lookingt at upgrading out old 4.1 Call Manager to the latest Unified version with new hardware etc.
    In our organisation we also have a call centre where we currently use a third party ACD solutuon that links in with a tapi connection to call manager.
    We also are looking at changing the ACD solution to a more scalebale, with more module options version as we sell these options to our clients.
    UCCXCTI has been mentioned but I am concerned that, even though its standalone in its own virtual box, it seems its integrated with Unify quite alot. I have also heard that if we need to patch/upgrade UCCXCTI to say get the latest modules orbug fixes, we may also have to upgrade Unify also at times. Is this correct?
    As we sell our call centre solution and the various modules in the ACD, I am thinking if indeed UCCXCTI and Unify are so heavily connected we should have a standalone system that, again is linked even via a tapi or sip connection with Unify.
    Any advice appreciated.
    Scott

    I am assuming that since you refer to CallManager specifically that when you reference, "Unify", you are referring to Unity which is the Unified Messaging solution for Cisco.  If that is the case, Unity and UCCX are independent of one another.  CallManager and UCCX are tightly integrated and there are some considerations in regards to application version upgrades across platforms.  As for patching of the OS and such, less integration there IMO - and moving into UC 8.0, UCCX will be moving to the Linux platform to match the CUCM and other applications.
    Hailey

  • Error While Integrating Unifier with Oracle Business Intelligence Publisher

    Dears,
    I followed up exactly the unifier installation documents, as well as the Configuring the BI Publisher for Unifier.
    And Once I am trying to enter the BI Publisher data in the Unifier Configuration i get an error message "TEST FAILED Connection couldn't be established"
    I am also confused which port to use, i tried both and both gave error:
    BIP Endpoint URL: http://localhost.com:9704    and I tried " http://localhost.com:7001"
    Your support is highly appreciated;
    Karim

    Hi Karim,
    First question is do you have BI Publisher installed and running?
    If so then test if you can get to a login screen with one of the following URLs:
    http://localhost:7001
    http://localhost:9704
    Let us know how you go.
    Regards
    Alex

  • Unified Contact Store UCS integration issue - Event Source: LS Storage Service - Event ID: 32043

    Experiencing weird issues with getting UCS working in one environment (including OWA/IM and UM). Event Source: LS Storage Service - Event ID: 32043
    I've had no issues with UCS in other environments with multiple 2013 Mailbox servers and multiple 2013 CAS servers. This particular environment is having issues. I do have Exchange split with MBX and CAS.
    I Followed all procedures from TechNet, NextHop, etc. I am Running same oAuth cert on all exchange and lync boxes.
    I still have Lync 2010 and Exchange 2010 in the environment, since I'm in the middle of a coexistence migration but don't really want to cut over to new servers until the Lync 2013 to Exchange 2013 integration is complete and tested.
    Test-CsExStorageConnectivity -SipUri [email protected] 
    Test-CsExStorageConnectivity : ExCreateItem exchange operation failed,
    code=574, reason=StoreContext{traceId=[2048369003],
    activityId=[53f4e8c5-e7e3-491a-adf4-cef37c517cb4]}StoreException:
    code=ErrorUnhandledException, reason=Wrapped callback failed --->
    System.InvalidOperationException: Client found response content type of '',
    but expected 'text/xml'.
    I have had a case opened with MS for weeks now and have torn down and rebuilt the config several times - the certificates should solid all around including using servers' FQDNs in the SN instead of just somewhere in the SAN list and using just the domain as
    the SN for the oAuth certs (using the exact same cert on both Lync and Exchange for oAuth)
    Any comments would be greatly appreciated
    Here are the steps i did on the integration (certificates not included however they are verified)
    ****************** ON LYNC
    Get-CsCertificate -Type OAuthTokenIssuer
    Issuer             : CN=dc02, DC=domain, DC=com
    NotAfter           : 11/12/2015 5:38:22 PM
    NotBefore          : 11/12/2013 5:38:22 PM
    SerialNumber       : 360000000901D6BF9542A0E971000100000009
    Subject            : CN=domain.com, OU=IT Department, O="Customer Name",
                         L=Santa Clarita, S=California, C=US
    AlternativeNames   : {}
    Thumbprint         : A42D2481AB68473EB25B78DAB8964ADDFF9F8245
    EffectiveDate      : 11/12/2013 5:48:30 PM
    PreviousThumbprint :
    UpdateTime         :
    Use                : OAuthTokenIssuer
    SourceScope        : Global
    Set-CsOAuthConfiguration -Identity Global -ExchangeAutoDiscoverURL 'https://excas02.domain.com/autodiscover/autodiscover.svc'
    New-CsPartnerApplication -Identity Exchange -ApplicationTrustLevel Full -MetadataUrl "https://excas02.domain.com/autodiscover/metadata/json/1"
    Identity                            : Exchange
    AuthToken                           : Value=https://excas02.domain.com/au
                                          todiscover/metadata/json/1
    Name                                : Exchange
    ApplicationIdentifier               : 00000002-0000-0ff1-ce00-000000000000
    Realm                               : domain.com
    ApplicationTrustLevel               : Full
    AcceptSecurityIdentifierInformation : False
    Enabled                             : True
    Get-CsOAuthConfiguration
    Identity                           : Global
    PartnerApplications                : {Name=Exchange;ApplicationIdentifier=00000
                                         002-0000-0ff1-ce00-000000000000;Realm=ushw
                                         orks.com;ApplicationTrustLevel=Full;Accept
                                         SecurityIdentifierInformation=False;Enable
                                         d=True}
    OAuthServers                       : {}
    Realm                              : domain.com
    ServiceName                        : 00000004-0000-0ff1-ce00-000000000000
    ExchangeAutodiscoverUrl            : https://excas02.domain.com/autodisco
                                         ver/autodiscover.svc
    ExchangeAutodiscoverAllowedDomains :
    ****************** ON Exchange
    [Get-AuthConfig
    RunspaceId                    : 2b3c00ee-adbf-45a0-81d1-dc87d1e8aa6f
    CurrentCertificateThumbprint  : A42D2481AB68473EB25B78DAB8964ADDFF9F8245
    PreviousCertificateThumbprint :
    NextCertificateThumbprint     :
    NextCertificateEffectiveDate  :
    ServiceName                   : 00000002-0000-0ff1-ce00-000000000000
    Realm                         :
    Name                          : Auth Configuration
    AdminDisplayName              :
    ExchangeVersion               : 0.20 (15.0.0.0)
    DistinguishedName             : CN=Auth Configuration,CN=Customer,CN=Microsoft
                                    Exchange,CN=Services,CN=Configuration,DC=domain,DC=com
    Identity                      : Auth Configuration
    Guid                          : db55e975-4986-49b7-a799-15ecb8c40e8f
    ObjectCategory                : domain.com/Configuration/Schema/ms-Exch-Auth-Auth-Config
    ObjectClass                   : {top, container, msExchContainer, msExchAuthAuthConfig}
    WhenChanged                   : 1/28/2014 5:37:30 PM
    WhenCreated                   : 10/8/2013 6:35:32 PM
    WhenChangedUTC                : 1/29/2014 1:37:30 AM
    WhenCreatedUTC                : 10/9/2013 1:35:32 AM
    OrganizationId                :
    OriginatingServer             : DC04.domain.com
    IsValid                       : True
    ObjectState                   : Unchanged
    Set-ClientAccessServer -identity excas02 -AutodiscoverServiceInternalUri 'https://excas02.domain.com/autodiscover/autodiscover.xml'
    Get-ClientAccesSserver excas02 | fl
    RunspaceId                           : 568a785b-b51f-459a-abf2-d7283744a84a
    Name                                 : EXCAS02
    Fqdn                                 : EXCAS02.domain.com
    OutlookAnywhereEnabled               : True
    AutoDiscoverServiceCN                : EXCAS02
    AutoDiscoverServiceClassName         : ms-Exchange-AutoDiscover-Service
    AutoDiscoverServiceInternalUri       : https://excas02.domain.com/autodiscover/autodiscover.xml
    AutoDiscoverServiceGuid              : 77378f46-2c66-4aa9-a6a6-3e7a48b19596
    AutoDiscoverSiteScope                : {West}
    AlternateServiceAccountConfiguration :
    IsOutOfService                       : False
    WorkloadManagementPolicy             : DefaultWorkloadManagementPolicy_15.0.505.0
    Identity                             : EXCAS02
    IsValid                              : True
    ExchangeVersion                      : 0.1 (8.0.535.0)
    DistinguishedName                    : CN=EXCAS02,CN=Servers,CN=Exchange Administrative Group
                                           (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=Customer,CN=Microsoft
                                           Exchange,CN=Services,CN=Configuration,DC=domain,DC=com
    Guid                                 : 2d3b4138-a933-46e1-b5da-3f7115cb5d00
    ObjectCategory                       : domain.com/Configuration/Schema/ms-Exch-Exchange-Server
    ObjectClass                          : {top, server, msExchExchangeServer}
    WhenChanged                          : 1/30/2014 11:35:25 AM
    WhenCreated                          : 10/8/2013 7:06:35 PM
    WhenChangedUTC                       : 1/30/2014 7:35:25 PM
    WhenCreatedUTC                       : 10/9/2013 2:06:35 AM
    OrganizationId                       :
    OriginatingServer                    : DC04.domain.com
    ObjectState                          : Unchanged
    cd "C:\Program Files\Microsoft\Exchange Server\V15\Scripts\"
    .\Configure-EnterPrisePartnerApplication.ps1 -AuthMetadataUrl "https://lyfe02.domain.com/metadata/json/1" -ApplicationType Lync
    Creating User <LyncEnterprise-ApplicationAccount> for Partner Application.
    Created User <domain.com/Users/LyncEnterprise-ApplicationAccount> for Partner Application.
    Assigning role <UserApplication> to Application User <domain.com/Users/LyncEnterprise-ApplicationAccount>.
    Assigning role <ArchiveApplication> to Application User <domain.com/Users/LyncEnterprise-ApplicationAccount>.
    Creating Partner Application <LyncEnterprise-dd9f8b8f52fd4b4fb5f928a0d4a02b9c> using metadata <https://lyfe02.ushwor
    ks.com/metadata/json/1> with linked account <domain.com/Users/LyncEnterprise-ApplicationAccount>.
    Created Partner Application <LyncEnterprise-dd9f8b8f52fd4b4fb5f928a0d4a02b9c>.
    THE CONFIGURATION HAS SUCCEEDED.
    ****************** On Lync
    ******************  ERROR
    Test-CsExStorageConnectivity -SipUri [email protected]
    Test-CsExStorageConnectivity : ExCreateItem exchange operation failed,
    code=574, reason=StoreContext{traceId=[2109175579],
    activityId=[cf8138ff-9436-4f56-937e-26ab8c712ab2]}StoreException:
    code=ErrorUnhandledException, reason=Wrapped callback failed --->
    System.InvalidOperationException: Client found response content type of '',
    but expected 'text/xml'.
    The request failed with an empty response.
       at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapCli
    entMessage message, WebResponse response, Stream responseStream, Boolean
    asyncCall)
       at
    System.Web.Services.Protocols.SoapHttpClientProtocol.EndInvoke(IAsyncResult
    asyncResult)
       at Microsoft.Rtc.Internal.Storage.Exchange.Ews.ExchangeServiceBinding.EndInv
    oke(IAsyncResult asyncResult)
       at Microsoft.Rtc.Internal.Storage.Exchange.Ews.ExchangeServiceBinding.EndCre
    ateItem(IAsyncResult asyncResult)
       at Microsoft.Rtc.Internal.Storage.Adaptor.ExStoreAdaptor.OnCreateItemComplet
    e(IAsyncResult result)
       at
    Microsoft.Rtc.Internal.Storage.StoreAsyncResult`1.CallbackWrapper(IAsyncResult
    result)
       --- End of inner exception stack trace ---
       at Microsoft.Rtc.Internal.Storage.Api.StorageService.EndExecuteCommand(IAsyn
    cResult asyncResult)
    , exception=System.ServiceModel.FaultException:
    StoreContext{traceId=[2109175579],
    activityId=[cf8138ff-9436-4f56-937e-26ab8c712ab2]}StoreException:
    code=ErrorUnhandledException, reason=Wrapped callback failed --->
    System.InvalidOperationException: Client found response content type of '',
    but expected 'text/xml'.
    The request failed with an empty response.
       at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapCli
    entMessage message, WebResponse response, Stream responseStream, Boolean
    asyncCall)
       at
    System.Web.Services.Protocols.SoapHttpClientProtocol.EndInvoke(IAsyncResult
    asyncResult)
       at Microsoft.Rtc.Internal.Storage.Exchange.Ews.ExchangeServiceBinding.EndInv
    oke(IAsyncResult asyncResult)
       at Microsoft.Rtc.Internal.Storage.Exchange.Ews.ExchangeServiceBinding.EndCre
    ateItem(IAsyncResult asyncResult)
       at Microsoft.Rtc.Internal.Storage.Adaptor.ExStoreAdaptor.OnCreateItemComplet
    e(IAsyncResult result)
       at
    Microsoft.Rtc.Internal.Storage.StoreAsyncResult`1.CallbackWrapper(IAsyncResult
    result)
       --- End of inner exception stack trace ---
       at Microsoft.Rtc.Internal.Storage.Api.StorageService.EndExecuteCommand(IAsyn
    cResult asyncResult)
    Server stack trace:
       at
    System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime
    operation, ProxyRpc& rpc)
       at System.ServiceModel.Channels.ServiceChannel.EndCall(String action,
    Object[] outs, IAsyncResult result)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeEndService(IMethod
    CallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage
    reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData&
    msgData, Int32 type)
       at
    Microsoft.Rtc.Internal.Storage.IStorageService.EndExecuteCommand(IAsyncResult
    asyncResult)
       at Microsoft.Rtc.Management.Lyss.Cmdlets.LyssCmdletCommon.ExecuteExCommand(S
    toreOperation operation, String sipUri, BaseRequestType ewsRequest, Nullable`1
    autoCreateParentFolder, IStorageService& client, Boolean reAuthorize), inner
    exception=. Please check event log and trace for relevant information.
    At line:1 char:1
    + Test-CsExStorageConnectivity -SipUri [email protected]
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [Test-CsExStorageConnectiv
       ity], FaultException
        + FullyQualifiedErrorId : ErrorExecuteExchangeCommandFailedWithFaultExcept
       ion,Microsoft.Rtc.Management.Lyss.Cmdlets.TestExStorageConnectivityCmdlet
    Test failed.
    PS C:\Users\jmadsen>
    Jens

    I fixed the issue
    It had to do with the Lync server still trying to access the old CAS server
    For internal URLs on both CAS servers I am using the internal name, however the external url is https://webmail.domain.com
    On both servers and internally that DNS record points to the old CAS server since we haven't cut over users yet
    This was affecting the connection process some how Lync was using the external URL instead of the internal URL to connect to EWS
    I was able to see with a packet sniffer that Lync frontend was trying to communicate with both the new CAS server and the old CAS server
    When connecting to auto discovery it was connecting to the right CAS server, but after receiving the Autodiscover.xml it started connecting to webmail.ushworls.com (not EXCAS02)
    I create an entry in the local HOST file on the Lync Front end server and pointed webmail.domain.com to the new CAS server
    Issue Fixed – I can remove the entry from the host file after we make the DNS change internally and cut over users

  • CISCO UNIFIED CONTACT CENTER EXPRESS - SMS INTEGRATION

    Is is possible to integrate Cisco Unified Solutions (Cisco Unified Contact Center Express) with a SMS system? Do you have any recommendation of solution (ej. Quescom)?

    We do this all the time using XLM and SOAP...what exactly did you have in mind?
    Peace,
    Michael Clendening
    CCIE 6487 (ISP-Dial)

  • Question in Cisco Unified Meeting Place 8.5 with Webex integration

    Greetings,
    Let us say that I have the following requirements for fresh installation:
    UCS C210-M2
    CUWL-Pro for users (700 users)
    CUCM 8.6
    Cisco unified Meeting Place 8.5
    My concern is about Meeting place; one of the requirments is to order Meeting Place 8.5 for local (on-premises) audio conferencing, and use Cisco Webex (cloud) for Web & Video conferencing.
    I have the following questions:
    - What part numbers should be ordered for meeting place and Webex?
    - CUWL-Pro comes with Webex ports included, can use those ports?
    Thanks in advance..

    Hi Anand,
    For MP 8.5 new setup, you don't need a web server. Web server is an optional component only when you are upgrading the system from earlier MP releases.
    If you are installing Webex node, it needs to be on a seperate MCS server (however, this is an optional component).
    Application server and Express Media Server require only one UCS server if this is single node deployment.
    Hardware requirements for application server and Webex node can be found in the following documents:
    http://docwiki.cisco.com/wiki/Cisco_Unified_MeetingPlace_Release_8.5_--_Hardware_Requirements#Application_Server_Requirements
    http://docwiki.cisco.com/wiki/Cisco_Unified_MeetingPlace_Release_8.5_--_Hardware_Requirements#Cisco_WebEx_Node_Requirements
    The complete information about MP 8.5 requirements:
    http://docwiki.cisco.com/wiki/Category:Planning_for_Cisco_Unified_MeetingPlace_Release_8.5
    HTH,
    Natasa

  • Cisco Unified Presence and Cisco CCX Integration.

    Hi,
    Please suggest how to integrate Cisco Unified Presence with Cisco UCCX. What are the configuration are to be done on Cisco Unified Presence and CCX.
    Any good documents..
    Appreciate your response.
    Regards,
    Manish.

    Hi,
    The easiest thing to do is get CUPC working with the agent's credentials. Once that is working, you know that the CUPS piece is right. The document supplied previously shows the very limited CAD configuration that is required. This should go fine once you get CUPC working with the agent's information.
    Keep in mind that CUPC is not the same as CAD and there are important differences:
    1. You need to add an Inbound ACL to the CUPS server to allow connections from the CAD PCs as CAD does not support Message Digest as CUPC does. This is CSCtb50109.
    2. CAD does not escape special characters in the password, so use a password without special characters. This is
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    CSCtf25959.

Maybe you are looking for

  • Error Message in a dialog box

    Hi, I have defined a error message in a raise application error type. Is there a way can we change this error type to message box becouse after entering data I lose data what is been entered on page. becouse of this error type. Please suggest me how

  • Problems with ECATT recording using SAPGUI Record

    Hello, I got a problem with my recording. All the prerequisites are  done. The problem is,  that when the recording is done i don't see the recording in SECATT testcase. Normally when you do a recording you see at the bottom right of the gui a red/wh

  • IPod touch asking to connect to itunes

    My daughter's iPod touch 4th generation is asking to be connected to iTunes like it does when you first take it out of the box. Problem is its not new. I am hesitant to connect it because I don't know if she is going to lose any pictures, etc that ha

  • How do I import pics from LR 2 to LR 3.3

    I recently installed LR 3.3 (full version). As a result, I have 2 LR copies (LR 2 & LR 3.3). How do I import my pics from LR 2 to LR 3.3? Any assistance will be greatly appreciated.

  • Performance issue about using JDBC?

    Since no one reply me, I post again. :( I just got a big performance problem lately, and I tried all the possible ways, still can't fix it. Could you help me out or give me more suggestions? Oracle 8i for Solaris 2.6 A web application with back end i