Designing and configuring remotely in XI 3.0

Is it possible to have XI editors installed remotely so the XI config and development teams can access the repository and directory on a server where all the other XI components are installed? Do we have a web interface option instead of the remote client option that can be used for XI configuration and development?

Hi,
As along as javaVM and JavaWebStart is installed on a machine, one can
access XI tools. For example IR and CD can be accessed using the following links.
IR
http://<server>:<port>/rep/start/repository.jnlp
CD
http://<server>:<port>/dir/start/directory.jnlp
Naveen

Similar Messages

  • Force Integration Builder (Design and Configuration) language to be English

    Hi Experts!
    Does anyone know how to force the Integration Builder (Design and Configuration) language to be English? Since SSO is configured the logon screen do not appear and users can not choose the language they want. The problem is that the default language is German instead of English.
    Thanks in advance.
    Roger Allué i Vall

    Hi,
    I've changed these parameters in the ExchangeProfile:
    com.sap.aii.directory.serviceuser.language
    com.sap.aii.integrationserver.serviceuser.language
    com.sap.aii.ib.client.login.languages
    com.sap.aii.ib.client.content.languages
    com.sap.aii.adapterframework.serviceuser.language
    com.sap.aii.rwb.serviceuser.language
    com.sap.aii.applicationsystem.serviceuser.language
    com.sap.aii.docu.languages
    com.sap.aii.repository.serviceuser.language
    Now all they have the value EN. I also restarted the applications (Server --> Services --> Deploy) :
    sap.com/com.sap.aii.af.app
    sap.com/com.sap.aii.af.cpa.app
    However, nothing changed. Maybe I have to restart all the J2EE Engine?
    Thanks in advance.
    Roger Allué i Vall

  • PI B2B RNIF interface design and configuration

    Hello All,
    can anybody send me details of design steps and configuration steps in detail for RNIF 2.0 framework for PIPS
    Preferably Rosettanet 7B1 WIP Tracking, Rosettanet 3B12 Shipping Request
    thx
    mike

    Any body who can guide me the steps in ESR for RNIF PIP interfaces. I am expecting step by step instructions.
    Thank you very much!!
    mike

  • Design and configuration tips & suggestions

    This is the current configuration of switches I have setup on our network. Its about 150 miles long(east-west) and about 20 miles wide(north-south). All of the locations are connected via a wireless bridges(trango, tranzeo, smartbridges) or via an ISP private vlan. Currently I have the 3550's connecting to each other via ospf and they are all doing inter vlan routing. The 3550 at location 20(3550-20) is I guess one of the main switches. Its located at the data center and it has the most connections to other wirelessly connected buildings. I have it configured to do pbr to 4 different DSL connections and it also has the switches from the data center connected to it. The small to medium sized locations have 2950's or 2960's.
    To give you an idea of what is all going on now:
    18 Wireless Bridges
    1200 Workstations
    30 Servers
    3000 Users
    21 Mbit of internet access
    200 Gig's of Data being Backed up over night
    1 Local server at each location
    We are planning on implementing a video conferencing system soon as well as voice services in the future.
    What I would like to know is what is the best configuration for these switches to prepare them for video conferencing, data connections and maybe voice?
    Vlan Configurations?
    Trunking?
    Routing?
    QOS?
    Any ideas or suggestions on configurations would be great. I want to make sure I go about this the right way the first time so I'm not reconfiguring when we want to setup the video or voice services.
    Thanks,
    Dan.

    Hi,
    when designing and implementing a video and voip network there are many things to consider. So I will not try to list some of them but would recommend you to read through
    1) "IP Videoconferencing Solution Reference Network Design (SRND)"
    http://www.cisco.com/application/pdf/en/us/guest/netsol/ns280/c649/ccmigration_09186a00800d67f6.pdf
    2) "Enterprise QoS Solution Reference Network Design Guide Version 3.3"
    http://www.cisco.com/application/pdf/en/us/guest/netsol/ns432/c649/ccmigration_09186a008049b062.pdf
    3) "Campus Network Multilayer Architecture and Design Guidelines"
    http://www.cisco.com/application/pdf/en/us/guest/netsol/ns656/c649/cdccont_0900aecd804ab67d.pdf
    QoS will be needed in any case and there are separate chapters regarding your different Catalyst switches.
    Generally VoIP will be transported in separate Voice VLANs interconnected through IP routing. So you should also have a look into your overall LAN design. 3) gives you a guidance to a robust modern switching design.
    Hope this helps!
    Regards, Martin

  • JMS/clustering design and configuration question

    Hi:
              Any help or feedback much appreciated cos' this topic (no pun intended)
              seems to be complicated.
              I have an application that uses stateless session beans for mainline
              business functionality (heavy database writing) that is say then
              audited. The auditing is taken care of asynchronously by the SS bean's
              business method (after completing whatever it is doing) using a JMS
              connection factory to write to a queue which is consumed by a MDB. So,
              control is returned to the user ostensibly before the auditing is done
              for performance reasons. No transactional semantics are expected between
              the mainline business logic and the audit of same. So, our main use of
              JMS/MDB is for asynchrous operation. This design seems to be fine on a
              single server as long as a persistent store is configured.
              Now the hard part. We need to cluster - again for load-balancing and
              performance. As I've read thru this newsgroup and experimented some,
              I've quickly realized that it's not as simple as just configuring a
              cluster of just EJBs.
              Since the queues are basically used for asynch processing, would the
              following work?
              1) Set up a JMS server config for each WL server in the cluster targeted
              only for each WL server
              2) Set up a different queue for each JMS server with prefixed JNDI name
              (myserver1_someJNDIname)
              3) Configure/code the producer SS EJBs so that they ask the connection
              factory for a connection with a prefixed JNDI name (e.g
              myserver1_someJNDIname) based on the server they are running on (known
              perhaps from a property file local to each server)
              4) Target MDBs to be deployed on all servers in the cluster just like
              regular EJBs
              5) Finally, deploy the MDBs unjarred on each WL server and edit the
              weblogic-ejb-jar.xml on each server to set the -destination name-
              prefixed by the server on which it is deployed (e.g.
              myserver1_someJNDIname)
              Will the above basically accomplish what I'm after, which is a cluster
              of machines each equally capable of locally offloading asynchronous
              processing? I understand that for the most part WL server will use local
              EJBs, etc if they are available. I'm not particularly interested in
              failover at either EJB or JMS level, but rather HttpSession level so
              that if a WL server goes down another could pick up perhaps by by the
              user re-requesting whatever operation failed.
              If this is not possible because of the way clustering works (homogenous)
              then is there some other way to solve this problem. I basically do not
              want a cluster where there is a single point of failure (other than DB
              server) for any given piece of functionality.
              Thanks for any help.
              Alex
              

    First and easiest,
              Just create a set of JMS tables for each server in your db. You can specify
              a JMS tablename prefix in your weblogic properties for eash server using
              weblogic.jms.tableNamePrefix=W5
              as long as the prefix is only two chars. This worked great for us until we
              decided to drop JMS because of its memory leaks. We were having to restart
              our servers every 8 hours.
              Second, get rid of JMS. Dirty little secret:You don't need JMS to do
              asynchronous work! You can use threads inside of J2EE and not break J2EE.
              Can't tell you how for proprietary reasons but you can.
              Mica Cooper
              

  • I am unable to save a service work order designated and configured as MRS work order

    Every time I try to create a SM work order, and save it, I get the following message"
    Error in the ABAP Application Program
        The current ABAP program "/MRSS/SAPLRSG_PM_ORDER" had to be terminat
         it has
        come across a statement that unfortunately cannot be executed.
        In include "/MRSS/LRSG_PMCS_APPSCHEDF02 ", in line 93 of
    "/MRSS/SAPLRSG_PMCS_APPSCHED             ", the following syntax er
        have occurred:
        The row type of the table "G_APPOINTMENT_LIST" is not compatible wit
        field symbol type "<APPOINTMENT_LIST>".
        Author and last person to change the include are:
        Author         SAP
        Last changed by "SAP         "
    Any help or advise that would allow me to successfully create the work order and then open the planning board to view both the demand and the resources? I would appreciate any help. Thanks

    Hi Hussein,
    I found a SAP note 2030049 that is relevant to the problem: http://service.sap.com/sap/support/notes/2030049
    But when attempting to implement the note, it showed a syntax error.
    Will likely log this with SAP for resolution.
    Regards, Warren

  • Zip/unzip desing and configuration

    Hi,
    I need to implement zip/unzip file to file scenario . can u help me complete design and configuration steps .I mean how to deploy java code. and designing in IR and how to configure in ID.
    thanq
    krishna

    Hi,
    You Do not need to Provide any JAVA Code For the same.
    SAP Provides Standard Modeules to DO so.
    Use the PaYLoadZipBean module.  
    Have a look at the SAP help link:
    [http://help.sap.com/saphelp_nw70/helpdata/en/45/da9358a1772e97e10000000a155369/frameset.htm]
    just a Few Points to remember:
    1. Place this  Before the call to Standard SAP module in case you want to Unzip the payload in the Sender Side
    2. Place it after the SAP Standard module in the receiver side.
    Hope this helps.
    Reward points if useful
    Regards,
    Abhishek

  • Ask the Expert: Plan, Design, and Implement Mobile Remote Access, the Cisco Collaboration Edge Architecture

    Welcome to the Cisco® Support Community Ask the Expert conversation. This is an opportunity to learn and ask questions about planning, designing, and implementing mobile remote access (Cisco Collaboration Edge Architecture) with Cisco subject matter experts Aashish Jolly and Abhijit Anand.
    Cisco Collaboration Edge Architecture is an architecture that provides VPN-less access of Cisco Unified Communications resources to Cisco Jabber® users. This discussion is dedicated to addressing questions about design best practices while implementing mobile remote access.
    For more information, refer to the Unified Communications Mobile and Remote Access via Cisco VCS deployment guide. 
    Aashish Jolly is a network consulting engineer who is currently serving as the Cisco Unified Communications consultant for the ExxonMobil Global account. Earlier at Cisco, he was part of the Cisco Technical Assistance Center (TAC), where he helped Cisco partners with installation, configuring, and troubleshooting Cisco Unified Communications products such as Cisco Unified Communications Manager and Manager Express, Cisco Unity® solutions, Cisco Unified Border Element, voice gateways and gatekeepers, and more. He has been associated with Cisco Unified Communications for more than seven years. He holds a bachelor of technology degree as well as Cisco CCIE® Voice (#18500), CCNP® Voice, and CCNA® certifications and VMware VCP5 and Red Hat RHCE certifications.
    Abhijit Singh Anand is a network consulting engineer with the Cisco Advanced Services field delivery team in New Delhi. His current role involves designing, implementing, and optimizing large-scale collaboration solutions for enterprise and defense customers. He has also been an engineer at the Cisco TAC. Having worked on multiple technologies including wireless and LAN switching, he has been associated with Cisco Unified Communications technologies since 2006. He holds a master’s degree in computer applications and multiple certifications, including CCIE Voice (#19590), RHCE, and CWSP and CWNP.
    Remember to use the rating system to let Aashish and Abhijit 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 on the Cisco Support Community Collaboration, Voice and Video page, in the Jabber Clients subcommunity, shortly after the event. This event lasts through June 20, 2014. Visit this forum often to view responses to your questions and the questions of other Cisco Support Community members.

    Hi Marcelo,
       Yes, there are some requirements for certificates in Expressway.
    Expressway Core (Exp-C)
    - Can be signed by either External or Internal CA
    - Better to use a cluster name even if you start with 1 peer in Exp-C cluster. In the future, if more peers are added, changes would be minimal.
    - Better to use FQDN of cluster as CN of certificate, this way the traversal zone configuration on Expressway-E won't require any change even if new peers are added to Exp-C cluster.
    - If CUCM is mixed mode, include security profile names (in FQDN format) as Subject Alternate Names
    - The Chat Node Aliases that are configured on the IM and Presence servers. They will be required only for Unified Communications XMPP federation deployments that intend to use both TLS and group chat. (Note that Unified Communications XMPP federation will be supported in a future Expressway release). The Expressway-C automatically includes the chat node aliases in the CSR, providing it has discovered a set of IM&P servers.
    - For TLS b/w CUCM, IM-P & Exp-C
      + If using self-signed certificates on CUCM, IM/P. Load Cisco Tomcat, cup, cup-xmpp certificates from IM-P on Exp-C. Load callmanager, Cisco Tomcat certificates from CUCM on Exp-C.
      + If using Internal CA signed certificates on CUCM, IM/P. Load Root CA certificates on Exp-C.
      + Load CA certificate under tomcat-trust, cup-trust, cup-xmpp-trust on IM-P.
      + Load CA certificate under tomcat-trust, callmanager-trust on CUCM.
    Expressway Edge (Exp-E)
    - Signed by External CA
    - Configured Unified Communications domain as Subject Alternate Name
    - If using a cluster, select FQDN of this peer as CN and FQDN of Cluster + this peer as Subject Alternate Name.
    - If XMPP federation is being deployed, enter the same Chat Node Aliases as entered in Exp-C.
    For more details, please refer to the Certificate Creation Guide for Cisco Expressway x8.1.1
    http://www.cisco.com/c/dam/en/us/td/docs/voice_ip_comm/expressway/config_guide/X8-1/Cisco-Expressway-Certificate-Creation-and-Use-Deployment-Guide-X8-1.pdf
    - Aashish

  • [Forum FAQ] How to install and configure Windows Server Essentials Experience role on Windows Server 2012 R2 Standard via PowerShell locally and remotely

    As we all know,
    the Windows Server Essentials Experience role is available in Windows Server 2012 R2 Standard and Windows Server 2012 R2 Datacenter. We can add the Windows Server
    Essentials Experience role in Server Manager or via Windows PowerShell.
    In this article, we introduce the steps to install and configure Windows
    Server Essentials Experience role on Windows Server 2012 R2 Standard via PowerShell locally and remotely. For better analyze, we divide this article into two parts.
    Before installing the Windows Server Essentials Experience Role, please use
    Get-WindowsFeature
    PowerShell cmdlet to ensure the Windows Server Essentials Experience (ServerEssentialsRole) is available. (Figure 1)
    Figure 1.
    Part 1: Install Windows Server Essentials Experience role locally
    Add Windows Server Essentials Experience role
    Run Windows PowerShell as administrator, then type
    Add-WindowsFeature ServerEssentialsRole cmdlet to install Windows Server Essentials Experience role. (Figure 2)
    Figure 2.
    Note: It is necessary to configure Windows Server Essentials Experience (Post-deployment Configuration). Otherwise, you will encounter following issue when opening Dashboard.
    (Figure 3)
    Figure 3.
      2. Configure Windows Server Essentials Experience role
    (1)  In an existing domain environment
    Firstly, please join the Windows Server 2012 R2 Standard computer to the existing domain through the path:
    Control Panel\System\Change Settings\”Change…”\Member of. (Figure 4)
    Figure 4.
    After that, please install Windows Server Essentials Experience role as original description. After installation completed, please use the following command to configure Windows
    Server Essentials:
    Start-WssConfigurationService –Credential <Your Credential>
    Note: The type of
    Your Credential should be as: Domain-Name\Domain-User-Account.
    You must be a member of the Enterprise Admin group and Domain Admin group in Active Directory when using the command above to configure Windows Server Essentials. (Figure 5)
    Figure 5.
    Next, you can type the password for the domain account. (Figure 6)
    Figure 6.
    After setting the credential, please type “Y” to continue to configure Windows Server Essentials. (Figure 7)
    Figure 7.
    By the way, you can use
    Get-WssConfigurationStatus
    PowerShell cmdlet to
    get the status of the configuration of Windows Server Essentials. Specify the
    ShowProgress parameter to view a progress indicator. (Figure 8)
    Figure 8.
    (2) In a non-domain environment
    Open PowerShell (Run as Administrator) on the Windows Server 2012 R2 Standard and type following PowerShell cmdlets: (Figure 9)
    Start-WssConfigurationService -CompanyName "xxx" -DNSName "xxx" -NetBiosName "xxx" -ComputerName "xxx” –NewAdminCredential $cred
    Figure 9.
    After you type the commands above and click Enter, you can create a new administrator credential. (Figure 10)
    After creating the new administrator credential, please type “Y” to continue to configure Windows Server Essentials. (Figure 11)
    After a reboot, all the configurations will be completed and you can open the Windows Server Essentials Dashboard without any errors. (Figure 12)
    Figure 12.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Part 2: Install and configure Windows Server Essentials Experience role remotely
    In an existing domain environment
    In an existing domain environment, please use following command to provide credential and then add Server Essentials Role: (Figure 13)
    Add-WindowsFeature -Name ServerEssentialsRole
    -ComputerName xxx -Credential DomainName\DomainAccount
    Figure 13.
    After you enter the credential, it will start install Windows Server Essentials role on your computer. (Figure 14)
    Figure 14.
    After the installation completes, it will return the result as below:
    Figure 15.
    Next, please use the
    Enter-PSSession
    cmdlet and provide the correct credential to start an interactive session with a remote computer. You can use the commands below:
    Enter-PSSession –ComputerName
    xxx –Credential DomainName\DomainAccount (Figure 16)
    Figure 16.
    Then, please configure Server Essentials Role via
    Add-WssConfigurationService cmdlet and it also needs to provide correct credential. (Figure 17)
    Figure 17.
    After your credential is accepted, it will update and prepare your server. (Figure 18)
    Figure 18.
    After that, please type “Y” to continue to configure Windows Server Essentials. (Figure 19)
    Figure 19.
    2. In a non-domain environment
    In my test environment, I set up two computers running Windows Server 2012 R2 Standard and use Server1 as a target computer. The IP addresses for the two computers are as
    below:
    Sevrer1: 192.168.1.54
    Server2: 192.168.1.53
    Run
    Enable-PSRemoting –Force on Server1. (Figure 20)
    Figure 20.
    Since there is no existing domain, it is necessary to add the target computer (Server1) to a TrustedHosts list (maintained by WinRM) on Server 2. We can use following command
    to
    add the TrustedHosts entry:
    Set-Item WSMan:\localhost\Client\TrustedHosts IP-Address
    (Figure 21)
    Figure 21.
    Next, we can use
    Enter-PSSession
    cmdlet and provide the correct credential to start an interactive session with the remote computer. (Figure 22)
    Figure 22.
    After that, you can install Windows Server Essentials Experience Role remotely via Add-WindowsFeature ServerEssentialsRole cmdlet. (Figure 23)
    Figure 23.
    From figure 24, we can see that the installation is completed.
    Figure 24.
    Then you can use
    Start-WssConfigurationService cmdlet to configure Essentials Role and follow the steps in the first part (configure Windows Server Essentials Experience in a non-domain environment) as the steps would be the same.
    The figure below shows the status of Windows Server Essentials.
    Figure
    25.
    Finally, we have successfully configured Windows Server Essentials on Server1. (Figure 26)
    Figure 26.
    More information:
    [Forum
    FAQ] Introduce Windows Powershell Remoting
    Windows Server Essentials Setup Cmdlets
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • Steps to setup and configure Node Manager on local and remote machine

    Hello,
    I am using WLS 10.3 on Windows.
    I have two machines, One cluster and two managed servers (one on each machine) created under a domain. I have used configuration wizard to create the domain.
    I have gone through documents on Node Manager and found what to configure. But I have not found when to configure. In other words I want to know what is the sequence of steps if I have to set Node Manager on my local machine (in which domain exists) and on remote machine.
    Please let me know the sequence of steps I need to follow to set and configure the Node Manager on local and remote machine. I want to use Java Node Manager (not the Script node manager).
    Thanks,
    Sanjay

    Hello,
    Ok, let me tell you what I have done till now.
    1) Installed WebLogic 10.3 on machine A (local machine, on which I have created domain and my Admin Server is running. Also Managed Server 1 is created on this machine).
    2) Installed WebLogic 10.3 on machine B (remote machine, on which Managed Server 2 will be created).
    3) On machine A I used the configuration wizard and create a domain. While creating the domain I did the following:
    i) Created two managed servers.
    ii) Created a cluster
    iii) Assigned Servers to cluster.
    iv) Created two machines.
    v) Assigned servers to machines (Admin Server and MS_1 to machine A and MS_2 to machine B).
    4) Sarted Admin Server.
    5) On the Admin Console I made some configurations for the Node Manager on Machines -> Machine A -> Node Manager. Assigned the values:
    i) Type (SSL)
    ii) Listen Address (IP_Address of machine A)
    iii) Listen Port (5556)
    6) Similarly did for Machine B.
    So till now phsically the managed server (MS_2) directory and configuration is not there on Machine B (its only configured on machine A because I created the domain on Machine A).
    Now I want install/configure/setup NM on both the machines. Start my both the managed servers using Admin Console (which will use the node managers).
    What are the sequence of steps I need to follow my task?
    Any help and suggestions are welcome with warm regards.
    Thanks,
    Sanjay

  • Configuration Error 16 on Creative Suite 6 Design and Web Premium

    Hello,
    I recently began receiving a Configuration Error 16 message when I attempt to launch any of the CS6 applications.
    I attempted to follow the instructions here:
    http://helpx.adobe.com/x-productkb/policy-pricing/configuration-error-cs5.html
    However, when I attempted to go to the SLStore and Adobe PCD folders in Finder, I discovered that neither folder actually exists.  (I'm guessing this may be a key cause of the problem.)
    I am wary of uninstalling and reinstalling, simply because I was provided a free download of CS6 Design and Web Premium by the University of California, Berkeley, which I attend.  I can produce my software license number upon request.
    Simply, how do I go about fixing this problem?  If a full uninstall and reinstall are the solution, will I be able to do so freely?
    I am using Mac OS 10.8.4
    Thank you very much,
    Chad

    Have a look here, looks like it may be a permissions issue:
    http://helpx.adobe.com/x-productkb/policy-pricing/configuration-error-cs5.html

  • Install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure

    Hi,
    I am creating a form application where I want to install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure it. I copied the files to the remote machine local directory, wanted to know how to install exe on remote machine and
    configure it. could some one help me with code.
    Thanks
    Thanks,

    Hi sayedfarhan,
    Thank you for posting in MSDN forum.
    >>I am creating a form application where I want to install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure it.
    According to your issue, as you said that you want to install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure it.
    So please you refer the following MSDN document to install and configure the test agent and test controller on this remote machine.
    https://msdn.microsoft.com/en-us/library/dd648127.aspx?f=255&MSPPError=-2147217396
    Generally, I know that we used this test controller and test agent to run automated tests on remote machine. Note:I know that if you want to install and configure test agent and test controller for automated test, it will not need to any code for
    it.
    So whether your issue is related to run your automated tests remotely with the test agent and test controller.
    In addition, as you said that:
    >>I am creating a form application where I want to install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure it. 
    Could you please tell me whether you want to install and configure the test controller and test agent for your form app?  
    If I misunderstanding your issue, please tell me more detailed message about your issue.
    Best Regards, 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Installing and configuring Warehouse design and runtime repositories

    Hi,
    My topology is this:
    machine 1: Oracle database 9i (source data): instance: dbprod
    machine 2: Oracle database 10gR2: instances: owbdes and owbrun
    I have installed Oracle Warehouse builder 10.2 on machine 2. The implementation is as follows:
    I want to create a design repository on instance owbdes and a runtime repository on owbrun.
    The design repository on owbdes will contain the metadata from source dbprod and the metadata is intended to be deployed on owbrun.
    I am confused about the creation of repositories. Could someone send me detailed information about this?
    I know I have to run the OWB repository assistant on both owbdes and owbrun, but I don't know how to configured them in order to be the design and runtime repositories.
    For example when running the repository assistant I choose Advanced Setup, but do I have to create a new Repository owner for each database instance? Do I have to create the same target schemas on both instances?
    Please help me.
    Thanks in advance.

    I know I have to run the OWB repository assistant on both owbdes and owbrun, but I don't know how to configured them in order to be the design and runtime repositories.Yes, you should create OWB repository on the each server. During development you usually connect (with OWB Design Center) to design repository, but when you want to register new target schema you should connect with OWB client to runtime repository.
    Also you need to register Control Center (located on owbrun) in Design Center (when connected to design repository) from Connection Explorer, then you should modify Configuration for each of your OWB project - change Control Center from DEFAULT_CONTROL_CENTER to new.
    For example when running the repository assistant I choose Advanced Setup, but do I have to create a new Repository owner for each database instance?Yes, you need to create repositor owner on each DB instance.
    Do I have to create the same target schemas on both instances?No, you should create target schema only in target database instance
    Also read this threads, hope they will be helpful
    How to create a runtime repos in 10gR2
    OWB Standalone Target Schema - Split Architecture
    Regards,
    Oleg

  • CUCM 10 Barge/CBarge with shared line between phone and a remote device

    Is it possible to configure CBARGE/BARGE feature if shared line is between a cisco phone and a remote device.
    When remote device picks up the phone, red light comes up on the phone, if we press the line button to Cbarge, dial tone comes up and the call does not go into a conference.
    Has anyone used that feature? Can it be configured?

    We are using Lync for tesing purposes.
    we tried scenario with Remote device as a mobile phone.  Where calls are being sent through SIP trunk to CUBE and then to our provider. Maybe I should add some commands on CUBE router?
    Is that feature (CBARGE) designed to work in that scenario when shared line is answered via remote device on CUCM 10.5.1.10000-7.  I am suspecting that its not designed to work that way (If its designed to work that way, we will continue on with collecting traces, etc). 

  • Question about Wireless Design and Controller

    Hi Everyone,
    Although I am not new to Cisco, I have somewhat limited experience with Wireless in general.  I was hoping to get your help with the following:
    We currently have a total of 8 1130AG, 4 on each floor.  They were configured a few years ago, and now we are looking to update the design a bit.  Each AP has its own SSID, and just provide internet access.  Looking at the configuration, I noticed that they are not configured to use proper channels, just random channels (9, 10, 11, instead of 1, 6, 11, etc.).  I noticed that when I roam between one AP to another, I lose about 4-8 pings before I re-establish connectivity again.
    Here are my questions:
    1.  Do I need a controller in order to use just one SSID for the whole setup instead of the 8 seprate ones we currently have?
    2.  Will the controller helps in providing seamless transition when a client roams between AP's?
    3.  Is it normal to loose connectivity roaming around?
    4.  Can I reconfigure the current setup to use just one SSID and provide better transition between AP without the use of a controller?
    5.  Which controller would you recommend?
    We don't have a need to anything fancy ,I am aware that I can enable multiple SSID, VLAN's, etc.  Just trying to keep it as simple as possible, yet reliable.
    Your input is appreciate.
    Thanks

    1.  With 8 AP's only, a WLC would be nice-to-have but not necessary. You can configure WLSE and it will do some limited functions.
    2.  This depends on the signal strengths, wireless coverage and configuration.  If you enable WLSE, for instance, and you have no wireless black spots, then roaming should be no issues.
    3.  See #2.
    4.  You can configure multiple SSID (up to 16 are broadcasted) but if one AP doesn't have the SSID you use for roaming, the association will drop when the client tries to join that particular AP.  It's like mobile phone towers.  If your carrier is not in the area, you sure won't be able to use your mobile phone in that area.
    5.  For 8 1130 APs, I'd recommend the smallest of the lot:  2106 with either 6, 12 or 25 AP licenses.  I'd recommend you the 25 AP licenses.  If your finances allow you something bigger, then consider either the 4402 (25 AP licenses) or the 5508.
    Cisco 2100 Series Wireless LAN Controllers
    http://www.cisco.com/en/US/prod/collateral/wireless/ps6302/ps8322/ps7206/ps7221/product_data_sheet0900aecd805aaab9.html
    Cisco 4400 Series Wireless LAN Controllers
    http://www.cisco.com/en/US/prod/collateral/wireless/ps6302/ps8322/ps6307/product_data_sheet0900aecd802570b0_ps6366_Products_Data_Sheet.html
    Cisco 5500 Series Wireless Controllers Data Sheet
    http://www.cisco.com/en/US/prod/collateral/wireless/ps6302/ps8322/ps10315/data_sheet_c78-521631.html

Maybe you are looking for

  • Mid 2014 13" rMBP full charge gives 4:49 minutes of use

    Hello- This is my first Macbook purchase. It is 2 weeks old, refurbished from Apple. rMBP 13" 3.0 GHz i7 16gb 128. I received it and it was at 53% with 4 cycles. It adds cycles without even being plugged in to charge. It looses about 1% a minute. I h

  • Help - can't access photos in iPhoto library after a restore

    After a hard drive death, I got a new hard drive and put lots of new photos on iPhoto. Then I found some very old backup discs and used these to restore old photos. Unfortunately this has wiped the new photos from iPhoto... BUT when I go through Find

  • AVCHD 1920x1080 must be rendered in FCE 4.0?

    I'm new to this....bought a Canon HF-100 and went off on a trip with two 16gb sdhc cards, shooting everything at 1920x1080. I have several hours of video I need to edit. Today I just upgraded FCE 4.0 because it can handle AVCHD and I have log/transfe

  • Passing a Parameter over DetailSteps inside a KM

    Hi ! Is it possible to pass Parameters/Variables between DetailSteps insinde a KM ? I would like to get a Threshold-Parameter via an Oracle-Procedure and store it inside a variable - with Technology Oracle In a following DetailStep i want to use this

  • Dynamic members in time dimension

    <p>Hi All,</p><p> </p><p>In my outline, time dimension is sparse. and i kept certainhigher level members as dynamic calc. But, when I checked thedatabase information, it shows that all members in time dimensionas stored, even though some of them are