Dynamic Detection of Interface Addition

How can the addition of new interface be detected on the fly (dynamically). The information of new interface IP Address, its properties are needed.

and some other examples :
http://apex.oracle.com/pls/apex/f?p=44785:24:8147367699973:::24:P24_CONTENT_ID,P24_PREV_PAGE:6065,24
How to Use an Oracle Service Bus Customization File
http://www.insemble.com/oracleservicebus-deployment.html
customization won't be applied when you rightmouseclick in eclipse and deploy it to your server.
so in that case you will need to use some ant script to be able to both deploy your sbconfig.jar and apply the customization file based on the enviroment you're deploying to.
so you create different customization files for every environment (or use 1 placeholder script and use maven/ant to find/replace placeholder values) and apply those, this will need to be done from some custom script you need to create yourself.

Similar Messages

  • Follow-up Dynamic expression in interface

    I created this thread so I can give credits to anyone helps me on this.
    I tried to follow the following thread and got some errors.
    Dynamic expression in interface
    When I execute the interface alone with out Java procedure(<@=result@>) its working.
    In the package the first step is Java procedure. The second step is the interface. When I execute the package its failing at the interface level even if I don't call the procedure result in the interface. Any idea.
    Dev - Yes I am using the same context
    -app

    When I right click and execute its working without the Java Procedure result in the interface.
    When I execute as a package I am getting same error message with or with out the procedure variable in the interface at the step "Insert flow into I$ table"
    Following is the command from the execution tab where its failing.
    insert into STAGING.I$_DYNAMIC_TABLE_1
         SRC_TAB_COLUMN,
         SRC_TAB_COLUMN_VALUE,
         PRODUCT_NAME,
         PRODUCT_NAME_1
    select
         DYNAMIC_TABLE.SRC_TAB_COLUMN,
         DYNAMIC_TABLE.SRC_TAB_COLUMN_VALUE,
         DYNAMIC_TABLE.PRODUCT_NAME,
         <@=result@>
    from      STAGING.DYNAMIC_TABLE DYNAMIC_TABLE
    where     
         (1=1)

  • I have been using USB 2.1 10/100M ethernet adaptor. But it takes more than 15 mins to detect network interface. What should I do. I am not using apple's company adaptor. It's local company.

    I have been using USB 2.1 10/100M ethernet adaptor. But it takes more than 15 mins to detect network interface. What should I do. I am not using apple's company adaptor. It's local company.

        jsavage9621,
    It pains me to hear about your experience with the Home Phone Connect.  This device usually works seamlessly and is a great alternative to a landline phone.  It sounds like we've done our fair share of work on your account here.  I'm going to go ahead and send you a Private Message so that we can access your account and review any open tickets for you.  I look forward to speaking with you.
    TrevorC_VZW
    Follow us on Twitter @VZWSupport

  • Dynamic virtual tunnel interface on 2821

    I tried to configure a dynamic virtual tunnel interface on a Cisco 2821 with release 12.4(9)T1 advanced ip services, aiming to terminate VPN client ipsec tunnels on it.
    The feature is supported by this software release. Documentation says:
    - enter configuration
    - configure a virtual-template interface
    - type "tunnel mode <mode>"
    but the router does not accept this command.
    Any hint?
    Thank you in advance.
    Denis

    Try:
    just have to take a look at the concentrator's configuration.
    http://www.cisco.com/en/US/products/hw/vpndevc/ps2284/products_configuration_example09186a00801ae24c.shtml
    and this one is an example with routers
    http://www.cisco.com/en/US/tech/tk583/tk372/technologies_configuration_example09186a0080143b0a.shtml

  • %CDP-W-NATIVE_VLAN_MISMATCH: Native VLAN mismatch detected on interface fa1.

    I am getting the following message in my logs on SF300-8
    "%CDP-W-NATIVE_VLAN_MISMATCH: Native VLAN mismatch detected on interface fa1."
    What is causing the error, see VLAN setup below:

    Hi,
     Yes, in this case you can change the native vlan on the that switch with the command (config-if)#switchport trunk native vlan #, there is no need to reboot the switch in order for the change to take effect.
    Regards,

  • %CDP-W-NATIVE_VLAN_MISMATCH: Native VLAN mismatch detected on interface gi26.

    Hell everyone,
    I have a sonicwall firewall with 6 vlan and 3 cisco sg28 switches connected to it, everything is working fine, but I se I have these waring the the log files of all three switches.
    I just need to know the best way to resolve this..
    the firsrt switch is the "core" switch and the other two are connect to it in a star pattern.
    Sonicwall--switch1.101.1----switch 101.10
                                          |
                                          |
                                          switch 101.20
    So core switch 101.1 has default vlan set to 100  which is the default lan on the sonicwall that it is connected to. There are no devices in .100
    switch 101.10 has devault vlan set to 1
    switch 101.20 has default vlan set to 1
    switch 101.1 is seeing these warnings..
    2147483643
    2014-Apr-01 19:33:08
    Warning
    %CDP-W-NATIVE_VLAN_MISMATCH: Native VLAN mismatch detected on interface gi27.      
    2147483644
    2014-Apr-01 19:30:52
    Warning
    %CDP-W-NATIVE_VLAN_MISMATCH: Native VLAN mismatch detected on interface gi26.     
    switch 101.10 is seeing these warnings;
    %CDP-W-NATIVE_VLAN_MISMATCH: Native VLAN mismatch detected on interface gi52.        
     port gi52 is connecting to switch 101.1
    switch 101.20 is seeing these warings;
    %CDP-W-NATIVE_VLAN_MISMATCH: Native VLAN mismatch detected on interface gi27.     
     portgi27 is connected to switch 101.1
    Thanks!

    Hi,
     Yes, in this case you can change the native vlan on the that switch with the command (config-if)#switchport trunk native vlan #, there is no need to reboot the switch in order for the change to take effect.
    Regards,

  • Dynamic expression in interface

    Hi All
    Could someone share a way how to create dynamic expression in ODI interface. Eg. I have metadata and want to build case expression on its basis and use it in interface.
    I have tried several possibilities:
    1) Use Java program in mapping expression.
    But during interface steps creation getJDBCConnection() method returns null for both SRC and DEST.
    Is there is a way how to connect to database?
    2) Generate expression in procedure and use it in interface
    Is there is a way how to pass string from procedure to interface?
    3) Use variable to generate expression
    Pure SQL is not enough to generate my expression, I need cycles, ifs etc.
    4) Use special IKM which replace some substitution symbols with generated expression.
    Well if there is no other choise I'll pick this up but don't want to have additional special KM.
    Could someone propose other solution or workaround for listed?
    Many thanks in advance!
    Oleg Ivanov

    Dev -
    I followed this thread and thought I'll try it in my end. Did the following.
    1)Created a procedure and pasted your code (changed the table name to mine)
    2)Created an interface and connected my source and target. In one of the target columns I put <@=result@>
    3)created a package and brought procedure and interface.
    When I executed the procedure ran successfully but failed at the interface level. I am getting the following error message.
    17008 : null : java.sql.SQLException: Closed Connection
    java.sql.SQLException: Closed Connection
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:227)
         at oracle.jdbc.driver.PhysicalConnection.prepareStatement(PhysicalConnection.java:753)
         at oracle.jdbc.driver.PhysicalConnection.prepareStatement(PhysicalConnection.java:670)
         at com.sunopsis.sql.SnpsQuery.a(SnpsQuery.java)
         at com.sunopsis.sql.SnpsQuery.a(SnpsQuery.java)
         at com.sunopsis.sql.SnpsQuery.updateExecStatement(SnpsQuery.java)
         at com.sunopsis.sql.SnpsQuery.executeQuery(SnpsQuery.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execCollOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.j(e.java)
         at com.sunopsis.dwg.cmd.h.z(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)

  • Bug: Startup Parameter not detected on Interface scenario generation

    Hi,
    I'd like to report a bug in ODI when generating a scenario from an Interface.
    When a variable is used in the Diagram tab there is no problem, so this can be the work around.
    However when one uses a variable on the flow tab in one of the KM options, you'll find that variable is not detected when generating a scenario from this interface.
    The KM I'm using is: IKM SQL to Hyperion Essbase (DATA)
    Here the RULE_FILE option is set to: #vDataLoadRule -- (Also tried '#{project_name}.vDataLoadRule' )
    Hope this can be solved in new release, so one is not forced to make non sense where clauses in the interface.
    How to use the work around?
    If you do not yet have a filter on your source, then:
    Create a Filter on your source data store, by dragging and dropping a field.
    in the filter set something like this:
    {DataStore}.{DataField} = {DataStore}.{DataField}
    and #{myVariable} = #{myVariable}
    Otherwise, just add the following to an existing source filter:
    and #{myVariable} = #{myVariable}
    This will create an where clause on your source, which is always true.
    Hope this helps!
    Rudy

    Hi John, thanks for your quick reply.
    Doing it dynamicaly is my way to build stuff.
    So I've the situation where need to load data to several cubes (more are coming).
    I want my life to be easy (as there is more to life...) and so I've created a package that does the following:
    Get details of the cube that needs to be processed and process it. The benefit is, that I only need to create a new interface (not a whole package) and register it in my essbase metadata table when a new cube is built.
    Of course I can drag the Interface into that package, but then that package is only capable of running that interface, since there is no way to set a variable Interface name.
    Hence, I need the interface as an scenario, so that I can make it dynamic.
    I have a package that initializes the variables e.g. #vDataLoadRule, #vDataLoadName, #vDataLoadVersion, Which I get from my sql table that holds my Essbase Database metadata ( Server, Application, DatabaseName, DataLoadName, DataLoadVersion, DataLoadRule) and then runs the scenario. The DataLoadName and DataLoadVersion are name and version of the Scenario (Interface) that needs to be processed.
    So with that as a background, I'd like to have dynamic Interfaces.
    The problem is that when you use a variable in the diagram tab of the interface it's perfectly detected when you generate a scenario of the interface, however when you use the variable in the flow tab, it's not detected on scenario generation.
    To me that's a bug.
    Cheers!

  • Dynamically change embedded interface view in window

    I have a Maincomponent M which embedds in its Mainwindow an interface view V_L from a component definition interface cid L. CID L handles the layout with several views and has two at runtime chosen variants (= cid_L-implementating components ) L1 and L2.
    now my wd-application starts e.g. with layout L1 and I want to switch at runtime via a button or an event to L2. how can I achieve this?
    Because M embedds in its window V_L (which can be filled by L1 or L2) I tried to delete the component in the usage of L1 and create the new component for showing L2.
    but this doesn´t work. should I change some navigation links dynamically? because I thought when I create component L2 the interfaceview V_L is filled and I it´s automatically shown in its higher-ranking Mainwindow from M which embedds V_L.

    Hi Thorsten.
    Is your scenarion as follows.
    You define an outbound plug in your main (e.g. 'OUT') at design time.
    Then you start the application and you create a dynmic navigation using OUT
    to L1 and embedd L1 in M this way.
    Then you click a button and create again a dynamic navigation using OUT as outbound to L2 and embedd L2 in M?
    If so you create 2 navigations which will be triggered when you fire OUT.
    You can test this by setting the break point on the fire method. Somehow you will come to a point where you will see a table which stores the navigations and should contain 2.
    I have a table with authorisation which contains all necessary data for the navigation to a corresponding component. I use the authoridation ID as name for the outbound which have to be created dynamically. And I use a Hashtable to store the value. This is of the type CL_C2S_SAPI_HASHTABLE. I create the object as attribute in view controller. Then each time a link is clicked I check whether the hashtable already contains a value for this authorisation. If not I call
    prepare_dynamic_navigation and use the ID as outbound. Afterwards I store it in th hashtable.
    lv_outplug = wd_this->outbound_plugs->getvalue( lv_auth ).
    *   the navigation to the specified auth is performed
    *   for the first time and have to be created.
        if lv_outplug is initial.
          lv_outplug = lv_auth.
          try.
              l_view_controller_api->PREPARE_DYNAMIC_NAVIGATION(
                  source_window_name          = 'W_MAIN'
                  source_vusage_name          = 'V_MAIN_USAGE_1'
                  source_plug_name            = lv_outplug
                  target_component_name       = lv_comp
                  target_component_usage      = 'USED_COMPONENT'
                  target_view_name            = 'W_MAIN'
                  target_plug_name            = lv_plug
                  target_embedding_position   = 'V_MAIN/UI_COMP_CONTAINER' ).
    *         save outbound_plug for later usage.
              wd_this->outbound_plugs->setvalue(
               exporting
                 name = lv_auth
                 value = lv_outplug
            catch cx_wd_runtime_repository into lr_exception.
              data s type string.
              s = lr_exception->get_text( ).
              raise exception type cx_wdr_rt_exception.
          endtry.
        endif.
        l_view_controller_api->fire_plug(
         exporting
           plug_name = lv_outplug
    Hope this helps.
    Cheers,
    Sascha

  • OVM Server 2.2.1 in a ProLiant BL680c G7 did not detect networks interfaces

    Hello everybody
    I just installed OVM Server in a HP ProLiant BL680c G7 and the installation finish. But the network interfaces was not detected. (The installation skip the network steps)
    The Server have 24 network interfaces (FlexFabric Embedded Ethernet)
    Any idea in order to recognize network interfaces??
    greetings

    Hi,
    try using OVM 2.2.2 which was released a week ago. (edelivery.oracle.com/linux)
    A lot of drivers were updated, maybe now your network cards are also detected.
    Regards
    Sebastian

  • How to give dynamically mapping in interface

    Hi all,
    I have requirement for this requirement i am thinking various scenarios,
    could please tell me is there any way to we can give source,target data stores and mapping dynamically(execution time) to the interfaces ? if it is possible then i can re use job again and again ?
    please give your solutions for this post
    Thanks,
    Surya.

    Please let me know if I miss the mark here.
    If you are trying to build the 150 interfaces without spending the time to do so manually, use the ODI SDK. Check out David Allan's blog post for examples here https://blogs.oracle.com/warehousebuilder/entry/odi_11g_interface_builder. You can build your interfaces once - without need for dynamic mapping at execution time.
    I'm pretty sure there is no good way in ODI "out of the box" to dynamically map columns at execution time, but I imagine you could use the ODI SDK to write a Java program that does so. Then, use the Open Tools feature in ODI to run the Java program within your ODI processes. I'm not sure the value of this, but I do not have a full understanding of your requirement.
    I hope this helps. Enjoy!
    Michael R.

  • URL dynamic in web interface

    Hello,
    I have created a planning cockpit for the endusers to access the web interfaces I created from a single web interface using URL's.
    I would like to know how I can get the URL dynamic as I have to transport this to the production system, having a different server name and port.
    Gert

    Hello Gert,
    I am exactly looking for a FM like that. I would like to integrate a BW web report in the GUI planning folder using a function button. When pushing the button, the web report shoud open in IE. I thought the standard FM like "HR_ULR_CALL_BROWSER" would work, but I don't know how/where to enter the URL as Input parameter (except for copying the FM and creating for each report/url a different FM).
    Could you let me know your solution?
    thanks a lot,
    martinn

  • [SOLVED]Linux 3.10.6 fails to detect network interfaces, input devices

    I upgraded my ASUS laptop to Linux 3.10.6 and I can no longer use my mouse or keyboard in a desktop environment. A USB mouse faired no better. The keyboard works in console mode. I've done a couple reboots and a good deal of searching online, but no one seems to have the same problem. My first inclination was that udev was no longer running, but a quick "ps -aux | grep udev" revealed that systemd-udevd was running, but not udev itself. Is it safe to start it manually? My network interfaces have also disappeared, BTW, and the font size in console mode has also changed (size has increased, font is fuzzier). Any ideas?
    EDIT: I do have the loopback interface.
    lsmod shows:
    ext4
    crc16
    mbcache
    jbd2
    hid_multitouch
    hid_generic
    usbhid
    hid
    sd_mod
    ahci
    libahci
    libata
    ehci_pci
    scsi_mod
    ehic_hcd
    xhci_hcd
    usbcore
    usb_common
    Last edited by ormris (2013-08-20 16:32:23)

    Does your running kernel match what pacman has installed?  Do uname -r and compare that against the version of pacman -Q linux.  If they are different, reboot.

  • Dynamic Structure in Interface and Forms

    Hallo experts,
    I am creating XML from the printreport. In print Report I am creating with RTTI a Structure and a Tabletype at runtime. Is it possible to give this type in Adobe Interface as type at runtime.
    The problem is that the XML looks like this.
    <PARVW>AG</PARVW>
      <KUNNR>0001000047</KUNNR>
    The costomer wants to show like this
    <PARVW_AG>AG</PARVW_AG>
      <KUNNR_AG>0001000047</KUNNR_AG>
    I have created a sturcture at runtime but I am not able to move it to form and interface.
    Can somebody help me in this issue.
    Thanks.
    Kind regards
    Waseem rana

    Hallo experts,
    I am creating XML from the printreport. In print Report I am creating with RTTI a Structure and a Tabletype at runtime. Is it possible to give this type in Adobe Interface as type at runtime.
    The problem is that the XML looks like this.
    <PARVW>AG</PARVW>
      <KUNNR>0001000047</KUNNR>
    The costomer wants to show like this
    <PARVW_AG>AG</PARVW_AG>
      <KUNNR_AG>0001000047</KUNNR_AG>
    I have created a sturcture at runtime but I am not able to move it to form and interface.
    Can somebody help me in this issue.
    Thanks.
    Kind regards
    Waseem rana

  • Dynamic programming user interface question...

    Hi forum:
    I´m creating radiobuttons dinamically, i saw the next reference, and it´s good but that´s examples suppose that i have a simple type charged with some data enumerated, and also my data are dinamyc beacuse i get it from a XML file.
    http://help.sap.com/saphelp_erp2005/helpdata/en/07/73a840bd6d3c13e10000000a155106/frameset.htm
    I mean, when i have to create a node dinamically i have to describe de datatype, but this data type for a RadiobuttonGroupByKey in the examples comes from a simple type previously filled, and my data is dinamically...
    Some body can help me, please?
    Thnks
    Josue Cruz
    Message was edited by: Josue Cruz

    Josue,
    1. For radio buttons & radion buttons group by key:
    final IWDAttributeInfo attr = <node>.getNodeInfo().getAttribute("<attr-name>");
    final ISimpleType type = attr.getSimpleType();
    final ISimpleValueServices svSrv = type.getSVServices();
    final ISimpleValueSet svSet = svSrv.getValues();
    svSet.put("ke1", "val1");
    svSet.put("ke2", "val2");
    svSet.put("ke3", "val3");
    2. Why not to simply use RadioButtonGroupByIndex? This way you may skip all dynamic UI programming and simply populate necessary node with your data.
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

Maybe you are looking for