Network simulator for j2me midlet

i need to test my protoype j2me midlet over 3g network conditions,but dont have the hardware. is there such a 3g nework simulator around? i heard of something called OMNeT++ but i dont think this is what i need,
cheers

st3p3n
Everybody knows what is PC and what is simulator and who runs whom! You are not adding any more sugar to the coffee. May be I misunderstood his first post that's why I was trying to get the original picture. But if you identified after his first post that what exactly he was looking for then why did you come after the 9th post? That's why my post 3 was like that.
Now let me tell you one thing may sound little bitter but I should say that try to stick to the topic. If you really have something in your knowledge to help him then try to help him. Pulling my legs you are not at all going to achieve anything :-> but if you can show him some lights then for sure it will be valuable for him and you can achieve those DUKES !!!
And one more thing I want to add that post 10 is not also very meaningful.
Shan!!!

Similar Messages

  • Cisco Network Simulator - customization

    Hello. I want to buy Cisco Network Simulator for use in studying for CCNA 200-120. I noticed it included very interesting labs who could help me . But, can this simulator be customized ? For example, to create my network , as in Cisco Packet Tracer ?
    Thanks' very much.

    You can revert but you might find that some of your files could no longer be readable in Mountain Lion like your iPhoto Libraries. If you opened iPhoto and the library was upgraded it can no longer be read with the version of iPhoto that runs in Mountain Lion. Same for Apple Mail and some other applications.
    You would need to go back in time to before you upgraded to bring back your data. See this guide for help:
    How to revert OS X back from Mavericks
    https://discussions.apple.com/docs/DOC-6162

  • Bluetooth connection not working on US Nokia phones from J2ME Midlet (MIDP

    Hi All,
    We are developing a J2ME midlet (MIDP 2.0 ,CLDC 1.1)which makes bluetooth connection to other devices.The bluetooth
    connection is working perfectly on indian nokia phones with Airtel as carrier.But when we deploy the same midlet on Nokia E71
    US phone with carrier as AT&T ,the bluetooth connection is not working.The sample code is as follows:
    public void run(){
    try{
    StreamConnection connection = (StreamConnection)Connector.open(btConnectionURL);
    // open an input stream to get some data
    InputStream in = connection.openInputStream();
    byte[] serialData;
    readData = true;
    while(readData == true){
    int lengthavai=0;
    lengthavai = in.available();
    if(lengthavai > 0){
    serialData = new byte[lengthavai];
    int length = in.read(serialData);
    System.out.println("data read: " + new String(serialData));
    dataViewForm.append(new String(serialData));
    in.close();
    connection.close();
    }catch(IOException ioe){
    ioe.printStackTrace();
    when we try to connect on US Phones],the execution hangs at the following line of code:
    StreamConnection connection = (StreamConnection)Connector.open(btConnectionURL);
    No exception is caught.
    Our midlet is not signed.
    In the Forums it is said that the problem is with the unsigned midlet.AS some of the US carriers block the secure API usage
    on Unsigned midlet.
    But our question is, if we buy a code signing certificate from Verisign or Thawte and sign the midlet, will this problem be solved.
    Any other alternative solutions for this ???
    Immediate help will be appreciated.
    Thanks,
    Yash

    You might want to read this before buying a certificate:
    http://javablog.co.uk/2007/08/09/how-midlet-signing-is-killing-j2me/
    It's not my blog, but I pretty much agree with what it says. Unfortunately the network operators can control the access 3rd party trusted certificates have, so even if you sign with Verisign for example, the signed midlet may not have any more privileges than an unsigned midlet, depending on network. They do this so that only midlets signed with one of their own certificates have unrestricted privileges forcing anyone who wants a useful application to buy it from the network instead of downloading an equivalent freeware version from Getjar for example. Some networks are worse than others, so signing your midlet will allow it to work on more phones than an unsigned midlet. I think Verisign have some info on AT&T on their website.
    The whole MIDP specification for security is a joke, IMHO. I don't mind unsigned midlets flashing up a warning once during an application. Writing 20 files, for example, will give 40 security warnings for reading writing data which is ridiculous, as the user obviously either trusts the app or he doesn't. No one runs an app that they only sometimes trust.
    As far as I know the only mobile manufacturer so far to see sense is Sony Ericsson. All of their new phones from Java platform 7 onwards allow unsigned applications access to the file system, bluetooth etc with just one warning when the applications starts.
    Andy

  • Communication between J2ME MIDlet and J2SE server

    In my project I need to be able to exchange SMS messages between a J2ME MIDlet and a J2SE server? Is that possible? I tried the following:
    I included the CLDC, MIDP and WMA libraries in the classpath of my J2SE server and tried to use the wireless messaging API in the J2SE server. I get the following error message while trying to establish a MessageConnection:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: com.sun.midp.Configuration.getProperty0(Ljava/lang/String;)Ljava/lang/String;
         at com.sun.midp.Configuration.getProperty0(Native Method)
         at com.sun.midp.Configuration.getProperty(Configuration.java:34)
         at com.sun.midp.io.InternalConnector.<clinit>(InternalConnector.java:91)
         at javax.microedition.io.Connector.open(Connector.java:158)
         at javax.microedition.io.Connector.open(Connector.java:138)
         at javax.microedition.io.Connector.open(Connector.java:120)
    Can anybody provide any suggestions?

    The communication should be done through these ports: https://social.technet.microsoft.com/Forums/windowsserver/en-US/6de9c3f0-2841-4a74-80bb-46a02779124b/which-tcp-ports-does-a-workstation-use-to-authenticate-to-ad-and-get-group-policy?forum=winserverNIS
    To have better visibility, you can setup a network sniffer like Wireshark and observe the traffic.
    As the ADFS and DCs will be located in the same LAN then it should be okay as no filtering should be done (Unless if this is done on local firewalls of the servers).
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • Retrieving GSM network information via J2ME

    I would like to make a J2ME MIDlet that can get the current cell-id that the ME is in. I know that there is a proactive SIM command PROVIDE LOCAL INFORMATION specified in TS 11.14 par 6.4.15, but I don't know how to send such a command. I don't want to use Java Card because I want to avoid the hassle of card writing.
    I would appreciate any help.
    PS: Is there no dedicated forum here for J2ME? I couldn't find a better place to post this.

    I have exactly the same problem, but I'm afraid there is no way to get cell-id from j2me, the only approximation is using messaging APIs to retrieve a meaninful multicell message...
    please let me know if u find a better way.
    Mario

  • How to login into yahoo from j2me midlet?

    Hi all,
    I want to login into yahoo from my j2me midlet and chat with more than one user in my friendlist?How to proceed for doing this?Plz help?What all will be required for doing this
    Thanks
    Sagar

    ask to yahoo to know if it's possible...

  • Choosing mobile for J2ME

    Hello !
    I am new in J2ME programming so i am interested in what mobile phone is the best for programming for J2ME and what OS should it have to be easy programming, i know that Java is platform independent,so what mobile is best for programming on J2ME so what mobile you suggest me?

    First of all, it will depend on what physical features you need (filesystem, bluetooth, camera, GPS, etc) which depends on what you wish to develop.
    Then you should look at what models implement those features. J2MEPolish' page can be of good help here:
    [http://devices.j2mepolish.org/interactivedb/searchdevices.faces]
    Finally, each vendor has it's special quirks. For instance, with SonyEricsson and Nokia, you will get tons of security messages whenever you do anything but the most trivial, unless your midlet is signed. Samsung's UltraTouch models give poor error descriptions when your program has faults, implements fewer of the optional APIs than what the device in theory could support, and have small bugs that can be very annoying depending on your needs. (For example you can't use the GPS through the Location API unless you have GSM coverage, which makes the device useless here...). Other devices will probably have their own funny points, but on paper, I think Blackberry looks very promising.
    Josef

  • Network Simulator

    I need a good software package that emulate an entire network, i need simulation for routers, switch and firewalls, i need to be able to simulate VPN connection.  Wish is the best sofwares available to do this ?

    pkampana, thank you for the feed back I will look at both of these.  I have seen a lot of good ref. to the GNS3 and that it is Freeware which is nice as I am paying for my own education on this stuff.
    Jim

  • Network Simulation Software

    I hope that someone in this forum might be able to shed some light on this...
    I looking for network simulation software in order to prepare for CCNA and CCDA exams. I know that Boson makes similar software for the PC, but I have not been able to find anything for my Mac.
    Powerbook G4 1.67 GHz   Mac OS X (10.4.8)  

    I searched long and hard for the same thing about six months ago, and gave up once the Intel Macs came out. I ended up purchasing RouterSim as I could run it through Parallels on our Intel Macs. Sorry to say, but you're probably outa luck

  • Network Simulation using VSTS Ultimate 2013

    Hi Team
    we are planning to use VSTS 2013 ultimate edition; network simulation feature to emulate network latency for various geographical locations. we would like to know the accuracy in adapting this feature for network simulation.
    An early response is appreciated.
    Raghavendra
    91 9980816710

    Hi Raghavendra,
    In VS2010, VS2012 and VS2013, network simulation feature in visual studio load test supports to simulate network latency with network types such as CDMA, 3G and WAN.
    This blog introduced this topic in details :
    http://blogs.microsoft.co.il/shair/2009/09/22/vs2010-load-test-network-emulation-profile/
    Load Test: How to create a custom network profile for network emulation?
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Query reagrding certificates for J2ME applications

    Hello frnds,
    I have completed my J2ME application. Now can anybody tell me what is the procedure to take certificates for J2ME applications? And also can u suggest names of vendors who provides certificates for J2ME application & which of them are cost effective?
    Can anybody plz provide me this info?
    Thanks in advance

    I am not sure if I understood your point.
    MIDlet can receive SMS from outside and it can be started on incoming SMS.
    You can also get an phone call while the MIDlet is running and take proper action. I am not sure if you can do all the Phone Call controls you mentioned though.

  • Do opnet modeler network simulator works with mac os ?

    i was wondering if i can install and use my network simulator on mac?

    Looking at their website leads me to believe they are a Windows-only developer.  When you search for Mac OS X there are no results.  OTher references to MAC are in the context of MAC = Media Access Control.  All screenshots are from  Windows.  Not looking good for you being able to use on a Mac OS X computer.  Still will be interesting to hear when they respond to your queries.

  • JNS - Java Network Simulator

    Hi all I am working on my final year Project " Designing Security Protocole for sensor network" I have designed an algorithm which identify and detect a compromised node in the sensor network.. to test my algorithm and develope I searched a simulator called JNS I have down loaded it on my machine and trying to figure out to make it work or do a default test on it... can any1 help me this please!!!!!!! I would be warmly welcome your ideas and help I am very thankful in advance....

    DrClap wrote:
    So this is your final year project, and you've just started with Java programming? Okay. The message you sort of mentioned there usually means your classpath isn't set up correctly when you compiled the code.
    In future it would help if you provided details. The exact message, not a bad copy of it. And the code that the message is referring to.
    Although I have to say, if you haven't ever programmed in Java before then trying to work with somebody else's code which you downloaded is going to be challenging. Good thing you have a whole year to work on it. But you might consider waiting until you have a little more experience with Java before diving right into this project. Good luck.Not to mention a network simulator is very advanced for a (not even) junior level programmer.
    Edited by: wpafbuser1 on Feb 5, 2008 1:17 PM

  • CCNA Network Simulator

    Hey everyone,
    I just purchased the CCNA network  simulator but I can't log in when I run the program.  It's the CCNA  640-802 Network Simulator software 2nd edition. I have a cisco press  login and password which specifically says you need (see screenshot  attached for error).  I've tried contacting support but i get no  response.  I have turned off windows firewall and disabled my  antivirus.  Any suggestions?

    Hey everyone,
    I  just purchased the CCNA network  simulator but I can't log in when I  run the program.  It's the CCNA  640-802 Network Simulator software 2nd  edition. I have a cisco press  login and password which specifically  says you need (see screenshot  attached for error).  I've tried  contacting support but i get no  response.  I have turned off windows  firewall and disabled my  antivirus.  Any suggestions?
    I think the above error clearly says there is problem with internet connection while connecting with the pearson site while loading the software. check the internet connection while installing the software.
    Hope it Help !!
    Regards
    Ganeshh Iyer

  • Network simulator software

    I'm looking for a good network simulator software to build a physical network virtually that also supports the commands used on the physical network. Thank you in advance. 

    James - GNS3 is very popular among networking community. A lot of people use it for certification studies or POC related testing. It has a little limitation it can't simulate switch ASICs (but has switch modules, which is pretty close)
    Google GNS3 or GNS3 getting started you will get a lot of stuff on how to set it up and use.
    -Terry
    Please rate all helpful posts

Maybe you are looking for

  • Blackmagic Decklink card not showing up in Playback settings

    Just upgraded to Premiere Pro CC - my Blackmagic Decklink card is not showing up in the Playback settings box.

  • Which wire for feeding in video from a Handycam?

    My apologies (again) if this is a dumb question... I have an '08 MacBook Pro (where one of the knocks by reviewers was that it didn't many cable and device inputs). I have a bunch of video from Mini-DV tapes that I'd like to start transferring in fro

  • Remove Attachments also removes Gmail labels?

    Whenever I "remove attachments" from a message in my inbox, the message disappears from my inbox. However, the message is still in my Gmail "All Mail" folder. So, I'm thinking that "remove attachments" is also removing the inbox label from the messag

  • How do I get rid of annoying voice telling me my every move?

    How Do I shut off the voice telling me every move I make, especially When I am editing?

  • Masking P-Card Number

    Hi All, I need to  mask the first 12 characters with *'s and the last 4 numbers as it for a procurement card. The transactions where we would like the masking to occur would be: 1) Create/Change/Display Requisition 2) Create/Change/Display Purchase O