How to : connect two routers running under another

So this issue is tricky and i have had no luck in getting this to work. Basically what i need to do, is connect "Network 2" with "Network 1" and both run off of another larger network. The Base Network is out of my control and i cannot set or change any setting within that network's routers or DHCP Servers. Thus i am forced to set routes within my routers to communicate to each other. The need for this communication is software that runs on a server within "Network 1" needs to be available to all client computers running on both "Network 1" and 'Network 2". Obviously the computers running off the same router as the server are fine. Getting the computers running off the router for "Network 2" is the tricky part. Here is a link to a diagram of the setup : http://i64.photobucket.com/albums/h176/m4x70r/networkquery.jpg Some of the things i have tried are setting the DMZ on "Network 1" to point at the server. Setting routes in both to point at the other. Setting the Gateway in "Network 2" router to point at the WAN address of "Network 1" and setting the DNS of "Network 2" to the WAN of "Network 1". No matter what i do, the laptops inside "Network 2" cannot ping the laptops in "Network 1" or even ping the router for "Network 1". However, when pinging the name of the server, it does show the IP addy i gave it, so it sees it in some small fashion but cannot link to it. I'm stumped. Time to get a networking cert i suppose. Any help or suggestions would be much appreciated!

First you have missed to mentioned the most important thing for your setup: are those two routers running in gateway mode or router mode?
It is also quite confusing which routes you tried to set exactly. (in particular why you mentioned the DNS server?). Please simply post the exact settings of the routes you have entered on either routers.
As you have mentioned that you have no control over the main network I guess your routers operate in gateway mode. In that case they do NAT - network address translation. NAT shares a single public IP address with multiple computers with private IP addresses inside the LAN. NAT makes computers in the LAN inaccessible from the outside unless you have configured an explicit port forwarding or DMZ host.
Moreover, with NAT you cannot access the computers inside the LAN on an inside IP address. This is impossible because the private IP addresses inside the LAN are not visible on the outside. You can only access any computer on the WAN IP address of the router. You cannot ping any computer inside the LAN behind the router with NAT. UDP or TCP access is limited to what you forward. The DMZ host is the "default" forward which gets all ports which are not forwarded otherwise.
If both routers are in gateway mode you don't have to define any routes on the routers as the destination subnet is not accessible. To make your server accessible you have to define port forwardings to your server on 192.168.1.2 or put it into the DMZ. You can then access the server the external IP address of the router, i.e. 10.7.2.101. The router forwards incoming traffic on that address to your server at 192.168.1.2.

Similar Messages

  • How to connect two external monitors to a Mac Book Pro?

    How to connect two external monitors to a Mac Book Pro?

    Not as is, but  Matrox makes a peripheral that enables connecting more than one external monitor - matrox.com.

  • How to connect two computers

    please help me
    how to connect two computers through telephone line

    Double Post. See:
    http://forum.java.sun.com/thread.jspa?threadID=770305&tstart=0

  • Hibernate query...how to connect two databases...

    hi i m new to hibernate..
    i created two tables..
    1st table is catalog:
    2nd table is acctinfo
    //HBM file is :
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
    <hibernate-mapping>
    <class name="hibernate.example.Catalog" table="catalog">
    <id name="id" type="integer" column="ID">
    <generator class="increment"/>
    </id>
    <property name="journal" type="string" column="JOURNAL"/>
    <property name="publisher" type="string" column="PUBLISHER"/>
    <property name="edition" type="string" column="EDITION"/>
    <property name="title" type="string" column="TITLE"/>
    <property name="author" type="string" column="AUTHOR"/>
    <bag name="accinfo" cascade="all" >
    <key column="ID"/>
    <one-to-many class="hibernate.example.Acctinfo"/>
    </bag>
    </class>
    <class name="hibernate.example.Acctinfo" table="acctinfo">
    <id name="id" type="integer" column="ID">
    <generator class="increment"/>
    </id>
    <property name="account" type="string" column="ACCOUNT"/>
    <property name="password" type="string" column="PASSWORD"/>
    <property name="balance" type="string" column="BALANCE"/>
    </class>
    </hibernate-mapping>
    ///******************getter setter file is::****************
    package hibernate.example;
    public class Acctinfo
         int id;
         String account;
         String password;
         String balance;
         public Acctinfo()
         public void setId(int id)
              this.id = id;
         public int getId()
              return id;
         public void setAccount(String account)
              this.account = account;
         public void setPassword(String password)
              this.password = password;
         public void setBalance(String balance)
              this.balance = balance;
         public String getAccount()
              return account;
         public String getBalance()
              return balance;
         public String getPassword()
              return password;
    //********************2nd getter setter file is:***********************
    package hibernate.example;
    import java.util.List;
    public class Catalog
    int id;
    String journal;
    String publisher;
    String edition;
    String title;
    String author;
    private List accinfo;
    public Catalog()
    public void setId(int id)
    this.id = id;
    public int getId()
    return id;
    public void setJournal(String journal)
    this.journal = journal;
    public String getJournal()
    return journal;
    public void setPublisher(String publisher)
    this.publisher = publisher;
    public String getPublisher()
    return publisher;
    public void setEdition(String edition)
    this.edition = edition;
    public String getEdition()
    return edition;
    public void setTitle(String title)
    this.title = title;
    public String getTitle()
    return title;
    public void setAuthor(String author)
    this.author = author;
    public String getAuthor()
    return author;
    public void setAccinfo(List accinfo)
    this.accinfo = accinfo;
    public List getAccinfo()
    return accinfo;
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package hibernate.example;
    import hibernate.example.Acctinfo;
    import hibernate.example.Catalog;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.ListIterator;
    import org.hibernate.Query;
    import org.hibernate.SQLQuery;
    import org.hibernate.Session;
    import org.hibernate.SessionFactory;
    import org.hibernate.Transaction;
    import org.hibernate.cfg.Configuration;
    public class CatalogClient
         Session session = null;
         SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();
         public static void main(String str[])
              CatalogClient clc = new CatalogClient();
              //clc.saveData();
              //clc.deleteData();
              //clc.showData();
              clc.updateData();
         public void showData()
              try
                   session =sessionFactory.openSession();
                   String SQL_QUERY ="select id, journal, publisher, edition, title, author from catalog";
                   // String SQL_QUERY ="select c.ID, c.JOURNAL, c.PUBLISHER, c.EDITION, c.TITLE, c.AUTHOR, a.ACCOUNT, a.PASSWORD,a.BALANCE from catalog c, ACCTINFO a where c.ID = a.ID";
                   SQLQuery query = session.createSQLQuery(SQL_QUERY);
                   System.out.println("*** query : *** "+ query);
                   //for(ListIterator it=query.list().listIterator();it.hasNext();)
                   for (ListIterator lit = query.list().listIterator(); lit.hasNext();)
                        Object[] row = (Object[]) lit.next();
                        /*System.out.println("ID: " + row[0]);
                        System.out.println("Title: " + row[1]);
                        System.out.println("Author: " + row[2]);
                        System.out.println("Isbn: " + row[3]);
                        System.out.println("Pages: " + row[4]);
                        System.out.println("Copyright: " + row[5]);
                        System.out.println("Cost: " + row[6]);
                        System.out.println("******NEXT****************");
    Object[] row = (Object[]) it.next();*/
                        System.out.println("ID: " + row[0]);
                        System.out.println("JOURNAL: " + row[1]);
                        System.out.println("PUBLISHER: " + row[2]);
                        System.out.println("EDITION: " + row[3]);
                        System.out.println("TITLE: " + row[4]);
                        System.out.println("AUTHOR: " + row[5]);
                        System.out.println("acc: " + row[6]);
                        System.out.println("pass: " + row[7]);
                        System.out.println("bal: " + row[8]);
                        System.out.println("***************************");
                   session.close();
              catch(Exception e)
                   System.out.println(e.getMessage());
         public void saveData()
              session =sessionFactory.openSession();
              Transaction transaction = null;
              transaction = session.beginTransaction();
              Catalog catalog = setBean();
              //System.out.println("before save");
              session.save(catalog);
              //System.out.println("after save");
              transaction.commit();
              session.flush();
              session.close();
         public void updateData()
              session =sessionFactory.openSession();
              Catalog catalog = new Catalog();
              catalog.setId(2);
              catalog.setAuthor("manoj");
              catalog.setJournal("java");
              catalog.setEdition("1st");
              catalog.setPublisher("indiabulls");
              catalog.setTitle("java Servlet");
              session.update(catalog);
              session.flush();
              session.close();
         public void deleteData()
              session =sessionFactory.openSession();
              Catalog catalog = new Catalog();
              catalog.setId(3);
              session.delete(catalog);
              session.flush();
              session.close();
         public static Catalog setBean()
              Acctinfo accinfo = new Acctinfo();
              accinfo.setAccount("MANOJ1");
              accinfo.setPassword("orbis");
              accinfo.setBalance("1000");
              List list = new ArrayList();
              list.add(accinfo);
              Catalog catalog = new Catalog();
              catalog.setJournal("india");
              catalog.setPublisher("indiabulls");
              catalog.setEdition("ist");
              catalog.setTitle("orbis");
              catalog.setAuthor("manoj");
              catalog.setAccinfo(list);
              return catalog;
    //********************CFG FILE IS ******************
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
    <hibernate-configuration>
    <session-factory name="session">
    <property name="hibernate.dialect">org.hibernate.dialect.Oracle9Dialect</property>
    <property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
    <property name="hibernate.connection.url">jdbc:oracle:thin:@172.16.31.25:1521:BOMBAY</property>
    <property name="hibernate.connection.username">mumbai</property>
    <property name="hibernate.connection.password">mumbai123</property>
    <!-- Set AutoCommit to true -->
    <property name="connection.autocommit">true</property>
    <property name="dialect">org.hibernate.dialect.OracleDialect</property>
    <!-- Mapping files -->
    <mapping resource="Catalog.hbm.xml"/>
    </session-factory>
    </hibernate-configuration>
    **********************error i m facing is :************************
    0 [main] WARN net.sf.ehcache.config.Configurator - No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: jar:file:/C:/Documents%20and%20Settings/d.poonam/Desktop/hibernate/lib/ehcache-1.1.jar!/ehcache-failsafe.xml
    1188 [main] WARN org.hibernate.impl.SessionFactoryObjectFactory - Could not bind factory to JNDI
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
         at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(Unknown Source)
         at javax.naming.InitialContext.getNameParser(Unknown Source)
         at org.hibernate.util.NamingHelper.bind(NamingHelper.java:52)
         at org.hibernate.impl.SessionFactoryObjectFactory.addInstance(SessionFactoryObjectFactory.java:90)
         at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:247)
         at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1043)
         at hibernate.example.CatalogClient.<init>(CatalogClient.java:24)
         at hibernate.example.CatalogClient.main(CatalogClient.java:27)
    please help me out....
    thanks in advance..
    if u know how to connect two tables plz let me know..
    its urgent....

    I made this work with MySQL. Adapt to your situation as needed. - %
    package hibernate.model;
    import hibernate.util.HibernateUtils;
    import hibernate.model.Catalog;
    import hibernate.model.Account;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    import org.hibernate.Session;
    import hibernate.util.HibernateUtils;
    import static junit.framework.Assert.assertEquals;
    import static junit.framework.Assert.assertNotNull;
    public class CatalogTest
       private static final Log LOGGER = LogFactory.getLog(CatalogTest.class);
       public static void main(String[] args)
          Session session = null;
          try
             session = HibernateUtils.getSessionFactory().getCurrentSession();
             session.beginTransaction();
             int rowsBefore = HibernateUtils.getRowCount(session, Catalog.class);
             assertEquals("should not have any Catalogs", rowsBefore, 0);
             Catalog catalog = new Catalog("test title");
             catalog.addAccount(new Account(100));
             catalog.addAccount(new Account(200));
             Long id = (Long) session.save(catalog);
             assertNotNull("generated id should not be null", id);
             LOGGER.info("returned id: " + id);
             session.getTransaction().commit();
             LOGGER.debug("transaction committed");
          catch (Exception e)
             LOGGER.error(e);
             session.getTransaction().rollback();
    package hibernate.model;
    import java.io.Serializable;
    import java.text.NumberFormat;
    public class Account implements Serializable
       private Long id;
       private int balance;
       public Account()
          this(null, 0);
       public Account(int balance)
          this(null, balance);
       public Account(Long id, int balance)
          this.id = id;
          this.balance = balance;
       public Long getId()
          return id;
       private void setId(Long id)
          this.id = id;
       public int getBalance()
          return balance;
       private void setBalance(int balance)
          this.balance = balance;
       public boolean equals(Object o)
          if (this == o)
             return true;
          if (!(o instanceof Account))
             return false;
          Account account = (Account) o;
          return !(id != null ? !id.equals(account.id) : account.id != null);
       public int hashCode()
          int result;
          result = (id != null ? id.hashCode() : 0);
          result = 31 * result + balance;
          return result;
       public String toString()
          return new StringBuilder().append("Account{").append("id=").append(id).append(", balance=").append(NumberFormat.getCurrencyInstance().format(balance)).append('}').toString();
    <?xml version="1.0"?>
    <!DOCTYPE hibernate-mapping PUBLIC
          "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
    <hibernate-mapping package="hibernate.model" default-access="field" default-lazy="true">
       <class name="Account" table="accounts">
          <id name="id" column="account_id">
             <generator class="native"/>
          </id>
          <property name="balance" column="balance"/>
       </class>
    </hibernate-mapping>
    package hibernate.model;
    import java.io.Serializable;
    import java.util.Set;
    import java.util.HashSet;
    import java.util.Collections;
    public class Catalog implements Serializable
       private Long id;
       private String title;
       private Set<Account> accounts;
       public Catalog()
          this(null, "", Collections.EMPTY_SET);
       public Catalog(String title)
          this(null, title, Collections.EMPTY_SET);
       public Catalog(Long id, String title, Set<Account> accounts)
          this.id = id;
          this.title = title;
          this.accounts = new HashSet<Account>(accounts);
       public Long getId()
          return id;
       private void setId(Long id)
          this.id = id;
       public String getTitle()
          return title;
       private void setTitle(String title)
          this.title = title;
       public Set<Account> getAccounts()
          return accounts;
       private void setAccounts(Set<Account> accounts)
          this.accounts = accounts;
       public void addAccount(Account account)
          this.getAccounts().add(account);
       public void removeAccount(Account account)
          this.getAccounts().remove(account);
       public boolean equals(Object o)
          if (this == o)
             return true;
          if (!(o instanceof Catalog))
             return false;
          Catalog catalog = (Catalog) o;
          return !(id != null ? !id.equals(catalog.id) : catalog.id != null);
       public int hashCode()
          return (id != null ? id.hashCode() : 0);
       public String toString()
          return new StringBuilder().append("Catalog{").append("id=").append(id).append(", title='").append(title).append('\'').append(", accounts=").append(accounts).append('}').toString();
    <?xml version="1.0"?>
    <!DOCTYPE hibernate-mapping PUBLIC
          "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
    <hibernate-mapping package="hibernate.model" default-access="field" default-lazy="true">
       <class name="Catalog" table="catalogs">
          <id name="id" column="catalog_id">
             <generator class="native"/>
          </id>
          <property name="title" column="title"/>
          <set name="accounts" cascade="all">
             <key column="catalog_id"/>
             <one-to-many class="hibernate.model.Account"/>
          </set>
       </class>
    </hibernate-mapping>
    <!DOCTYPE hibernate-configuration PUBLIC
         "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
         "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
    <hibernate-configuration>
         <session-factory>
          <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
          <property name="connection.url">jdbc:mysql://localhost:3306/hibernate?autoReconnect=true</property>
          <property name="connection.username">hibernate</property>
          <property name="connection.password">hibernate</property>
          <property name="connection.pool_size">1</property>
          <property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
          <property name="show_sql">true</property>
          <property name="generate_statistics">true</property>
          <property name="query.factory_class">org.hibernate.hql.classic.ClassicQueryTranslatorFactory</property>
          <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
          <property name="cache.use_minimal_puts">false</property>
          <property name="cache.use_query_cache">false</property>
          <property name="order_updates">false</property>
          <property name="hbm2ddl.auto">create-drop</property>
          <property name="current_session_context_class">thread</property>
          <mapping resource="hibernate/persistence/hibernate/Account.hbm.xml"/>
          <mapping resource="hibernate/persistence/hibernate/Catalog.hbm.xml"/>
         </session-factory>
    </hibernate-configuration>

  • Ways to connect two routers

    Hello,
    We have two routers connected as shown in the diagram:
    We would like to create a one-hop connection ("peering") between the two routers (over the link shown) for routing purposes (iBGP, OSPF, static routes).
    What are the suggested way(s) to do it?
    Method 1: We have tried creating two GRE tunnels (one for IPv4 and one for IPv6) and it works but we are having various issues (which we are still troubleshooting)
    Method 2: We could create IPSec tunnels; I have not tried it.
    Method 3: This is my main question here. Can we define a common VLAN on the two routers so that, by using trunk links in-between, the two interfaces (actually a new subinterface of each: R1,G0/0.x - R2,G0/1.x) can coexist "alone" on one VLAN?
    Other suggested methods please?
    Thanks in advance for your assistance.
    Regards,
    Nick

    Thanks for the reply.
    Here is the current setup:
    {View image and zoom in to full scale for clearer reading!}
    With this configuration, the tunnels seem to be working correctly, however we are still having a problem: When I switch traffic so that it uses the tunnels, netflow export from R1 to a netflow server (using nfdump/nfsen) which is located at a LAN connected to R2, is not recorded correctly; I see (on R1):
    # sh ip flow export
    Flow export v9 is enabled for main cache
    Export source and destination details :
    VRF ID : Default
    Source(1) 195.251.xxx.yyy (Loopback0)
    Destination(1) 195.251.xxx.xxx (9995)
    Version 9 flow records
    680074 flows exported in 8490 udp datagrams
    0 flows failed due to lack of export packet
    1579 export packets were sent up to process level
    0 export packets were dropped due to no fib
    0 export packets were dropped due to adjacency issues
    0 export packets were dropped due to fragmentation failures
    0 export packets were dropped due to encapsulation fixup failures
    and I find that our traffic is not recorded correctly. (When we don't use these tunnels -but another route not shown in the diagram, which does not involve tunnels- then "export packets sent up to process level" are 0 and netflow export works correctly.)
    Netflow monitoring is critical to our network, so we have to troubleshoot this, before we can use this configuration in production. (I am thinking of opening a new thread for this problem.)
    Any and all suggestions will be welcome.
    Nick

  • How do  connect two iPods at once.

    Hello, I have two iPods that I connect to one computer (1 a 5th gen ipod, and 1 a 4th gen ipod).
    I can only ever connect one of the two iPod's. When ever I try and connect a 2nd iPod, iTunes disconnects the 1st iPod, and only shows the 2nd iPod, and this then gives a windows error on the 1st iPod.
    Has anyone ever been able to connect two iPods at once in itunes for Windows?

    i have the same problem. With one ipod and another ipod nano, the itunes doesnt works, and need to restart it.

  • How to connect two different oracle databases

    Hi All,
    I have a special scenario like the following:
    I have an oracle Database 10g, it has to get some data from the Oracle Apps Database (the API is defined in the Views and Packages of the 10g database)
    Is it possible for me to make a connection with the 10g database to the Apps database.
    Do I have to use any engines like JDBC for the connection between the two databases
    The issue here is because of security Issue, I cant create a database schema in the Apps database
    What can be the solution for this issue..
    Many thanks in advance
    and best regards.......

    You might be able to use a database link to connect from one db to another.

  • Connect two routers-wireless

    Hello, I am looking around the forums and can't find and i'd like to know next:
    I have two routers Linksys (wrv200 and wrt110). One on one side of the house, the other will be at the other side od the house. Questions:
    - Is it possible to wirelessly connect second to frist 
    - Second willl broadcast the same SSID (wireless and other settings) as the first and will have the function of covering the signal on the other side of the house and outside, where the first virtually could not 
    - Which one of these two routerja recommend as the first (connect to a modem)
    - What is all need to set athe first and second routerj
    Thanks for help.

    You cannot connect two Linksys Routers Wirelessly, you have to have them connected with cables...see this

  • Connect two routers wirelessely

    I have two routers SRX 200  and WRT300N and want to connect them wirelessly. First of all would it be possible to do that and 2nd will it increase the coverage? I will appreciate for your response.

    Both your routers have better signal/speed capabilities compared to the normal G routers. However, you can't connect them wirelessly.

  • RE: How to have multiple application running under one server

              I have one server
              I have many application
              Question: Is it possible for me to have a weblogic properties file under each
              of this application.
              

    If your question is whether you can run multiple instances of WebLogic
              (or multiple applications) on one server, the answer is yes. The only
              problem is, you must have a unique port for each of the servers to run
              on. I.e., they can not all run under port 80 which has obvious
              internet/network implications.
              This also means you have multiple weblogic.properties files etc. for
              each instance.
              We do this with WL5.1 on a Linux 2.4 kernel in developement to allow
              multiple developers run their own instance on one box.
              Dano
              Mettu Kumar <[email protected]> wrote in message news:<[email protected]>...
              > No if you are running single instance of wls.
              >
              > Kumar.
              >
              > Sonny wrote:
              >
              > > I have one server
              > > I have many application
              > > Question: Is it possible for me to have a weblogic properties file under each
              > > of this application.
              

  • Question about how to connect two solution manager

    Hello experts
    one of our clients wants to connect his SOLMAN to our SOLMAN, that way
    when they receive a case in his ICM we can monitor the case and respond
    It, if the situation requires or they ask for our help.
    Can you please tell me if theres a way to connect them and what is the
    best way to do that?
    Thanks for your help,
    Regards,

    You are going to connect a Solution Manager to another Solution Manager, so I think it is enough to use the RFC destination on the connection.
    I suppose you want to send a message from 7.0 to 7.1, so you may:
    In Solman 7.0 system:
    1. T-code SM59   > Define an RFC connection to 7.1 system;
    2. T-code ICTCONF   > Add an entry for the 7.1 service desk, specify
    the RFC Destination as the one you defined   > Activate -> Generate default value mapping (you may find the button on the top of ICTCONF).
    In Solman 7.1 system:
    1. T-code SM59   > Define an RFC connection to 7.0 system;
    2. T-code ICTCONF   > Add an entry for the 7.0 service desk, specify the RFC Destination as the one you defined   > Activate -> Generate default value mapping;
    3. Customize your own value mapping including the transaction type. You will find the details in:
        IMG -> SAP Solution Manager -> Capabilities (Optional)    -> Application Incident Management (Service Desk)    -> External Integration -> External Service Desk
    Most fields of SIVA and SMIV are the same (for example, priority) so you do not need to care about the value mapping if you do not have special requirement. However, some fields only exist in SIVA category, subject) and others only exist in SMIV (multilevel categories). You may need to implement your own code according to your requirement.
    Thanks
    Vikram

  • How to connect two monitors using macbook pro?

    Hi,
    I have a Macbook Pro through which I want to extend the displays to two individual monitors.
    The two monitors should show two different windows which is opened through my macbook.
    I have observed that macbook has only one mini display port through which I connect to HDMI or to DVI ports in monitor.
    So how do I connect another monitor source to my macbook, which ports can help in this situation?
    The monitors I have which can supports HDMI,DVI,VGA and DP ports.
    Could anyone help me on this issue.
    Thanks.

    You can use a USB 2.0/3.0 to HDMI/DVI interface.  You might also consder Thundebolt to HDMI/DVI.
    The MBP 13" will support three screens (two external) and the MBP 15" will support four screen (three external).

  • How to connect two iMacs to the same FCE project?

    Hello All,
    Right now I have an iMac that is about 1 year old. I'm about to purchase another iMac. What I want to do is run FCE on both and work on the same video project on both. Is this possible?
    So the idea would be that I one person A could color correct and person B could edit and perform other functions on the second iMac. Can you hook them up by firewire and do this or is this beyond what you can do with FCE and two iMacs?
    Thanks for your help.
    Mike

    Hello Michael,
    First, you will need two fully licensed copies of FCE, one for each iMac. Each license allows you to install FCE on 1 Apple desktop + 1 Apple laptop as long as you own both computers and do not use FCE on both at the same time. But it *does not* allow you to install it on 2 Apple desktop computers (eg iMacs).
    Second, in order for two people on different computers to access the same project, you would have to store all the media & scratch files in a common location, and set up each copy of FCE to access the files from that location. The problems with this approach are 1) FCE cannot do this over a network, 2) you cannot connect an external FW drive to both computers at the same time, 3) FCE prefers that your FCE Project file(s) be on your system HD.
    You could use an external FW drive to store your media & scratch files; then connect the FW drive to the computer that is going to work on the project - but not to 2 computers at the same time. You will still have to copy the FCE project file between the two iMacs each time you swap from one to the other for editing.

  • How to connect two iviews in Visual Composer 2004s?

    Hi,
       I am trying a sample application (Bank Details) in Visual Composer(Netweaver 2004s) but getting a warning as "Event EVT1 is declared but cannot be raised". Actually I want to show the GetList values in the first iview & GetDetil values in the second iview. I have done everything for the two iviews, but not able to connect the two iviews.I tried to drag from Signal Out of the first iview to Signal In of the second iview, but not able to connect them.
    Hope someone can suggest a solution.
    Regards
    Shemim

    Hi
    Sorry for the mistake.
    Please refer this:-
    Re: How can I transfer data form one data store to another iview /dats store
    Re: Popup communicating with multiple iviews (layers)
    Regards
    Navneet
    null
    Message was edited by:
            Navneet Giria

  • Connecting two routers to create a home network and have access to the net "wired"

    How do i set up a network between two linksys routers that can access the internet and computers set up on both routers. I noticed I cannot browse our home network computers that are behind the other router. currently i have a net connection going to router 1 and a cable from that router going to the wan port on router two. I cannont access router 1 computers from router 2. thank you for your help!

    See here.

Maybe you are looking for

  • BPM console doesn't shows the deployed application in BPM console

    Hi Friends, i developed a BPM process in Jdeveloper and deployed in the weblogic server. Enterprise manager shows that application but in BPM workspace doesn't shows that application to initiate the process form BPM console. any one can you please le

  • Logic Pro 9.1.1 AU third-party plug-ins ongoing issue for many

    Where is the Logic development team on this? Nearly all third-party AU plug-ins produce random pops and clicks at the beginning of playback and on occasion randomly during playback but before audio regions in tracks with these plug-ins installed. The

  • Pb 1.67 powerPC 10.5.8 cant get flash to work on it

    I am trying to get a flash player to work on my Powerbook G4 with 10.5.8

  • SWFLoader issue

    Hi, When loading and external .swf file, I get the following error: URIError: Error #1052: Invalid URI passed to decodeURI function.     at global/decodeURI()     at mx.controls::SWFLoader/OSToPlayerURI()[E:\dev\4.0.0\frameworks\projects\framework\sr

  • Connect one R/3 and two PI using same ABAP Proxy

    Hi experts, Please help me with follow: I need connect one system R/3 to two systems PI (7.0 and 7.1) using ABAP Proxy. How can see the repository objects of the two PI systems in transaction SPROXY? Thanks in advance.