Titan UDP example project

Hello,
i performed a example project for Titan ( so far command line based) using the titan.TestPorts.UDPasp . You will find the user guide to this test port inside the directory on github. --> https://projects.eclipse.org/projects/tools.titan/developer
I worked one Xubuntu 14.04 System with the Titan version 5.30. To see if UDP-packets are sent, i use wireshark. For sending packages from outsite, i use packcat. Both tools are available in the package manager of Xubuntu.
What is my example doing:
* There are three test cases. ( see myUDPadv2.ttcn)
1. DeviceOpenSocket () --> open a socket to perform UDP messages and check if the valid reponse obtain
2. DeviceSendMessage() --> send a UDP with data "FF96", ( you can verify with wireshark)
3. DeviceReceiveMessage() --> check if a expected message will receive during 20 sec. ( you have to send the expected message with packcat)
* The example is using the advanced mode of UDPasp.
* Only the client side is performed out of titan environment so far. Server side will maybe further work.
To Run :
* go to directory and open a terminal
* execute by comannd: ./myUDPadv RTEConfigurationFile.cfg
* myUDPadv is waiting for an incoming UDP package, therefor send one by command: netcat -vu 127.0.0.1 50050 -p 56790

In the next step I try to perform server side also into ttcn. Therefore I have to use the parallel mode of titan. For first steps I want to do this on system. The server behavior is not implemented yet.
I start the Main Controller with:
./mctr_cli ../titan_projects/myUDPadv3/RTEConfigurationFile.cfg
cmct
the following output will occur:
* TTCN-3 Test Executor - Main Controller 2 *
* Version: CRL 113 200/5 R3A *
* Copyright (c) 2000-2014 Ericsson Telecom AB *
* All rights reserved. This program and the accompanying materials *
* are made available under the terms of the Eclipse Public License v1.0 *
* which accompanies this distribution, and is available at *
* http://www.eclipse.org/legal/epl-v10.html *
Using configuration file: ../titan_projects/myUDPadv3/RTEConfigurationFile.cfg
MC@jbruder-VirtualBox: Unix server socket created successfully.
MC@jbruder-VirtualBox: Listening on IP address 127.0.0.1 and TCP port 46308.
MC2> cmtc
Waiting for HC to connect...
Then I start the Host Controller by
./myUDPadv RTEConfigurationFile.cfg -s 127.0.0.1 46308
and this error occur :
TTCN-3 Host Controller (parallel mode), version CRL 113 200/5 R3A
Could not get the IP address of MC (RTEConfigurationFile.cfg): Host name lookup failure.
What can be the problem ? It would be very nice if someone can help me....
Attached the modified main-ttcn file :
// This is simple TTCN-3 example using the titan.TestPorts.UDPasp
// 1.June 2015 by Johannes Bruder
module myUDPadv
import from UDPasp_Types all;
import from UDPasp_PortType all;
template ASP_UDP_message myMessage := {
data := 'FF96'O ,
remote_addr := "localhost",
remote_port := 56790,
id := 0
template ASP_UDP_message ServerMessage := {
data := ? ,
remote_addr := "127.0.0.1",
remote_port := 56790,
id := ?
template ASP_UDP_open myOpenRequest := {
remote_addr := "127.0.0.1",
remote_port := 56790,
local_addr := "127.0.0.1",
local_port := 50050
template ASP_UDP_open_result myOpenRequestResponse := {
local_addr := "127.0.0.1",
local_port := 50050,
id := 0
type component UDPDeviceTesterInterface
port UDPasp_PT DevUDPPort;
port UDPasp_PT ServUDPPort;
type component MTC { }
type component UDPEntity{
port UDPasp_PT pt;
function f_client()
runs on UDPEntity{
map(self:pt, system:DevUDPPort);
pt.send( myOpenRequest);
alt {
// Handle the case when the expected answer comes in
[] pt.receive( myOpenRequestResponse) {
setverdict(pass);
// Handle the case when unexpected answers come in
[] pt.receive {
setverdict(fail);
log("Unexpected open-requense response");
testcase DeviceOpenSocket()
runs on MTC
system UDPDeviceTesterInterface
timer t_guard;
var UDPEntity v_client;
//var UDPEntity v_server;
var boolean v_alive;
// create all parallel test components as alive components
v_client := UDPEntity.create("Client") alive;
//v_server := UDPEntity.create("Server") alive:
// start the behaviour on the parallel test components
v_client.start( f_client( ));
//v_server.start( f_server);
// wait until all parallel test components are done, at most 30 seconds
t_guard.start( 30.0 );
alt {
[] all component.done {
t_guard.stop;
// use verdicts of parallel test components
[] any component.killed {
// if any PTC is killed then free all resources
t_guard.stop;
all component.kill;
// remove all PTCs from test system which are still alive
setverdict( inconc );
v_alive := v_client.alive; // returns false
[] t_guard.timeout {
// stop all PTCs (but new behavior could be started)
all component.stop;
setverdict( fail );
v_alive := v_client.alive; // returns true
control
execute(DeviceOpenSocket());

Similar Messages

  • Example project for temporal reasoning

    After posting our draft Architectural Standards and Guidelines, we got a lot of good feedback and were pointed at documents to aid us that we were unaware existed. We are incorporating those internally.
    In the same spirit, we just posted a temporal reasoning demo project. It can be found in the exchange. http://ruleexchange.squarespace.com/ It is under the folder "Sample Architecture Documentation" in the zip file "TemporalExampleOPA10.3.zip"
    Temporal reasoning is one of the key benefits our agency wants from OPA. However, we find that potential rule modelers have a mental block on using temporal reasoning. We are not sure why. As architects, we love it. One of our first example projects a year ago tried to show how we might use temporal reasoning to solve the following challenges:
    •     How might we change rules over time?
    •     How might we change data over time? (a.k.a. change in circumstance)
    •     How might we go backwards in time to see the historical impact of rules?
    •     How might we go forwards in time to see if a rule still works in 5 years? (Yes, a rule that works today might break 5 years from now if it includes temporal reasoning. Ouch.)
    •     How might we correct rules that make it all the way to production but should not have?
    •     How can we take incorrect rate rules into account while moving forward and correcting rates? We want to easily rectify the negative impacts of an incorrect rate rule should one occur in the easiest way possible.
    I uploaded the temporal reasoning example project from our library of projects. It provides possible answers to the questions in both Excel and Word.
    Since there is more than one way to solve the problems above, feel free to call out why other methods may work better than the methods shown in the example.
    Don't let all the commentary in the rules documents turn you off. There are only a few rules, but a lot of commentary on the rules. This project was in TFS. Hopefully, I successfully removed all the TFS version control junk prior to uploading.

    Ire,
    The 6009 has an event counter which is not capable of doing PWM via pulse train generation. The DIO lines are also not capable. You can do this using the two counters on the E series device but in order to change the output pulse train generation you will need to stop the counter, change the pulse spec and then re-start the task again. I have done a simple example in which I use two counters for control of the lamp power and a disturbance.
    The missin VI's are purely for schedulling tasks. Just look at the while loop and how I programmatically built the tasks.
    Hope this helps.
    Kind Regards
    Steven Bird
    Applications Engineer
    National Instruments
    Attachments:
    PWMControl.vi ‏207 KB

  • Where can I download example projects for Kinect for Windows v2?

    so for a project I am working on regarding the Kinect v2 I had initially planned on using Matlab to code for the Kinect. However, the code on the Mathworks website regarding the Kinect seems to only work with the Kinect v1 and I cannot figure out how to
    get the v2 to work with Matlab. Now I am in the predicament that I need to use Visual Studio and have never done so before. To make matters worse, all of the guides I can find about programming for the Kinect assume you are very familiar with Visual Studio
    so I get lost before I can even get through the setup (I have no idea what kind of project is best for Kinect, though I intend to use C# as my programming language, or where these settings they are changing are located). If I could just find an example project
    file to download I feel like it would help me a lot, but I cannot seem to find one.
    So my question is thus, is there a place where we can download project files for Visual Studio? I really just need to see what one looks like and what kind of settings it runs on so I know where to get started. It would be awesome if the project file involved
    overlaying the skeletal model on top of people in real time as well.
    If this is not possible, even a video that explains in depth how to go about using visual studio and the Kinect at the same time would be greatly appreciate, or a workaround to get Matlab to work with the Kinect v2.

    Hi Jicnon,
    When you download and install the Kinect SDK, it comes with the Kinect SDK Browser application. This applicaiton is a web based application that contains a bunch of sample projects for getting started with Kinect for windows programming.
    There is also the jumpstart videos here:
    https://social.msdn.microsoft.com/Forums/en-US/8428671a-781c-4850-a56d-905ab28f8f8f/mva-jump-start-programming-kinect-for-windows-v2-videos?forum=kinectv2sdk
    To get to the SDK Browswer app just hit the windows button type in "Kinect SDK" and this application should appear.
    There are also some samples in Kinect Common Bridge and a dicussion on using Matlab here:
    https://social.msdn.microsoft.com/Forums/en-US/2aa59712-c2ab-48e2-98bd-5eed9a40ec44/matlab-link?forum=kinectv2sdk
    Sr. Enterprise Architect | Trainer | Consultant | MCT | MCSD | MCPD | SharePoint TS | MS Virtual TS |Windows 8 App Store Developer | Linux Gentoo Geek | Raspberry Pi Owner | Micro .Net Developer | Kinect For Windows Device Developer |blog: http://dgoins.wordpress.com

  • Where can I find an example project plan for migrating previous Solaris Serviers to 8.2, and to include migration to LDAP

    I am migrating 800 Unix servers from a variety of OS versions to Solaris 8.2, using the time to sort out my NIS nightmare in prep. for moving to LDAP
    Are there any example project plans that I can use as a starter?

    I am migrating 800 Unix servers from a variety of OS versions to Solaris 8.2, using the time to sort out my NIS nightmare in prep. for moving to LDAP
    Are there any example project plans that I can use as a starter?

  • Failed to download the example project from Oracle site.

    Hello,
    Every Time I am trying to run a sample or load an example I am getting the following error in workshop 10.3.
    Failed to download the example project from Oracle site.
    what do I do?
    Thanks,
    Indu.
    Edited by: user8828376 on Sep 27, 2009 5:12 PM

    Hi Indu,
    what kind of he samples your are trying to install in workshop 10.3.
    Do you have site address.
    if you need any further help on this put complete details so that we can able to help you more.
    Regards,
    Kal.
    (Thanks for you using OTN forums and sharing knowledge.)

  • Build example project

    I was trying to build the example project using the latest Coherence release and the 3.6 supported incubator example project. When I ran ant build, I got this error:
    [javac] Compiling 44 source files to C:\oracle\coherence\coherence-incubator-examples-1.2.2.1903
    4\build\classes
    [javac] C:\oracle\coherence\coherence-incubator-examples-1.2.2.19034\src\com\oracle\coherence\ex
    amples\incubator\commandpattern\CommandPatternExample.java:29: cannot access com.oracle.coherence.co
    mmon.identifiers.Identifier
    [javac] bad class file: C:\oracle\coherence\coherence-incubator-examples-1.2.2.19034\lib\coheren
    ce-common-1.7.2.19034.jar(com/oracle/coherence/common/identifiers/Identifier.class)
    [javac] class file has wrong version 50.0, should be 49.0
    [javac] Please remove or make sure it appears in the correct subdirectory of the classpath.
    [javac] import com.oracle.coherence.common.identifiers.Identifier;
    [javac] ^
    [javac] 1 error
    BUILD FAILED
    It seems like the example was looking for a different build number?
    Any suggestion is appreciated. My JDK version is build 1.5.0_08-b03

    I believe the Coherence 3.6 Support Incubator Patterns require JDK 6 (1.6.0)
    /Mark

  • Can't add my class into example project

    my class is in the workspace the project
    tree with the same package(in code first
    line is "package xxxx;"). When I instatiat it, it is not red color, it always occure
    compile error: idendifier xxxx not found in the class(other class in the same pakege) xxxx.
    do I need redeploy the project? but it did not compile and build.

    Fred,
    I am not sure about the details of the
    problem you have explained below.
    But here are some guidelines that may
    help you figure out what you are doing wrong.
    1. A Workspace can contain one or more
    projects - (never any Java class files)
    2. A Project can contain one or more
    Java class files.
    3. A project has a default "Source Root"
    directory and this is used as the Root
    for the source files.
    4. Java requires public class names be the
    same as the file name
    (e.g. Class CellPhone must be saved in file
    CellPhone.java)
    5. Java requires the package name correspond
    to directory path
    (e.g. Pachage name of Acme.Video.Preview
    must be stored in <Source Root>\Acme\Video\Preview )
    6. The actual path to a file is the
    Root Source plus the package name plus the
    class name.java.
    (example: Source Root = C:\JDeveloper
    Package Name = MyCompany.Report.Util
    Class Name = GeneratePDF
    will need to be stored in:
    C:\JDeveloper\MyCompany\Report\Util\GeneratePDF.java
    As for various Identifiers not being found,
    it is simply telling you that your project's
    list of included libraries does not include
    the given identifier.
    If it is valid, then add the appropriate
    library to the project's library list.
    See Menu: Project | Project Properties.../ Add...
    I hope this helps,
    John@Oracle JDeveloper Team http://technet.oracle.com
    null

  • Building example project, said windows.h missing

    I amusing the example from
    http://zone.ni.com/devzone/cda/tut/p/id/5189
    But when building it, it said 2 files missing as attached, 'windows.h' and 'commctrl.lib'.
    I searched and found their path on disk as below.
    \Program Files\National Instruments\LabVIEW 8.5\PDA\Utilities\VC\SmartDevices\SDK\PocketPC2003\Include\windows.h
    \Program Files\National Instruments\LabVIEW 8.5\PDA\Utilities\VC\SmartDevices\SDK\PocketPC2003\Lib\armv4\commctrl.lib
    \Program Files\National Instruments\LabVIEW 8.5\PDA\Utilities\VC\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SDK\Include\Armv4i\windows.h
    \Program Files\National Instruments\LabVIEW 8.5\PDA\Utilities\VC\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SDK\Lib\ARMV4I\commctrl.lib
    Attachments:
    shot.JPG ‏23 KB

    Hi Turbot,
    You should be able to do this if you save the file from the web link to your computer.  Then add the VI to a PDA project for an emulator (I used a Windows Mobile 5.0 Emulator).  You then just need to make a build specification by right clicking on Build Specifications and selecting New Application.  Make the Event Structure Demo.vi a top level VI and then build and deploy.  I have attached a few screen shots that will help you.  This first is my project, the second is the build specification showing the VI added as a top level VI.  The last is the emulator running the vi.  I hope this helps.
    Stephen S.
    National Instruments
    1 Test is worth 1000 expert opinions
    Attachments:
    PDA Build Spec.jpg ‏45 KB
    Emulator.jpg ‏30 KB
    PDA Project.jpg ‏41 KB

  • A simple tcp or udp example for ARM embedded

    I purchased the embedded ARM for the EK-LM3S8962 board. Could someone point me to a simple example to run a udp or tcp client on the ARM?
    thanks,
    Bill

    Hello Bill,
    We have a shipping example that will show you how to use your LM3S8962 board as a TCP client or server. You can find this example by navigating from the Menu Bar Help»Find Examples... Once the dialog box opens go to Toolkits and Modules»ARM»Luminary Micro»Protocol Drivers»TCP.lvproj.
    This example should be enough to get you started. Be sure to let us know if you have any additional questions.
    Stephanie
    Applications Engineering
    National Instruments

  • How to run fx ,signal generation example project in eclipse

    Hi,
    i run the helloworld sample project ,it works fine in ecllipse,cmd prompt window and i am try to run FX and signal generation sample program in eclipse ,i can't able to run in eclipse but i can able run in cmd prompt window.i want to know whether ocep projects can be run only through cmd prompt or both (cmd prompt and eclipse). if u have solutions to run in eclipse means help me please.Thanks in advance

    Hi,
    I got this below error in startDataFeed.cmd in singal generation ,but server started.
    C:\Oracle\Middleware\ocep_11.1\samples\domains\signalgeneration_domain\defaultse
    rver>startDataFeed.cmd
    'startDataFeed.cmd' is not recognized as an internal or external command,
    I got this below error in FX sample program ,but server is started and program is working fine.can just help what is the error in sample program i want to know.
    <Aug 7, 2012 11:46:03 AM IST> <Warning> <Spring> <BEA-2047006> <Work {0} terminated with exception = commonj.work.WorkException: java.lang.IllegalArgumentException: [Adapter:2041001]fxMarketEuro configured with illegal port [9,013]
    commonj.work.WorkException: java.lang.IllegalArgumentException: [Adapter:2041001]fxMarketEuro configured with illegal port [9,013]
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkStatus.setThrowable(CommonjWorkManagerImpl.java:268)
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkWithListener.run(CommonjWorkManagerImpl.java:206)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.lang.IllegalArgumentException: [Adapter:2041001]fxMarketEuro configured with illegal port [9,013]
         at com.bea.wlevs.adapter.defaultprovider.SocketAdapterImpl.setupServerConnection(SocketAdapterImpl.java:139)
         at com.bea.wlevs.adapter.defaultprovider.SocketAdapterImpl.run(SocketAdapterImpl.java:114)
         at com.bea.wlevs.adapter.defaultprovider.SocketAdapterImpl$$FastClassByCGLIB$$6267eec3.invoke(<generated>)
         at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:149)
         at org.springframework.aop.framework.Cglib2AopProxy$CglibMethodInvocation.invokeJoinpoint(Cglib2AopProxy.java:700)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.wlevs.ede.impl.EventManagerAccessorProxy.invoke(EventManagerAccessorProxy.java:30)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.wlevs.ede.impl.EventBeanProxy.invoke(EventBeanProxy.java:38)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.Cglib2AopProxy$DynamicAdvisedInterceptor.intercept(Cglib2AopProxy.java:635)
         at com.bea.wlevs.adapter.defaultprovider.internal.LoadGenAdapterImpl$$EnhancerByCGLIB$$5d089e06.run(<generated>)
         at com.bea.wlevs.spring.RunnableBeanPostProcessor$RunnableWrapper.run(RunnableBeanPostProcessor.java:118)
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkWithListener.run(CommonjWorkManagerImpl.java:204)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    <Aug 7, 2012 11:46:03 AM IST> <Warning> <Spring> <BEA-2047006> <Work {0} terminated with exception = commonj.work.WorkException: java.lang.IllegalArgumentException: [Adapter:2041001]fxMarketAmer configured with illegal port [9,011]
    commonj.work.WorkException: java.lang.IllegalArgumentException: [Adapter:2041001]fxMarketAmer configured with illegal port [9,011]
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkStatus.setThrowable(CommonjWorkManagerImpl.java:268)
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkWithListener.run(CommonjWorkManagerImpl.java:206)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.lang.IllegalArgumentException: [Adapter:2041001]fxMarketAmer configured with illegal port [9,011]
         at com.bea.wlevs.adapter.defaultprovider.SocketAdapterImpl.setupServerConnection(SocketAdapterImpl.java:139)
         at com.bea.wlevs.adapter.defaultprovider.SocketAdapterImpl.run(SocketAdapterImpl.java:114)
         at com.bea.wlevs.adapter.defaultprovider.SocketAdapterImpl$$FastClassByCGLIB$$6267eec3.invoke(<generated>)
         at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:149)
         at org.springframework.aop.framework.Cglib2AopProxy$CglibMethodInvocation.invokeJoinpoint(Cglib2AopProxy.java:700)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.wlevs.ede.impl.EventManagerAccessorProxy.invoke(EventManagerAccessorProxy.java:30)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.wlevs.ede.impl.EventBeanProxy.invoke(EventBeanProxy.java:38)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.Cglib2AopProxy$DynamicAdvisedInterceptor.intercept(Cglib2AopProxy.java:635)
         at com.bea.wlevs.adapter.defaultprovider.internal.LoadGenAdapterImpl$$EnhancerByCGLIB$$5d089e06.run(<generated>)
         at com.bea.wlevs.spring.RunnableBeanPostProcessor$RunnableWrapper.run(RunnableBeanPostProcessor.java:118)
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkWithListener.run(CommonjWorkManagerImpl.java:204)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    <Aug 7, 2012 11:46:03 AM IST> <Warning> <Spring> <BEA-2047006> <Work {0} terminated with exception = commonj.work.WorkException: java.lang.IllegalArgumentException: [Adapter:2041001]csvTestData configured with illegal port [9,014]
    commonj.work.WorkException: java.lang.IllegalArgumentException: [Adapter:2041001]csvTestData configured with illegal port [9,014]
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkStatus.setThrowable(CommonjWorkManagerImpl.java:268)
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkWithListener.run(CommonjWorkManagerImpl.java:206)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.lang.IllegalArgumentException: [Adapter:2041001]csvTestData configured with illegal port [9,014]
         at com.bea.wlevs.adapter.defaultprovider.SocketAdapterImpl.setupServerConnection(SocketAdapterImpl.java:139)
         at com.bea.wlevs.adapter.defaultprovider.SocketAdapterImpl.run(SocketAdapterImpl.java:114)
         at com.bea.wlevs.adapter.defaultprovider.internal.CSVGenAdapterImpl.run(CSVGenAdapterImpl.java:43)
         at com.bea.wlevs.adapter.defaultprovider.internal.CSVGenAdapterImpl$$FastClassByCGLIB$$1d34d8cd.invoke(<generated>)
         at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:149)
         at org.springframework.aop.framework.Cglib2AopProxy$CglibMethodInvocation.invokeJoinpoint(Cglib2AopProxy.java:700)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.wlevs.ede.impl.EventManagerAccessorProxy.invoke(EventManagerAccessorProxy.java:30)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.wlevs.ede.impl.EventBeanProxy.invoke(EventBeanProxy.java:38)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.Cglib2AopProxy$DynamicAdvisedInterceptor.intercept(Cglib2AopProxy.java:635)
         at com.bea.wlevs.adapter.defaultprovider.internal.CSVGenAdapterImpl$$EnhancerByCGLIB$$3ec938ea.run(<generated>)
         at com.bea.wlevs.spring.RunnableBeanPostProcessor$RunnableWrapper.run(RunnableBeanPostProcessor.java:118)
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkWithListener.run(CommonjWorkManagerImpl.java:204)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    <Aug 7, 2012 11:46:03 AM IST> <Warning> <Spring> <BEA-2047006> <Work {0} terminated with exception = commonj.work.WorkException: java.lang.IllegalArgumentException: [Adapter:2041001]fxMarketAsia configured with illegal port [9,012]
    commonj.work.WorkException: java.lang.IllegalArgumentException: [Adapter:2041001]fxMarketAsia configured with illegal port [9,012]
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkStatus.setThrowable(CommonjWorkManagerImpl.java:268)
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkWithListener.run(CommonjWorkManagerImpl.java:206)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.lang.IllegalArgumentException: [Adapter:2041001]fxMarketAsia configured with illegal port [9,012]
         at com.bea.wlevs.adapter.defaultprovider.SocketAdapterImpl.setupServerConnection(SocketAdapterImpl.java:139)
         at com.bea.wlevs.adapter.defaultprovider.SocketAdapterImpl.run(SocketAdapterImpl.java:114)
         at com.bea.wlevs.adapter.defaultprovider.SocketAdapterImpl$$FastClassByCGLIB$$6267eec3.invoke(<generated>)
         at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:149)
         at org.springframework.aop.framework.Cglib2AopProxy$CglibMethodInvocation.invokeJoinpoint(Cglib2AopProxy.java:700)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.wlevs.ede.impl.EventManagerAccessorProxy.invoke(EventManagerAccessorProxy.java:30)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.wlevs.ede.impl.EventBeanProxy.invoke(EventBeanProxy.java:38)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.Cglib2AopProxy$DynamicAdvisedInterceptor.intercept(Cglib2AopProxy.java:635)
         at com.bea.wlevs.adapter.defaultprovider.internal.LoadGenAdapterImpl$$EnhancerByCGLIB$$5d089e06.run(<generated>)
         at com.bea.wlevs.spring.RunnableBeanPostProcessor$RunnableWrapper.run(RunnableBeanPostProcessor.java:118)
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkWithListener.run(CommonjWorkManagerImpl.java:204)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    <Aug 7, 2012 11:46:03 AM IST> <Notice> <Server> <BEA-2046000> <Server STARTED>

  • Is there any example project about am ssb-sc ?

    Hello, i am quite new with awr and i am looking for any am ssb-sc project.. could someone help?

    tesyd2014 wrote:
    Hello, i am quite new with awr and i am looking for any am ssb-sc project.. could someone help?
    Hello,
    Please look at the attached project where I have SSB mixer. You can use this as a sample.
    Thanks,
    Ideen
    Attachments:
    SSB_Mixer.zip ‏21 KB

  • Running "Build 'em All" example Xcode project wiped out MediaCore folder

    I'm having a hard time setting up Xcode to properly compile the example code into a debug product build that eventually ends up in the MediaCore folder.
    I initially got it to work simply by clicking the 'Run' button on the 'Skeleton' and 'Checkout' projects. 
    Then I decided to just build them all, and pressed 'Run' while I had the 'Buildall' selected.  Seemed like everything ran okay, but then AE was starting to act buggy.  Told me Quicktime wasn't installed, etc.  I noticed that all my plugins were missing, and sure enough the entire MediaCore folder seemed to be overwritten.  Do I have to re-install AE and all my plugins to get those back?
    Most importantly, though, is why did running the 'Buildall' project wipe out the folder of everything?
    I read this in the SDK guide:
    We’ve combined the sample projects into a single master project, stored in the Examples folder of the SDK. For Mac OS, it is Buildall.xcodeproj; for Windows, it is BuildAll.sln.
    In your IDE, you’ll need to change the output folder of your project to build into After Effects’ plug-in folder. For development, we recommend using the following path for Mac
    OS: /Library/Application Support/Adobe/Common/Plug-ins/[CS version]/MediaCore/
    for example: /Library/Application Support/Adobe/Common/Plug-ins/CS6/MediaCore/
    So, I set absolute paths for the build location in my project settings dialog, in the locations tab.  I placed 'intermiediates' in a different folder from 'products'. 
    I just need to know they best way to configure Xcode 4.5 to output the example projects in the correct manner.  I'm afraid I'm going to have to reinstall the plugins.
    Thanks!
    Removed incorrect image.

    hi Lazlo Hollyfeld! welcome to the dark side... :-)
    set to build directory to any folder you like (i created a nice folder called "build64"),
    then just put a shortcut from AE's "blug-ins" folder to you build folder.
    yes, AE does shortcuts.
    leave media core alone...

  • Adobe Premiere Elements 0.9 project crash, HELP!

    This is the first time I am using these forums, so I hope I posted this in the right sektions.
    I need help and solutions for a Project which constantly crashes on my Adobe Premiere Elements 0.9. This program has been awesome and helped me create some projects and videos successfully, up until.... well for about 3 days ago when my latest project crashed when I had just antered and checking the storyboard etc, triggering a "Serious Error" message and then it shuts down. I try again and again, but everytime I try to put something (any sound or video etc) on the storyboard and start working etc the same damn "Serious Error" message and then allways shuts down. It's allways this same and only project (which has worked fine before) that crashes like this...
    In an attempt to first solve the problem myself I went through the Premiere Elements 9 files and deleted finnished projects and automatic saved process on projects etc, but still won't work even better... The funny thing is that when I open another project (a finnished project I left saved just in case) and go through the storyboard there and messes around a little and such, it won't crash nor trigger the same message as my latest project. And that program even has some effects on every footageclip on it too, but still it works fine. Haven't touched the program or the program until and since yesterday night to give it some rest but it still won't work, the project just keeps crashing like when and since it first started a few days ago.
    I have also read through and tried some things from this Help/Troubleshoot page:
    http://helpx.adobe.com/premiere-elements/kb/troubleshoot-damaged-projects-premiere-element s.html
    I have so far been doing 1 and 2 of the "Beginning Troubleshooting", otherwise I have been reading it all and such. I am also kinda afraid to do the 3 of the first quests because I worked so hard on this project and even tough it just keeps crushing, I'm afraid to lose it. Other, I have deleted audios and such from my filegallery on my Adobe Premiere Eements, stuff I don't need anymore because its projects are already done. After I did that I also tried to create a new project just for testing. The amazing this about this is that this the new created project I created works just fine, I could do all kinds of the stuff, effects and advanced editing which I did on the same project before it started crushing. Tough I didn't save that test-project since I didn't find a reason to since it worked so good. And so the thing is that I can start and create a new project and start working and do usual stuff on it with no problem, same when I open up another project and do stuff, it all works just fine! It is just this one and only project that keeps crushing with this "Serious Error" message, all the time... Does anybody else have, or has had the same problem? What could the problem and error be and how to fix it?
    This crushing project do has some effects on every footageclip/videoclip on it, to set the right mood for the musicvideo I'm making. I am making a musicvideo, and I haven't even done the half of the project/video. The song I am making this musicvideo with is about 00:07:32 in length, and (tough this detail may have no influence or meaning) the music is Symphonic Metal. The actual file of the song is 6,96 MB in size. This is also not the first time I've done such projects with such long songs on this same program either, one of my last videos I managed to successfully make and create a musicvideo with a song which was about 13 minutes and 30 seconds in length, and I also used effects on pretty much every videoclip on that project too.
    The current filesize so far on the actual project.prel-file of my project that keeps crushing is 9.73 MB.
    I am also using Adobe Premiere Elements and doing this troubleing, crashing project on a PC, a Fujitsu Windows (I believe Windows 7, or even updated to a newer version?). It has a regular ATI-card. The computer also has 2 modems and there's still some pretty GB amount free on them. The PC's main system also has a RAM in 6.00 GB and the operative system is the 64-bites.
    In short, the PC should just fine be able to handle Adobe Premiere Elements 0.9 and all its projects, just as it has handled it all before plus all my PC games at that. So it must be something with my Adobe Premiere Elements and that specific project which is the problem, but what is the problem and the serious error and how to fix it?
    Could it help to save and create the actual video in this crashing project, delete that project then start a new project, upload and put in the videofile of the crashing project in that new project and then continue from there?
    In either cases, I need help with this. Please, help!

    Thanks so much for your reply, Steve!
    Even tough I trust you guys enough here on the official Adobe site/forums to answer those questions as best I can, I am at the same time not very fond of giving away too much information because of safety. I understand I have to If I'm to recieve the accurate answers and solution, but as this is the internet you can never know. But again, I trust you guys enough on here and thus I'll try to answer those questions as best I can, even tough I am not very good with such stuff about computers. The PC I am using is also not only mine, it is the family computer also which me and my whole family uses.
    The operating system on my computer (according to the computer propotions etc) is a 64-bites operating system and the computer/PC is also a Windows 7 Home Premium.
    The processor the computer/PC have is a Intel(R) Core(TM) i5 CPU and the RAM is 6.00 GB. However, (and I hope I make this understandable because the computer/PC is in swedish)the subscore of RAM in the computer's Performance-Classification/Ranking is 7,5. The processor subscore is 7,3 per second. And the free space? Well, we have two modems, let's say a modem A and a modem B. Adobe Premiere Elements 0.9 is set to save all its stuff etc on modem B, while modem A is the main modem and spaces all main stuff and other things of the computer/PC. Modem A has about 314 GB of free space, while modem B has 207 GB of free space. Modem A's capacity is a total of 489 GB in which 175 GB has been used, the modems filesystem is a NTFS. Modem B is also a NTFS filesystem and its capacity is a total of 439 GB in which 232 GB has been used. And the Disk Cleanup? I believe my that latest ran it for about a few weeks ago. We also have a CCleaner also. But about the Disk Defragmenter, I have no idea. What exactly does a Disk Defragmenter do?
    You mean, entering my project that keeps crushing and simply rename it by using "Save As"? If that is what you mean, I dunnow If that actually worked. When I still tried to do stuff and edit the crashing project (tough as said, it hardly took any changes and process before it triggered that message) and then crashed and shut down, and I opened up the program again (trying to open the same project that way), it asked me If I wanted to re-create the missing process from the last crash of the same project. I tried it and it automaticly was renamed to a for example Project.copy. But when I tried to work with that it was to no futher success, the project kept crashing. I haven't renamed the project by "Save As" tough, but I doubt it'll work, I even tried to rename the actual project file in the Adobe Premiere Elements files but nope... the project keeps crashing. But also about the same question, "Save As" under a new name but in its own folder? You mean the actual project folder or Adobe Premiere Elements preview folder of the projects?
    My camcorder is pretty old by now, have had it since I turned 15, it has worked pretty good since then. Its model is a Sony Handycam, Carl Zeiss Vario-Tessar OPTICAL 20x. Even tough the last thing maybe doesn't say anything, this is all I know about my camcorder, except that it is a model no. DCR-HC17E PAL. But in that Project  which keeps crashing, there are only a few actual camcorder clips used as I am making a Game-MusicVideo and most of the footage of the Video-game (actually a PC game) I'm making a musicvideo of is downloaded from Youtube mostly from a guy I asked permission for to download his recorded footage of the game. I used a Youtube downloader called ClipConverter. As I don't have a SD card I cannot make this footage myself. But some footage I recorded on my camcorder, but If I can find high quality clips and get them, I will. The other footages is actual official trailers of the PC games which also was downloaded from the net. But I can give you the stuffs filetypes and hoping that may help. The downloaded footage which was downloaded by this ClipConverter, are MP4 files. The other stuff (which were official trailers) and most of them are also MP4 files, the others are QuickTime-film files. Many of these downloaded footages and trailers are also in HD quality, at least some of them I think.
    The actual filetype ofthe footage I myself recorded with my camcorder are, well.... it says Videoclip in the file. Maybe it is AVI?
    The project settings? You mean the settings you set at first when starting as a new project? The general settings are, in editingsettings it is AVCHD 270p square pixel. This is kinda hard for me to tell since everything is in swedish in my program. But these settings has worked perfectly before, same with all files, footages and videoclips I have been using, also all the soundfiles etc. Even the actual crashing project worked perfectly before it started crashing... So why does it so suddenly start crashing now?
    The audio is a song I copied directly from its album and CD into the computer/PC and it seems to be in WMA format in filetype.
    And lastly, no I haven't rendered the timeline of the project ever, not even on my other projects. What does the rendering do and is useful for? I have very little knowledge of it. Other, I keep the Timeline mode open all the time because I can edit my videos much better with it, but perhaps that editing method make little influence of the actual problem.
    Other, yesterday when writing the post and topic, I forgot to mention that I restarded my computer right after I created a new project, that testing project. When finnished with the testing I restarted the computer. Since then I haven't touched the crashing project since now tonight, when checking its settings for this post. I am also right now trying to create and save the actual videofile of it, saving it on my computer. I'll soon see If it's successful without any crashing interruptions, plus that the video itself works and is smooth when I'll play it on Windows Media Player like all the rest of my other videos. I do this just in case I must create a new project to be able to continue with my musicvideo, as the first part of it I worked very hard on.
    Other and again, I am still puzzled about why this is even happening, that this project which worked perfectly fine before, just suddenly starts triggering that "Serious Error" message and crashes. And in this program which worked so perfect before. Has this happened to anyone else before? Has anyone else experienced the same issue I have? Is this a knowledgable issue which has solutions and ways to fix it?... :/

  • VS, ODT and using "Oracle Project"-template requires Policy Management

    HI,
    I installed the ODT 11.1.0.6.20 and tried to create a new project using the "Oracle Project" but received the following error message: "The project <ProjectName> requires Policy Management. Open this project in Visual Studio.NET Enterprise Developer or Visual Studio.NET Enterprise Architect."
    I have tried this using VS 2008 Professional and Team Edition. The operating systems is Vista x64 Ultimate.
    Oracle documentation doesn't mention any specific VS version so this is perhaps something else. Is there a workaround or fix to get around this?
    TIA,
    Kari

    OK, I'll give it a try. This suggestion makes perfect sense. I have used that template to create a project before, but noticed that it doesn't contain a windows form by default and so I assumed that it was a build for a n-tier application database access class, which is not necessarily what I want, and so I abandoned the effort. I know I can add a window form. I appreciate the response and will post back my results.
    Is there an example project somewhere that I could download and have a look at?
    Thanks again for your reply, even though you didn't reply to me. I think you resolved my problem! :-)
    Bruce
    Edited by: Bruce Davis on Oct 19, 2009 11:07 AM
    Edited by: Bruce Davis on Oct 19, 2009 11:11 AM
    I replied to the wrong post!

  • School project VI design for a computer

    I am a sophomore mechanical engineering student and in need of some help. In my ENGR 201 (Evaluation and Presentation of Experimental Data) our final project is to design a VI for a bicycle speedometer using LabVIEW. I fell asleep halfway through reading the guidelines and wanted to ask if I can use an alternative idea (not saying the bike speedo would be difficult). One of my passions is computers. I was wondering if anyone has any suggestions on relating this to a project design. Possibly designing a motherboard etc etc.
    I'm not sure if this is overly ambitious considering my limited labview knowledge, but I know I'd have a lot more of an easy time researching how to do this instead.
    Is there anywhere I can find some example projects or template VIs...
     Thanks

    I am not sure i understood, what you want, but take a look here.
    Also look at the Labview examples. Some of them are quite interesting

Maybe you are looking for

  • Airport Extreme modem speed

    My Airport Extreme will connect at 28.8 only even though the Airport Utility modem is set for v90.. it never ever connects at any higher speed... the modem in the iBook will connect at higher speeds when directly pluged into phone line.. is there som

  • Help! FX5900 locking up.

    Just got an MSI FX5900 card. But have been having problems with it whilst playing Joint Ops game. Locking up on me- having to reboot. Also locked during 3Dmark. Have tried things such as changing drivers, disabling fast write ect but there is one har

  • Exchange rate and GST round off differences

    Hi,    When we create a invoice with tax then some times the vendor invoice tax amt may differ from the tax amt calculated by our system. This may be due to the rounding differences. So how to handle these kind of payments? Can any one pls explain me

  • DHCP failed to give me an IP and OS X set my date to 2001/01/01

    Worked on my mbp for about 4 hours. Shutdown and came back home. No new software, update or whatever. Just synch'ed iPhone, Last.fm, Mail.app and some browsing. Turn it on and login. I'm asked to join a network (my wifi network that is the 1st one on

  • PPR in custom services method

    Hi folks, I implemented a simple custom data service method in my view object (**ViewRowImpl), exposed it so that I can see it in the data control and dragged it to the form as a command button. In this custom data service I simply inserted a new rec