What Options I can implement for comunication PC ( lan ethernet) with SNA S

What Options I can implement for comunication PC ( lan ethernet) with SNA Server (Lan Token Ring) :
To see file
thanks you,
jj González

What version of SNA server are you using?
SNA server version 3 and higher support tn3270/tn3270e (for mainframe connectivity) and tn5250 (for as/400 connectivity) clients. The ms windoes telnet client does not support those protocols so you need a 3270 and/or 5250 emulator from another vendor, such as NetManage or Hummingbird.
This assumes that you have a routed network between your workstation and the sna server.
If your network is bridged, then you need to use an emulator that works with the native sna protocol, as the sna server supports that as well. The NetManage and Hummingbird emulators will work in this case too.
Try to use the tn3270/tn5250 as the first choice as it does not require a bridged backbone. SNA is not a routeable protcol by default.
Let me know if this helps.

Similar Messages

  • What options we can have for monitoring SharePoint Farm till web part level?

    Dear All,
    I want to monitoring SharePoint Farms till web part level.
    2 Farms - SP 2010 & other SP 2013
    Farms are with NBL  - F5 & clustered database.
    Our client have enterprise licenses.
    Accordingly please suggest what tool I can use for monitoring, administrating, reporting, alerting etc either
    Microsoft's or  any third party. 
    I came to know about System Center will this monitor till web part level.
    Sumeet Singhal

    we are using the SCOM for our SharePoint monitoring and till now satisfied, we are not monitoring the webparts as we have tons of sites collections:
    but there are certain good companies which having the monitoring tools:
    Idera: http://www.idera.com/productssolutions/sharepoint/spdiagnosticmanager/productdetails#
    and this tool claims that they can monitor from end user's prospective. http://www.gsx.com/products/gsx-monitor-analyzer-for-sharepoint/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • What  cable i can use for Thunderbolt port?

    what  cable i can use for Thunderbolt port?

    You can use a mini displayport cable as long as it is connected to a mini displayport peripheral.
    You can use a thunderbolt cable as long as it is connected to a thunderbolt peripheral.
    There are now thunderbolt cables available in the Apple store.

  • In what circumstance i can ask for replacement or full refund money when it is under warranty?

    In what circumstance i can ask for replacement or full refund money when it is under warranty?

    Other than the return period the Apple Store offers if you purchased from them, 14 days for most of the year and longer during the holidays, there is no official written policy on returning any Mac or getting a replacement. The official terms of the warranty is that Apple will repair a defective Mac.
    If your Mac has suffered repeated instances of the same failure for which Apple has been unable to provide a permanent fix, in some cases Apple Customer Relations has agreed to replacing the Mac. This is taken solely on a case-by-case basis and only when there have been repeated failures and is absolutely not guaranteed. Otherwise Apple will repair the system as stated in the warranty terms. I've never heard of Apple authorizing a refund outside of their standard return period.
    Regars.

  • What is the best software for burning a large slideshow with 500 photos and music to DVD?

    What is the best software for burning a large slideshow with 500 photos and music to DVD?

    Are you talking about strictly burning an already put-together slideshow or composing one and then burning it?
    My all time favorite slide show maker is Photo to Movie; you can then burn it from there or get it into iMovie and/or iDVD for the "finishing" touch. My favorite burn software is Toast, although you can use iMovie, iDVD, and Finder as well.
    http://www.lqgraphics.com/software/phototomovie.php
    http://www.roxio.com/enu/products/toast/titanium/

  • HT1998 what is the latest update for Airport Express 802.11n with the Mac OSX10.6.8

    what is the latest update for Airport Express 802.11n with Mac OSX 10.6.8?

    You can find out as follows:
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Click the AirPort Express
    Click Manual Setup
    Click directly on the word Version (3rd line)
    If there are any updates, you will be notified.
    If there are not any updates, you have already have the latest firmware.

  • What is the best practice for using the Calendar control with the Dispatcher?

    It seems as if the Dispatcher is restricting access to the Query Builder (/bin/querybuilder.json) as a best practice regarding security.  However, the Calendar relies on this endpoint to build the events for the calendar.  On Author / Publish this works fine but once we place the Dispatcher in front, the Calendar no longer works.  We've noticed the same behavior on the Geometrixx site.
    What is the best practice for using the Calendar control with Dispatcher?
    Thanks in advance.
    Scott

    Not sure what exactly you are asking but Muse handles the different orientations nicely without having to do anything.
    Example: http://www.cariboowoodshop.com/wood-shop.html

  • What class that can implement file transfer in j2sdk

    hi
    i am doing this project that can transfer file through LAN(much like Yahoo Messenger)
    is there a class in j2sdk that can implement this? how to do it?
    thanks>>>>

    Annie is right that if you use only j2sdk then you want to use java.net. If you want to do it an easier way you can use ftp and download open source code. There are a couple of free packages you can find at http://www.javaworld.com/javaworld/jw-04-2003/jw-0404-ftp-p2.html
    If you want to use only the j2sdk then these 2 classes will give you an example of how to transfer data on the net. You need to add a lot more code to make these useful but it gives the general idea of how to open a socket and tranfser a bit of data.
    Client Side
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    public class ClientClass {
         private final static String HOST = "10.133.5.230";
         private final static int PORT = 543;
         public void sendFile() {
              try {
                   System.out.println("Entered sendFile");
                   Socket socket = new Socket( HOST, PORT);
                   InputStreamReader input = new InputStreamReader(socket
                             .getInputStream());
                   PrintWriter output = new PrintWriter(socket.getOutputStream(), true);
                   output.println("This is a test");
                   output.println("This is a test 2");
                   output.println("Last line");
                   output.println("ENDEND");
                   socket.close();
              } catch (Exception ex) {
                   ex.printStackTrace();
         public static void main(String[] args) {
              ClientClass client = new ClientClass();
              client.sendFile();
    }Server Side
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    public class ServerClass {
         private final static String HOST = "10.133.5.230";
         private final static int PORT = 543;
         public void getFile() {
              char[] inbuf = new char[2048];
              try {
                   System.out.println("Entered getFile");
                   // open server
                   ServerSocket server = new ServerSocket(PORT);
                   // wait for client.
                   Socket client = server.accept();
                   InputStreamReader inputStream = new InputStreamReader(client
                             .getInputStream());
                   BufferedReader input = new BufferedReader(inputStream);
                   PrintWriter output = new PrintWriter(client.getOutputStream());
                   while (true) {
                        String inData = input.readLine();
                        if ((inData != null) && (inData.length() > 0)) {
                             System.out.println("got '" + inData + "'");
                             if (inData.indexOf("ENDEND") > -1) {
                                  client.close();
                                  server.close();
                                  System.exit(0);
              } catch (Exception ex) {
                   ex.printStackTrace();
         public static void main(String[] args) {
              ServerClass server = new ServerClass();
              server.getFile();
    }Start the server side first and then run the client code in a separate JVM.
    You will also need to add the ability to handle binary and some sort of protocol to transfer the file names and handle the exceptions much better. Doing it like this would be much more fun and challenging, with ftp it would be alot faster.

  • Why can't my iMac be on Ethernet with WiFi ON (to allow iPhone Calling)?

    With iOS 8's option to allow other Apple devices to make and receive iPhone calls, I read its help article (LINK: OS X Yosemite: Use your Mac to make and receive phone calls ) and saw that the Mac needs to have WiFi on.  My desktop internet has always been more reliable with an ethernet connection, but I want this iPhone calling feature, so I turned on the WiFi also.  In preferences I DID change the order so that Ethernet comes BEFORE WiFi, but once I turn WiFi on, NO connection works at all!!  My browser keeps displaying a message that it can't reach the network.
    (The ethernet cord is plugged into the same router transmitting the WiFi signal.  Other devices that "need to be on the same network", like my TiVo & Blu-Ray Player, are connected with Ethernet with WiFi off, yet still recognize my network remote controls that are using WiFi.  Why doesn't the iMac seem to work that way?)
    How do I use my more reliable Ethernet connection for everyday iMac usage, but still use FaceTime's "allow iPhone calls" feature?

    It should work the way you describe. Mine is set up that way and it works. Internet via Ethernet cable and iphone on same network via WiFi.
    what are the IP Addresses you are getting on your Mac?

  • Can not connect outside of Lan to with rtsp PVC2300

    I have the following cameras set up at my office
    1 - PVC2300
    2 - WVC54GC
    3 - AXIS 225FD
    I have a BEFSR81 Router
    I have a computer on Windows XP running the surv software to record.  Everything with that is good.
    I also have 2 desktops.
    I have been playing around with the rtsp feed with the pvc2300, but have run into a few problems.
    1(a).  I can not connect outside of the LAN with RTSP with either the VLC player or quicktime.  It connects and asks for a password and then just hangs.
    The PVC 2300 local address is 192.168.1.102 with ports 554, 5000-5010, and 6970-6999 forwarded on the router.  What am I missing?
    1(b) I can successfully connect with my blackberry bold, although when I try to change the default port (554) to something else (I would like to RTSP my the AXIS camera as well,  so I will need a different port) it connects on my bold, but then says server is unresponsive. What am I missing here?
    2.  The voice with the PVC 2300  using http outside of the LAN (internet) lags quite baddly and is choppy.  This happens without fail when I have all 4 cameras running, which I understand is upload bandwidth problem.  But it also happens when I connect to just the PVC2300.  I do have a connection to all 4 cameras inside the LAN to the XP running the surv software, but that is it. Is the my router acting buggy?  I have unplugged the router for 5 sec, and it fixed it for a while, but it always comes back.  I have donwloaded the latest firmware for the router and PVC 2300 and that didnt seem ot fix it either.  Suggestions?
    3.  This is more of a question.  I know the mobile streaming of the PVC 2300 does not include voice.  Is there an app or way that I can just get it to my Blackberry.  Even if I didnt get the video, voice is sometimes more important to me.
    I hope Ive been clear enough in my description, Im very self taught (google is amazing), but I am in no way a techy.
    Thank you in advace for your help.
    Colin

    Glad to hear you are successfully using the SWVMS16. That program is really cool and useful. I just cant tell you how that model of Linksys Router can work for you here (that is not a model we support on this community as its not small business)
    Regarding RTSP access, are you also including the mobile.sdp in the URL?
    RTSP:///mobile.sdp   I noticed in the camera GUI with the newer firmware, you can specify an access code under mobile settings after checking the enable mobile streaming box.  That word may be what you have to include, so check that too...
    Try this locally first and then remotely is the easiest way to see if you got it right, then it just becomes a routing or firewall issue to figure out.
    But your forwarded ports look right and should be opened.
    Under advanced settings, you can define an alternate HTTP, HTTPS or RTSP port

  • Can't connect to Airport over ethernet with XP Home SP3

    I can't connect to Airport Base station dual ethernet over ethernet with XP Home SP3. The XP lan connection said Windows could not complete : Renewing your IP address, when i try to repair the connection. the apple Extreme Admin utility shows Base Station Information but can't configure it and said:
    The Base station has been reset and is not configured, make sure your computer is configured for a 192.42.249.X-compatible IP address so the base station can be reset to its default configuration. Can any one help with this? I want to set up the airport so I can provide wifi to an IPod but i cant get XP to connect properly it said i have limited or no connectivity.

    Its working now but the windows computer still cant get the aiprort base station to start a dialup connection. I dont wnat to usr the ipod for this all the time. Any ideas how to get XP to force the Airport Base Station to open a dial up connection.

  • What options i should choose for Render Multiple frames Simultaneously?

    Installed RAM: 7,98 GB
    Current RAM Usage: 1,19 GB
    Allowed RAM Usage: 5,98 GB
    Process ID
    Application Name
    Min Needed Memory
    Max Usable Memory
    Max Allowed Memory
    Current Memory
    Current Priority
    6696
    After Effects
    0,40
    7,98
    5,98
    1,19
    2 - Normal
    Program:
    After Effects cs6
    Pc:
    Intel core i3
    RAM: 8GB
    Graphic card: GT440

    AE5+ likes cores & RAM.
    use 6GB as min reserved for OS.
    If footage is greater than 480p (SD television) use 1.5-3GB/thread.
    Not sure which processor you have, if you have a clarkdale processor i3-5xx you are kind of hosed about your only option is to update to 16gb is about the best you can do, if you have sandy/ivy-bridge i3-2xxx/3xxxx update it to i5-i7 and 16+GB of RAM, you'll have a lot more fun with it

  • YouVideo and Audio Downloader(what version I can use) for my Firefox 3.6.28, I'm running OSX 10.5.8

    I cant download youtube videos from my Firefox 3.6.28 version for my older PowerPC G5 Quad. I need to know the version of add-on, "YouVideo and Audio Downloader" that I use. I have never used this add-on before, not on my mac computer. I'm running OSX 10.5.8 and my version of Firefox version 3.6.28 is the only current version I can use. Appreciate any help!
    David Hill

    Go to the '''[https://addons.mozilla.org/en-US/firefox/ Mozilla Add-ons Web Page]''' {web link}
    (There’s a lot of good stuff here) and search for what you want.
    The site will see if your Firefox and system is compatible. for you.

  • What option do I have for programming analog triggering in a 6035e daq?

    I am using a 6035e board but it doesn't support analog triggering option. I read the manual and it said that the PFI input is use for triggering, how does it work? I want to acquire some data before and after a voltage condition (this condition must be done with analog triggering ?)how can we do that using a 6035 board?
    Best Regards,

    Sandra,
    You are correct, the NI 6035E does not support hardware analog triggering. The PFI lines can be used for digital triggering (TTL logic). A digital stop (reference) trigger does support both pre-trigger scans and post-trigger scans. The example Acquire N Scans Digital Trig.vi demonstrates this programming procedure in LabVIEW. If you do need to perform analog triggering, you should use an analog software trigger. The example Acquire N Scans Analog Software Trig.vi demonstrates this programming procedure.
    Good luck with your application.
    Spencer S.

  • In what situation i can go for the BPM process?

    hai pals,
         i wld like know in what kind of situation we will go for an BPM process for message transfer.
    with regards,
    rajesh.

    Hi Rajesh,
       BPM process is a very useful tool as the name suggest ccBPM when ever you want to model your soultion hitting different systems, Also helps in controling and  monitoring complex integration solution process.
        As it uses SAP workflow engine behind it is very effective in building complex soultion.
        some simple scenarios could be
         Wait for more than one input and start your integration process..
         Raising alerts, exceptions and so on...
    cheers,
    Vedavyas
    Message was edited by: Vedavyas Cuntheepuram

Maybe you are looking for

  • HT201317 How can I find a specific photo in Photo Stream?

    How can I find a specific photo in Photo Stream?

  • Append error on field length

    Hi all, I've gotten the header/trailer removed in the sender communication channel using java mapping and now must take the resulting detail rows and only allow them to be 80 characters in length and in flat text format (as it was initially). Below i

  • Unit Tests

    HI, Can anyone please tell me how to test my unit tests that i,ve written for web services response ,at runtime. How do i come to know that whatever test i,ve implemented is working or not. thanks in advance.

  • Java and ML - can someone explain?

    In my total ignorance of Java, can someone please explain what, if anything, should be installed in 10.8.3? If I go to java.com, it says I don't have Java installed and the 'Missing Plug-in' graphic shows. I've seen all sorts of stuff about Java 7, J

  • 10.4.6, airport & macsense aerocard extreme WPE-800

    We have been using a Macsense AeroCard extreme since Nov 05. We have airport extreme and haven't had any problems until today. We installed 10.4.6 this morning and now the aerocard extreme won't power on and airport shows up as off. This card is prac