Manual module connection​s

Hallo again!
Is it possible to connect modules manually. I mean the auto-route function is nice as long as you do not want right angles. I want to connect two modules around the corner with parallel connections.
Thanks for every help.
By the way, this forum is great.
Best regards
Hilby
Solved!
Go to Solution.

In the Options menu, turn off the Auto Router.
Please note.... you can manually route the wires - click to change direction, but, if you subsequently move the module, the autorouter kicks in again, and does its thing.
- cj
Measurement Computing (MCC) has free technical support. Visit www.mccdaq.com and click on the "Support" tab for all support options, including DASYLab.

Similar Messages

  • My new Mac Air continues to disconnect from WiFi after going to sleep.  When waking it up I have to manually re-connect.  How do I keep it connected?

    My new Mac Air continues to disconnect from WiFi after going to sleep.  When waking it up I have to manually re-connect.  How do I keep it connected?

    I had this problem too and solved it by doing a clean install. After that it was gone.
    This is a drastic method since it takes quite some time to reinstall lion and all your software.
    Thoughts I had why it started working after a clean install are the following:
    It looked like the airport wasn't able to reconnect fast enough before the connection timed out. So what could have prevented my mac from being able to connect fast enough?
    Apps that consume processor cycles. I love what I would call 'System Enhancers', little apps that enhance my workflow (Moom, Alfred, Dropbox, Default Folder etc). I'm not saying that these are the problem, they might be programmed processor friendly, but check if you have apps that consume processor cylcles. It might prevent airport from being able to reconnect quickly enough before it times out.
    Mobile Config profiles. Another thought I had was that I had a mobile config 802.1X profile installed for the company were I worked. It used TTLS to connect to the corporate network. This profile might have gotten in the way.
    And a sidenote...
    Routers with hardware acceleration might also be a problem. My router is a Wireless Gigabit Router 300N WL-351 and has hardware acceleration. As soon as I activate that my wifi connection keeps dropping. It is as if a Macbook Air can't handle that amount of optimisation.
    That's it, hope it helps those who are still having the problem.
    Best, Jan

  • Connecting to Exchange Online using module vs. manually : module wont work

    I'm nearly at my wits' end. 
    I have installed MSOnline, and Active Directory modules for PS 3.0.
    I've created a PS module which contains a function, "connect-exchange" which simply gets my credentials, creates a new session for Microsoft Exchange online, then connects to MSonline and imports the PSsession for exchange. I run PS as administrator
    (windows 7), set-executionpolicy unsigned, open $profile and add in the modules I'll use most (Active Directory, MS Online, and my custom module). I run PS as my normal user, and get-module reports all three modules are loaded, including my custom one. I run
    the function "connect-exchange" and it goes as expected. I am redirected to two URI's and a Module name is listed with exported commands pertinent to managing Exchange Online. Great. The problem is that
    none of the cmdlets work, and the Exchange Online tmp module does not show up in get-module.
    The kicker is that If I open my custom module with the connect-exchange function, highlight the actual commands in the function and run them manually, everything works properly. 
    Letting PS do the module makes it appear to work, except nothing related to my exchange session shows up in get-module, and none of the cmdlets are available. Manually running the exact same code that is in the module makes it work.
    This is my custom module, which loads when I start powershell:
    Function Connect-Exchange()
    $cred = Get-Credential
    $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $cred -Authentication Basic -AllowRedirection
    Connect-MsolService -Credential $cred
    Import-PSSession $Session
    Running "connect-exchange" does connect, and this is the output (it is identical to the output as when I run the commands in the function manually, as would normally be expected):
    PS H:\> Connect-Exchange
    cmdlet Get-Credential at command pipeline position 1
    Supply values for the following parameters:
    WARNING: Your connection has been redirected to the following URI: "https://pod51009psh.outlook.com/powershell-liveid?PSVersion=3.0 "
    WARNING: Your connection has been redirected to the following URI: "https://by2prd0412psh.outlook.com/powershell-liveid?PSVersion=3.0 "
    ModuleType Name ExportedCommands
    Script tmp_j1a0we4q.sad {Add-AvailabilityAddressSpace, Add-DistributionGroupMember, Add-MailboxFolderPermiss...
    Get-module doesn't give me this module, tmp_j1a0we4q.sad. No Script modules are listed that give me any exchange exported commands. Get-PSsession shows 1 session, opened with Microsoft.Exchange . No exchange online cmdlets are available to me at this point
    (including any of the ExportedCommands listed above).
    If I remove the session, open the custom module (listed at the top of this message), highlight the code in the connect-exchange function, then F8, I get the exact same output as the 2nd box listed above, but my exchange cmdlets are available and usable.
    Any ideas why the function which is part of a module which is imported at the start of each PS session does not seem to work the same as running the commands in the function independently?

    Hey Ben,
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd878284%28v=vs.85%29.aspx will probably give you a hint.
    "When a module is imported, a new session state is created for the module, and a
    PSModuleInfo object is created in memory. A session-state is created for each module that is imported (this includes the root module and any nested modules). The members that are exported from the root module, including any members that were exported to
    the root module by any nested modules, are then imported into the caller’s session state."
    Perhaps, because that module has it's own session, it's modules are being missed or are precluded from being imported into subsequent sessions. I do something very similar to you, except I just include the Connect-Exchange function in my profile.ps1 directly
    instead of creating a custom module.
    Good luck!
    Shane

  • Root Application Module connecting to 2 databases technologies

    I have an application which needs to connect to 2 different databases.
    I managed to get access to each databases in their own respective Application Modules.
    In order to achieve that, I created a new ViewObject within the "oracle" model, and still used the "MySQL" query. Using the jbo.envinfoprovider property, I can force the Application module to connect to the appropriate database, MySQL in this case.
    Now, my problem is that I need to have a Root application module that will use BOTH "child" application module and eventually BOTH database connections. At the moment, I can only use one at a time. Using the jbo.envinfoprovider property of the ROOT application module allows me to select which of the 2 database I want to use, but I need both.
    To put it in a tree-like structure, here's what I want to achieve :
    ROOT (Oracle + MySQL)
    |
    |__ AppModule1 (Oracle)
    | |
    | |__ View1
    | |__ View2
    |
    |__ AppModule2 (MySQL)
    |
    |_ View3

    What I mean is if I deploy the application on the integrated weblogic server, using the default navigation flow defined in the adfc-config.xml file, when I reach the "forensic" page, it will try to "read" from both database and fail at reading the second database.
    The page displays the following :
    1- a table containing the records from the Oracle database (3 columns=> ID, pattern, solution)
    2- an adf_form used to populate the above table :
    - the ID is bound to a database trigger, so is set to readonly
    - the solution is a text input field
    - the Pattern is a LoV, based on the data found on the MySQL database.
    If I test the page from the "forensic.jspx" itself (by right-clicking and selecting "Run"), I can manage the data just fine (I can do any CRUD operations I want)
    on the other hand, if I go to the "adfc-config.xml" file and (right-click and then select "Run"), the page will only read one of the two database (I can control which one, by changing the jbo.envinfoprovider property of my application module)
    Hope this helps understand what I am trying to achieve.
    Thanks !

  • Aplication Module Connection

    Is it possible to specify the connection that a certain Aplication module/transaction uses?
    I need to have a connection open for each user, thats's why i need to tell the application module the connection to use...
    Please this is very important...
    Daniel Campelo

    1 - out.println("JDBCURL = "+
    appModule.getDBTransaction().getConnectionMetadata().g
    tJdbcURL());
    2 - appModule.getDBTransaction().disconnect();
    3 - out.println("Is connected =
    "+appModule.getDBTransaction().isConnected());
    4 -
    appModule.getDBTransaction().connect(this.getConnectio
    5 - out.println("URL = "+
    this.getConnection().getMetaData().getURL());
    6 - out.println("Is connected =
    "+appModule.getDBTransaction().isConnected());
    7 - out.println("JDBCURL = "+
    appModule.getDBTransaction().getConnectionMetadata().g
    tJdbcURL());
    1 - is printed the JDBCURL of the transaction
    2 - Disconnect
    3 - Confirmation
    4 - The new connection
    5 - gets the url of the new connection (directly)
    6 - Confirms the new connection
    7 - Here he should print an URL equal to the one
    shown in the line 5... Instead it shows an emptye
    string...Shouldn't the DBTransactionImpl class
    actualize the metadata for the new connection?
    I'm getting really desperate...Please is there anyone
    who knows how to or even know if this is a bug or a
    missing feature of the connection? I really need the
    connection done like this.
    TIABH,
    Daniel CampeloSollution :
    Process all listed steps making the following change in the step 4 :
    4 ->
    //Here is the class i needed!!!!!
    DBTransactionImpl2 dbTrans = (DBTransactionImpl2)(appModule.getDBTransaction());
    //And now this method it's not deprecated :)))))))
    dbTrans.connect(this.getConnection());
    So it should be in the end like this :
    1 - out.println("JDBCURL = "+
    appModule.getDBTransaction().getConnectionMetadata().g
    tJdbcURL());
    2 - appModule.getDBTransaction().disconnect();
    3 - out.println("Is connected =
    "+appModule.getDBTransaction().isConnected());
    4 -//Here is the class i needed!!!!!
    4.1 - DBTransactionImpl2 dbTrans = (DBTransactionImpl2)(appModule.getDBTransaction());
    //And now this method it's not deprecated :)))))))
    4.2 - dbTrans.connect(this.getConnection());
    5 - out.println("URL = "+
    this.getConnection().getMetaData().getURL());
    6 - out.println("Is connected =
    "+appModule.getDBTransaction().isConnected());
    7 - out.println("JDBCURL = "+
    appModule.getDBTransaction().getConnectionMetadata().g
    tJdbcURL());

  • Jdeveloper 10g Failed to chekcout the application module connection problem

    Hello friends,
    I am using trying to simulate the demo of "Oracle Application Development Framework (Oracle ADF) declarative and visual J2EE development" given on the same site.
    To do the same I just downloaded the Jdeveloper 10g and followed the steps given in the application.
    While running the page1DataAction in StrutsPageFlow I got the following exception on my internet explorer.
    500 Internal Server Error
    JBO-30003: The application pool (model.AppModuleLocal) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: java.lang.ClassCastException, msg=sun.jdbc.odbc.JdbcOdbcConnection
         at oracle.jbo.JboException.<init>(JboException.java:343)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1759)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2488)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:434)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:241)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:405)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.createWorkerApplicationModule(WSApplicationModuleImpl.java:1606)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.getCustomApplicationModule(WSApplicationModuleImpl.java:1584)
         at oracle.adf.model.bc4j.DCJboDataControl.setDataProvider(DCJboDataControl.java:781)
         at oracle.adf.model.bc4j.DCJboDataControl.<init>(DCJboDataControl.java:140)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:94)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:85)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:249)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:93)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:543)
         at oracle.adf.model.servlet.ADFBindingFilter.initializeBindingContext(ADFBindingFilter.java:228)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:84)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:610)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:784)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:536)
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.ClassCastException, msg=sun.jdbc.odbc.JdbcOdbcConnection
         at oracle.jbo.JboException.<init>(JboException.java:343)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:524)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1646)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2488)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:434)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:241)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:405)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.createWorkerApplicationModule(WSApplicationModuleImpl.java:1606)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.getCustomApplicationModule(WSApplicationModuleImpl.java:1584)
         at oracle.adf.model.bc4j.DCJboDataControl.setDataProvider(DCJboDataControl.java:781)
         at oracle.adf.model.bc4j.DCJboDataControl.<init>(DCJboDataControl.java:140)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:94)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:85)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:249)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:93)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:543)
         at oracle.adf.model.servlet.ADFBindingFilter.initializeBindingContext(ADFBindingFilter.java:228)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:84)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:610)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:784)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:536)
    ## Detail 0 ##
    java.lang.ClassCastException: sun.jdbc.odbc.JdbcOdbcConnection
         at oracle.jbo.server.OracleSQLBuilderImpl.isConnectionAlive(OracleSQLBuilderImpl.java:3168)
         at oracle.jbo.server.ConnectionPool.getConnectionInternal(ConnectionPool.java:90)
         at oracle.jbo.server.ConnectionPool.getConnection(ConnectionPool.java:65)
         at oracle.jbo.server.ConnectionPoolManagerImpl.getConnection(ConnectionPoolManagerImpl.java:56)
         at oracle.jbo.server.DBTransactionImpl.establishNewConnection(DBTransactionImpl.java:831)
         at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1067)
         at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:5286)
         at oracle.jbo.server.DBTransactionImpl2.connect(DBTransactionImpl2.java:116)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:288)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.connect(ApplicationPoolImpl.java:3515)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2151)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:515)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1646)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2488)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:434)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:241)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:405)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.createWorkerApplicationModule(WSApplicationModuleImpl.java:1606)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.getCustomApplicationModule(WSApplicationModuleImpl.java:1584)
         at oracle.adf.model.bc4j.DCJboDataControl.setDataProvider(DCJboDataControl.java:781)
         at oracle.adf.model.bc4j.DCJboDataControl.<init>(DCJboDataControl.java:140)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:94)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:85)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:249)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:93)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:543)
         at oracle.adf.model.servlet.ADFBindingFilter.initializeBindingContext(ADFBindingFilter.java:228)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:84)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:610)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:784)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:536)
    Please help me.As i am new user please tell me Is there any path to be set.
    ThankYou.

    CAN ANYONE HELP ME.

  • I got infected with XP Internet Secutiry 2012 and now every time I load FF it changes the access methodd to a manual proxy connection of 127.0.0.1

    How do I stop the proxy information from being changed?

    Parts of that infection may be left behind.
    Have your tried going to Options > Options > Advanced > Network > Connection > Settings, tick "No proxy"? Then close Firefox, restart Firefox from your desktop icon, check the setting just made to be sure it "sticks".
    You can get some help/information about that malware here: http://www.bleepingcomputer.com/virus-removal/remove-win-7-antispyware-2012
    The procedure on bleepingcomputer.com (above) is involved. If you feel uncomfortable doing it yourself, you can scroll to the bottom of that page and received '''''expert help''''' on their forum. Just follow their instructions and do exactly what they tell you to do, no more/no less. Be patient, they reply in the order that posts in the forum are received.
    <br />
    Your question under More information: '''''"Is it illegal to kill people who impregnate you PC with extortionware?"'''''
    Sometimes I wish it wasn't illegal, but I am sure that it is.
    <br />
    <br />
    After you get the problem above resolved. you need to do the following.
    '''You need to update the following.''' The Plugin version(s) shown below was/were submitted with your question and is/are out of date. You should update to avoid known security issues with the version(s) you have installed. Click on "More system info..." to the right of your question to see what was included with your question.
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *Next Generation Java Plug-in 1.6.0_21 for Mozilla browsers
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #*There are plugin specific testing links available from this page:
    #**http://kb.mozillazine.org/Testing_plugins
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update the [[Java]] plugin''' to the latest version.
    #*Download site: http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)
    #**'''''Be sure to <u>un-check the Yahoo Toolbar</u> option during the install if you do not want it installed.
    #*Also see "Manual Update" in this article to update from the Java Control Panel in Windows Control Panel: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org/Firefox_:_FAQs_:_Install_Java#Multiple_Java_Console_extensions
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • ACE module connection drops

    I am facing an issue with Cisco ACE module. Have 5 servers serving the connections for applications. However, during peak hours there is lot of dropped connections.
    Also have lot of fragment reassemble.
    Please help how to go ahead troubleshooting the issue.

    it is on the cisco site. In the ACE datasheet to be exact. But I'm talking about the appliance. Not sure about the module. But should be the same. Only thing I was not sure was whether the same limits apply to the base license package, or are the figures lower for the base license. Cisco says that the numbers are the same for the base package.
    however I'm yet to verify it on the field

  • Restore manual mobile connection

    Hi!
    Is it possibl to have the N9 connect to preferred network automatically? I need to have it fixed to Orange CH and not automatically select anything else. Switching to manual requires me to select the network every time when I switch on the phone. It should use orange on startup and keep it that way everytime I restart it.

    try resetting your network settings.
    Settings.app -> General -> Reset - > Reset Network Settings
    CMIIW

  • Dell BT 3.55 module connectivity error?

    Hi there,
    I got a new Dell XPS notebook with a BT module 3.55.
    The OS running is Vista.
    Driver or BT stack is by Broadcom/Widcomm.
    The issue is my Nokia cell (N93) fails to connect with it.
    It connects for a moment than gives an error message the BT peripheral device drivers are not installed??
    Hoping to hear from you,
    Regards!

    I did reinstall the BT 3.55 Dell drivers.
    But still face a few issues..........
    1. The N93 gets connected & paired to my note book but gets disconnected in secs....??
    2. Secondly when I click on the BT icon I can receive a file from my XPS notebook but cannot send a file from my cell to the notebook.........the wizard hangs??
    In BT devices> N93> Properties> Services............there are quite a few........I unchecked a few service like Nokia Obex Suite, NokiaSync MLServer, now don’t get yellow icon BT peripheral devices in Device Manager, Sync ML DMClient........ Checked Services are File Transfer Obex, Image Responder, Object Push (Obex), Sync ML Client……….what services need to be checked & unchecked?
    To cut it short why cant i remain connected & why cant I send a file from thr cell..........
    Thanks in advance!

  • Modules connection

    how the different modules of SAP (hr) are conected with each other i.e  OM, PA ,TIME Payroll
    link with event and training , PMS , Compensation management, Recruitment

    hi
    There are integration switch available in table T77S0
    for example u can find a entry
    PLOGI     ORGA     X     Integration Switch: Organizational Assignment
    Regards
    Sameer

  • Can't hear output of external sound module connected with keyboard to logic

    Hey all, I have two related questions about midi.
    My setup is a macbook, with motu ultralight, and roland sh-32 synthesizer with an evolution mk-225c midi keyboard.
    1- when i have recorded (successfully) a midi sequence into logic using the note enter functions of the synth (has no keyboard), I cannot hear the output of the synth (output is from motu-works fine with everything else)-unless I put phones through the output of the synth.When ido this i can hear the mdi sequence i recorded. If I use the keyboard on it's own, hooked up midi out (only) to midi in of motu, I can hear ALL internal (logic) software synths (es1 etc) can hear no problem.
    I have tried routing the synth in-outs in audio/midi device selector, and added keyboard as well, to no avail.
    2- when I try and record a midi sequence with the synth and use keyboard to play notes, I cannot hear output from logic. Noting that I can hear all output loops, internal synths, audio etc no prob otherwise. I assume I'm doing something wrong and this would be the case with any external synth drum machine etc. I'm banging my head against the wall!
    Hope this makes sense, please help someone.
    Thanks

    Hi Simon,
    simonbatbot wrote:
    Hey all, I have two related questions about midi.
    My setup is a macbook, with motu ultralight, and roland sh-32 synthesizer with an evolution mk-225c midi keyboard.
    1- when i have recorded (successfully) a midi sequence into logic using the note enter functions of the synth (has no keyboard), I cannot hear the output of the synth (output is from motu-works fine with everything else)-unless I put phones through the output of the synth.When ido this i can hear the mdi sequence i recorded. If I use the keyboard on it's own, hooked up midi out (only) to midi in of motu, I can hear ALL internal (logic) software synths (es1 etc) can hear no problem.
    I have tried routing the synth in-outs in audio/midi device selector, and added keyboard as well, to no avail.
    1. You have to route the *audio outs* of your SH-32 into your Motu Ultralight and then select the appropriate inputs in Audio Midi Utility (Audio section). In Logic you have to *create an aux* in for those inputs.
    2- when I try and record a midi sequence with the synth and use keyboard to play notes, I cannot hear output from logic. Noting that I can hear all output loops, internal synths, audio etc no prob otherwise. I assume I'm doing something wrong and this would be the case with any external synth drum machine etc. I'm banging my head against the wall!
    2.You have to connect the external synths to an audio in and route that as above.
    ...if I understand correctly that you play the Evo and want to hear the SH-32, thru Logic? You have to create an *external instrument* track that outputs Midi to the SH-32. The Evo must also be setup in AM-utility as a controller of course.
    regards, Erik.

  • Always have to manually re-connect Outlook 2007 mail account

    I get my office mail from an Outlook server and have set up the mail account as an Office 2007 account. I used to have it set up as an IMAP account, and this problem didn't occur.
    So every time I open up my laptop, all the other mail accounts re-connect just fine, only that Outlook account won't - it shows that "lightning bolt" symbol, I have to click it to get the option "connect all mail accounts", then it connects just fine and gets my new mail.
    So how can I make it connect automatically? I might have to add that I'm going through a VPN connection.

    Hi,
    Generally, whether Public Folder is connected or not, it does not affect
    mail delivery.
    I'd like to ask the following question to narrow down the issue:
    1, Is there the same issue when using OWA?
    2, How did you attach a public folder in outlook?
    3, When the affected user use outlook 2007 on a computer, which belong to the not affected user, does the issue persist?
    4, How about using other outlook version (like outlook 2010 or 2013)?
    Thanks.
    Niko Cheng
    TechNet Community Support

  • Output module connections

    I am currently using a cRio with a NI 9476 with the D-sub connector kit, so the DAQ has wire terminal outputs. I have found that BNC cables work the best for signal generation, what is the best method of generation signals with wire terminal outputs. I know you cannot convert from wire terminal to coaxial but just looking for suggestions.
    Thanks

    That will all depend on what you are connecting...look at the pinout for the device.  If you want to run a common ground between your DUT and the 9476 you can.  If you are just running the wired around you are correct you cannot use BNC because they will all be carrying seperate voltage signals.
    Doug Farrell
    Product Manager - Condition Monitoring
    National Instruments
    National Instruments Condition Monitoring

  • Manual database connection

    Hello!
    How can I manualy (not using wizard) create a database connection and than use Business components?
    My application login is like that:
    I send username and password to one database and it gives me back host name and SID for the second database where all the tables and views that I need are.
    So, how can I create that second database connection in code (java) and generate business components not using BC4J wizard who needs database connection made with database connection wizard?
    Thanks!
    Andrej

    try java:comp/env/jdbc/mydb or java:comp/env/mydb

Maybe you are looking for

  • Acrobat 9 Pro - Pale Yellow Background?

    I have seen similar threads to this before but never with a satisfactory explanation/resolution so I'm going to try again! When printing .pdf documents opened using Acrobat 9 Pro to a Lexmark laser colour printer, I get certain areas of text/image pr

  • New keyboard - old keyboard

    After having seen the MacBook Air, I've waited - like probably a lot of us - for a revision of the MBP , with multitouch trackpad and probably other improvements. And there it is - with a Penryn CPU, more VRAM, bigger HD and cheaper price at least in

  • PO MORE THAN 100 CR

    I  WANT TO  CREATE THE PO OF VALUE MORE THAN 100 CR BUT SYSTEM GIVING ERROR MESSAGE VALUE OF SERVICE ITEM EXCEED THE ALLOWED VALUE LIMIT. PL GIVE THE SOL'N

  • Sales docu type ZLCO Vs Billing type ZLR - Error

    Hi Experts, Pls help me in the following scenario : I made one sales order with order type ZLCO.(Order relevant Billing type) maintained in VOV8, when i create billing for this order i am getting the following error  Sales document type ZLCO cannot b

  • Oracore8.dll not found

    I have downloaded the Oracle 8i JDBC drivers to use with Oracle 8 (8.0.3) and JDK1.2. When I run my code i got an alert window telling me that oracore8.dll is missing. Any help would be much appreciated as it is for my University dissertation. Thanks