Modified KnockKnockClient as a type of Telnet

I modified the KnockKnockClient.java from Sun's custom networking tutorial found here: http://java.sun.com/docs/books/tutorial/networking/index.html
I'm submitting this for those of us who need a good start on making a Telnet-like client.
I've added a GUI to the original code along with a thread for the client to constantly recieve strings from the server without having to send a string for each string from the server.
   import java.io.*;
   import java.net.*;
   import java.awt.*;
   import javax.swing.*;
   import java.awt.event.*;
   import java.awt.BorderLayout;
   import javax.swing.text.*;
   public class Client extends JFrame implements ActionListener, Runnable{
      private JTextArea main;
      private JScrollPane scrollPane;
      private JTextField tField;
      private Container content;
      public Thread m_Server = null;
      private String fromServer, fromUser, hostName;
      private static Socket kkSocket = null;
      private static PrintWriter out = null;
      private static BufferedReader in = null;
      private int getHost = 0, hostPort;
      private JTextPane pane;
      private SimpleAttributeSet set;
      private Document doc;
      public Client()
         content = getContentPane();
         content.setLayout(new BorderLayout());
         tField = new JTextField(9);
         tField.addActionListener(this);
         content.add(tField, BorderLayout.SOUTH);
         pane = new JTextPane();
         set = new SimpleAttributeSet();
         set.addAttribute(StyleConstants.CharacterConstants.Bold, Boolean.TRUE);
      // Initialize attributes before adding text
         pane.setCharacterAttributes(set, true);
         //pane.setText("Three");
         set = new SimpleAttributeSet();
         StyleConstants.setItalic(set, false);
         StyleConstants.setForeground(set, Color.BLACK);
         StyleConstants.setBackground(set, Color.WHITE);
         doc = pane.getStyledDocument();
         set = new SimpleAttributeSet();
         StyleConstants.setFontSize(set, 12);
         JScrollPane scrollPane = new JScrollPane(pane);
         content.add(scrollPane, BorderLayout.CENTER);
         scrollPane.setWheelScrollingEnabled(true);
         scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
         scrollPane.setPreferredSize(new Dimension(200, 700));
         pane.setFont(new Font("Courier", Font.PLAIN, 12));
         try {
            doc.insertString(doc.getLength(), "Enter host name: ", set);}
            catch (BadLocationException e) {
               System.err.println("Bad location");
               return;}
         getHost=1;
         tField.requestFocus();
      Object mylock = new Object();
      private void scroll()
         /*if(pane.getLineCount() >= 100)
            pane.replaceRange(null, 0, 95);
         int pos = pane.getText().length();
         synchronized(mylock)
            //pane.setCaretPosition(pos);
            pane.setCaretPosition(doc.getLength());
      private void startPlay() throws IOException
         try {
            kkSocket = new Socket(hostName, hostPort);
            out = new PrintWriter(kkSocket.getOutputStream(), true);
            in = new BufferedReader(new InputStreamReader(kkSocket.getInputStream()));
            catch (UnknownHostException e) {
               System.err.println("Don't know about host: "+hostName+".");
               System.exit(1);}
            catch (IOException e) {
               System.err.println("Couldn't get I/O for the connection to: "+hostName+".");
               System.exit(1);}
         start();
      public void actionPerformed(ActionEvent e)
         if(getHost==1)
            hostName = tField.getText();
            getHost=2;
            //pane.append(hostName+"\nEnter port: ");
            try {
               doc.insertString(doc.getLength(), hostName+"\nEnter port: ", set);}
               catch (BadLocationException f)
                  System.err.println("Bad location");
                  return;}}
         else if(getHost==2)
            hostPort = Integer.parseInt(tField.getText());
            getHost=0;
            //pane.append(""+hostPort+"\n\n\n");
            try {
               doc.insertString(doc.getLength(), ""+hostPort+"\n\n\n", set);}
               catch (BadLocationException f)
                  System.err.println("Bad location");
                  return;}
            try{
               startPlay();}
               catch (UnknownHostException f) {
                  System.err.println("Problem at startPlay()");
                  System.exit(1);}
               catch (IOException f) {
                  System.err.println("I/O problem at startPlay()");
                  System.exit(1);}}
         else if(getHost==0)
            fromUser = tField.getText();
            //pane.append("//"+fromUser+"\n");
            try {
               doc.insertString(doc.getLength(), fromUser+"\n", set);}
               catch (BadLocationException f)
                  System.err.println("Bad location");
                  return;}
            out.println(fromUser);
         //start();
         tField.selectAll();
      public void start()
         if(m_Server == null)
            m_Server = new Thread(this, "Server");
            m_Server.start();}}
      public void stop()      
         m_Server=null;
         try{
            Quit();}
            catch (UnknownHostException e) {
               System.err.println("Unknown Quit()");
               System.exit(1);}
            catch (IOException e) {
               System.err.println("Couldn't get I/O for Quit()");
               System.exit(1);}     
   //This "parser" is going to be used for ANSI color code parsing
   //from the string sent from the server.  It does nothing right
   //now, really.  ?? means new line for some MUDs. is a
   //square character that doesn't need to be in the string.
      private void parser()
         fromServer = fromServer.replaceAll("??","\n");
      //[0;37m[32mH:2799 [37m[1;33mM:1953 [0;37m[1;31mB:100% [0;37m[eb]
         //jack = "[37m[32mH:2799 [37m[1;33mM:1953 [0;37m[1;31mB:100% [0;37m[eb]";
         fromServer = fromServer.replaceAll("","");
         //fromServer = fromServer.replaceAll("","");
         try {
            doc.insertString(doc.getLength(), fromServer+"\n", set);}
            catch (BadLocationException f)
               System.err.println("Bad location");
               return;}
      public void run()
         Thread m_Server =  Thread.currentThread();
         Thread thisThread = Thread.currentThread();
         while(thisThread == m_Server)
            try
               fromServer = in.readLine();}
               catch (UnknownHostException e) {
                  System.err.println("Unknown in.readLine()");
                  System.exit(1);}
               catch (IOException e) {
                  System.err.println("Couldn't get I/O for the connection to: in.readLine()");
                  System.exit(1);}
            if(fromServer != null)
               parser();
            scroll();
      private void Quit() throws IOException
         out.close();
         in.close();
         kkSocket.close();}
      public static void main(String[] args) throws IOException {
         Client window = new Client();
         window.setSize(800, 640);
         window.setLocation(0, 0);
         window.setTitle("MMC v0.01c");
         window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         window.requestFocus();
         window.setVisible(true);
   }

Modify parser() it won't work because of this forum doesn't support special characters.
   private void parser(){
     try {
        doc.insertString(doc.getLength(), fromServer+"\n", set);
     catch (BadLocationException f) {
        System.err.println("Bad location");
        return;
   }If you modify the parser() method, you won't get a metta-tag error.

Similar Messages

  • How to modify a lookup field-type to use checkbox instead of radiobutton?

    How to modify a lookup field-type to use checkbox instead of radiobutton?
    I would like to modify the behavior for the lookup field.
    Normally you get a screen where it is possible to search through a lookup. The items resulted from the search are listed as radiobutton items. Therefore you can select only one at the time to be added.
    Is it possible to have the items to be listed as checkbox instead? So that you can check multiple items and therefore be able to add multiple items at the time?
    For example:
    To add the user to 10 different groups on MS-AD.
    It is desired to have the ability to check multiple groups to be added instead only one at the time.
    My client would like to use this feature in many other situations.

    Displaying will not be a big deal but with that you have to customize the action class and its working as well.

  • How to modify field symbol of type Index Table with other field symbol of type any.

    Hello Experts,
    How is it possible to update an filed symbol table of type Index table with other filed symbol table.
    e.g.
    Field symbol :  <lt_table1> type Index table.
    Field symbol : <lt_table2> type Index table.
    after some code...at run time these table filled like following.
    <lt_tabel1 > has  value fore column  like c11 , c12 , c13 
    <lt_table2> has value for column like C11     , C12 , C13 , C14 , C15 . some extra  values from <lt_table1>
    Now I want to be modify <table1> one entires like C12 with <table2 > col C12.
    how I can achieve this.
    Regards,
    Chetan.

    Hi,
    did you try  ASSIGN COMPONENT xx OF STRUCTURE <IT_TABEL1> TO <IT_TABLE2>.
    xx will contain the number of the column
    or maybe, if you have the description with a field catalog or other, that will be easier ..
    regards
    Fred

  • Modify Table column data type

    Dear All,
    We have one user contains more than 100 tables(Production). I need to change some of table columns data types without affect data's.
    Please suggest me to do that.
    Thanks in advance,
    Moorthy.GS

    Dear Sybrand,
    Thanks for your reply.
    I tried below ways to modify the datatypes.
    1) Tried to modify datatype FLOAT to NUMBER while data is persists.
    2) Tried to take a export of that user and import the dump without data's and modify the datatype. After that, i tried to import the dump with rows=y option. But it failed due to constraint problems.
    Please advise...
    Cheers,
    Moorthy.GS

  • How to add core column "Modified" to a content type

    I don't know if this is the correct category to put the question in but if not you're free to move it...
    I'm creating a page layout in SharePoint 2013 using SharePoint Designer and the Design Manager, and so far everything seems to be working. But I would like to add the "Modified" site column to my page layout but it is not available in Design Manager
    as a snippet, likely because the column is not added to the content type. I thought I would be able to simply add the site column in my content type definition as a reference like this:
    <FieldRef ID="{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f}" Name="Modified" />
    This has worked for all the custom site columns I have added to the content type but for some reason the "Modified" site column is not added to the content type. Does anyone know why this may be the case? Do I need to add other attributes in the
    field reference?

    I don't know what has changed since last time I tried it but if I insert this snippet it works as expected:
    <div data-name="Page Field: Modified">
    <!--CS: Start Page Field: Modified Snippet-->
    <!--SPM:<%@Register Tagprefix="PageFieldDateTimeField" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
    <!--MS:<PageFieldDateTimeField:DateTimeField FieldName="28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f" runat="server">-->
    <!--PS: Start of READ-ONLY PREVIEW (do not modify)--><div align="left" class="ms-formfieldcontainer"><div class="ms-formfieldlabelcontainer" nowrap="nowrap"><span class="ms-formfieldlabel" nowrap="nowrap">Modified</span></div><div class="ms-formfieldvaluecontainer">12-12-2013 10:33 AM</div></div><!--PE: End of READ-ONLY PREVIEW-->
    <!--ME:</PageFieldDateTimeField:DateTimeField>-->
    <!--CE: End Page Field: Modified Snippet-->
    </div>

  • Can I modify the the day type with a time rule???

    Hello,
              I´m trying to modify the day type,I want to change in some particular cases the day type from 1 to 0 for example. I´m looking in the documentation but I don´t find no operation to do this trough a time rule.
    I think that it would be abble to do with a function that modify the table PSP.
    Anybody knows how can I do it??
    Thank you very much!!!.Regards,
    Emi DF

    Thank you Valéire,
                                  I´ve solved the problem with your answer.Regards,
    Emi DF

  • How can i modify SLT mapping data types ?

    I am modeling an Attribute view in HANA sp05 and i need to create a join betwwen two standard tables CRMD_ORDERADM_H and SRRELROLES using files GUID and OBJKEY.
    these two fields have two different types of data ( GUID = RAW and OBJKEY = CHAR).
    When SLT replicate these files in HANA the data types are (RAW = VARBINARY and CHAR = NVARCHAR). I can't create these join in HANA.
    So i have to change the transformation rule in in SLT for something like: In table SRRELROLES for field OBJKEY the tranformation rule will be (CHAR to VARBINARY).
    How can i do this in SLT?
    I have to use the transaction IUUC_REPL_CONTENT?
    OR
    Can I insert records in tables IUUC_REPL_TABSTG and IUUC_REPL_TAB_DV ?
    Thanks and best regards for all!

    HI,
    use IUUC_REPL_CONTENT. It will insert the relevant values to table IUUC_REPL_TABSTG and IUUC_REPL_TAB_DV .
    Best,
    Tobias

  • AS2 Module tab.. Mapping Names for modified Standard Msg types ? ? BIC ??

    HI All,
    Im using AS2 adapter for standard PO message type <b>orders.orders05</b>
    and i thought of using the seeburger standard mapping name  "<b>See_E2X_ORDERS_850</b>"  in AS2 Module tab.
    Now the problem is my client has extended the idoc to <b>orders.orders05./glb/orders</b> by adding few more fields in some of the segments.
    Since we have modified the standard message type and i dont think the standard mapping name will work for this ?? im i correct??
    If yes, i think we need to use BIC mapping tool and modify the standard xsd by importing and we need to create the new map ( ex:<b>map_E2X_Orders_Modified.xml</b>) ,generate the SDA file for this and we need to deploy SDA into XI.
    And finally if we use the modified mapping name in our AS2 module tab.I think it will work????
    Any suggestion or inputs we can approach in these kind of situations.
    Thank you.
    Regards
    Seema.

    Hi Chirag,
    Nice to see you back in action
    I will be doing the below steps in BIC.. and let me know if anything is wrong in this.
    i will Create the Project name as <b>" Project_Orders_Modified"</b> in BIC tool
    1) i will modify the std msg xsd in txt file and Under my project name i will import it under EDIFACT. Save it and i will export it and save it in folder as...
           <b> msg_DT_Orders.xml</b>
    2)i will create XML Message for this by giving
    <b>
    source : msg_DT_Orders.xml
    Target : msg_XML_DT_orders.xml</b>
    I will import it into My Project " Project_Orders_Modified"
    3) I will create the CreateMappingEDI to XML by giving
    <b>source : msg_DT_Orders.xml
    Target : map_E2X_DT_orders.xml</b>
    I will import it into My Project " Project_Orders_Modified"
    Then I will run the map.. and checks if it is working fine.
    If yes, i will import my mapping into Active mappings and i will generate SDA file and will deploy into XI .
    Finally i will use the mapping name " <b>map_E2X_DT_orders</b> " in AS2 Module tab.
    Let me know if anything wrong.
    -Seema.

  • HT203192 "networksetup is trying to modify the system network configurations" type your password to allow this.

    "networksetup is trying to modify the system network configurations" type your password to allow this.Type your password to allow this.  No amount of password typing seems to satisfy the request. The pop up box will not go away!!!!

    Hi Glenyse,
    Did you find the answer to your question?  I have the same problem.  Or can anyone else help?
    My wife’s 2012 Macbook Pro has Yosemite and is using Wi Fi for the internet connection. 
    Every time, both on startup and awaking from sleep, a window appears on the desktop with a locked icon saying, “Networksetup is trying to modify this system.  Type your password in to allow this”.
    The window (which can’t be moved or dragged) shows the computer’s user name. The password has to be repeatedly typed in as many as 10 times and the highlighted ‘modify configuration’ box clicked before the window disappears and the computer then functions normally.
    Needless to say, this is driving my wife up the wall…    I would certainly appreciate information on how to get rid of this troublesome window!

  • Modifying standard material type configuration provided by SAP

    I was recently involved in a discussion regarding whether or not to modify sap provided material types (e.g. FERT)
    My position was that SAP provided material type configuration should not be modified, instead a z-version of the standard material type should be copied over to a z-version or a y-version (FERT copied as ZFRT), configurations changes made the z-version. My position was based on the following considerations:-
    Reference to the original
    Possible implication at the time of future releases or upgrades - In Some of my previous projects this was a reason why the standard material type configurations were never touched
    Hence I am curious to know if there a more current or correct position on this topic.

    Hi Jose,
    You are absolutely correct that standard material type should not be changed as you can always reference to the original if you want to create a new material type by copying the old ones. I too have seen ZFRT and FERT.
    I go by creating a Z one, as I have always the option to reference the original Material Type. As the above members have already replied the same.
    It is very easy to check the material type like FERT, ROH etc. However, say you have changed the settings for standard material type like FHMI, LEIH, VERP etc and you want to create a new material type by referencing any of the above, you will need to check client 000 (as referred by Jurgen) to check what Pricing control it have S or V. What Item Category is in original. What selection of views are there in original etc. you always have a better edge to check from the originals if you do not change them.

  • Adobe MM Purchase Order - Output as FAX Message Type - Output Missing

    Hi All,
    Hope some one has some pointers on what to do here, I am at a bit of a loss.
    Situation.
    I have developed a Adobe Purchase order based on the std form MEDRUCK_PO supplied with the ECC6 R/3 system.  We have kept the same interface inputs, so no changes would be required to the SAP std output program.
    Any additional customising data was implemented as globals in the interface and coded accordingly.
    The purchase order is produced and output when using the output type of printer.  However when we change the output type to FAX no output is produced.  By this I mean no changes are shown in the wait queue in SCOT and no messages are shown in SOST.  However the record in NAST shows that the output was produced OK.
    Questions:
    1) Does the SAP std program need to be modified if the output type is FAX?
    2) What configuration changes are required if any to get this working?
    Thanks in Advance
    David Cooper

    It is not possible to FAX Adobe Output using the SAP std Supplied code in ECC6 SP12.

  • Get File by modified date and extension then copy to location

    Hello,
    Ill give a brief description of what I am trying to accomplish. We have a bunch of files that are sitting on a deduplication box (Exagrid), we want to try and copy certain files off of this dedup box, however, if we copy EVERYTHING this will fill up our
    entire NAS Device. So, instead, I need to build a script that finds files by a modified date and extension type, then copy those to a specified folder. 
    Here is the code:
    $logfile = "C:\CopyResults.log"
    function LogWrite{
    Param([string]$logstring)
    Add-Content $logfile -Value $logstring
    $date = get-date
    $DateToCompare = (Get-Date).AddDays(-2)
    $Files = Get-ChildItem -Recurse | Where-Object {$_.LastWriteTime -gt $DateToCompare} | Where-Object {$_.Extension -eq ".xlsx"}
    foreach($File in $Files){
    Write-Host "$File was copied to C:\test"
    Copy-Item $File C:\test
    logWrite "$File was copied to c:\test --- $date"
    The file extension is of course just a test, as well as the destination of where these files are to be copied to. Ultimately I would like to build in the functionality that will check the date and delete the files after a certain amount of time has passed and
    then copy new files. For now, though, I would be satisfied with just some insight on my own idea and know where I am going wrong or how to clean this up a little better. The overall issue I having is when I run this portion of the script I get this: Copy-Item
    : Cannot find path 'C:\Users\<username>\<filename>.xlsx' because it does not exist.
    At line:13 char:5
    +     Copy-Item $File C:\test
    +     ~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (C:\Users\<usern...al filename>.xlsx:String) [Copy-Item], ItemNotFoundException
        + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.CopyItemCommand

    I solved the issue. Here is the full script:
    net use \\netpath\filename /user:<Username> <Password>
    $logfile = "C:\CopyResults.log"
    function LogWrite{
    Param([string]$logstring)
    Add-Content $logfile -Value $logstring
    $date = get-date
    $DateToCompare = (Get-Date).AddDays(-1)
    $VBMs = Get-ChildItem \\netpath\filename -Recurse | Where-Object {$_.LastWriteTime -gt $DateToCompare} | Where-Object {$_.Extension -eq ".vbm"}
    $VBKs = Get-ChildItem \\netpath\filename -Recurse | Where-Object {$_.LastWriteTime -gt $DateToCompare} | Where-Object {$_.Extension -eq ".vbk"}
    $VIBs = Get-ChildItem \\netpath\filename -Recurse | Where-Object {$_.LastWriteTime -gt $DateToCompare} | Where-Object {$_.Extension -eq ".vib"}
    foreach($VBM in $VBMs){
    Write-Host "$VBM was copied to C:\test"
    Copy-Item $VBM.FullName \\netpath\filename
    logWrite "$VBM was copied to c:\test --- $date"
    foreach($VBK in $VBKs){
    Write-Host "$VBK was copied to C:\test"
    Copy-Item $VBK.FullName \\netpath\filename
    logWrite "$VBK was copied to c:\test --- $date"
    foreach($VIB in $VIBs){
    Write-Host "$VIB was copied to C:\test"
    Copy-Item $VIB.FullName \\netpath\filename
    logWrite "$VIB was copied to c:\test --- $date"
    "In this case you are handing a System.IO.FileSystemInfo.FileInfo object to the Copy-Item cmdlet. I think the cmdlet is probably defaulting to using the .Name property and that is not enough information for the copy to work. When you explicitly give the
    .FullName property to the cmdlet, it now has the information that it needs."
    I found this on Stack Overflow buried in the forums and it resolved all my issues. I have tried using that tool and it works very well, however, Powershell is what I am using for everything and I would like to keep it that way.
    Thank you all for your time and help.

  • In Orchestration View , Port Type is Read only

    Hello ,
    I am having Request Response Port in Orchestration View (Port Type), i have linked this with Receive Shape and Send Shape in orchestration and deployed this application.
    I have realised that my Port Type should be Type Modifier = Public
    insted of type Internal.
    But it is read only and not allowing me to change it now ????.
    One way to do this is create new port type assign it's Type modifier...
    Any Ideia how to do that other way  ?
    Thanks,
    Nilesh
    Thanks and Regards, Nilesh Thakur.

    Thanks Boatseller for help ...
    As I already explained that this Port Type was already created (by one of my team member) and deployed.
    1) How many way we can create Port Type ?
    I know by right click on Port Surface and New Port or New Configure port ???
    what I mean is that not able to make changes in property window for
    Type Modifier.
    This port type is grad out and also All option in property are disabled.
    Thanks,
    Thanks and Regards, Nilesh Thakur.

  • How do I establish a telnet session with unit under test?

    I am going to the next step as a novice and moving from serial communications to ethernet on my unit under test. I have been all over the help and discussion forums etc and cannot find an answer. I need to open up a telnet session with my unit under test and keep it open to send commands back and forth for control of the unit. Can anyone give me a hint of how I am to establish this communication? I have the IP address and I am using port 23 but I just get the session started and then immediately closed. The sequence of events will be: start the session, the unit will reply with a username and then password, after that I need the session to remain open so I can send commands as if I am sitting at the serial port. When complete the session will then be terminated. Thanks in advance for any help.

    If you want to do telnet using plain TCP, you need to do everything yourself, including the telnet options negotiation.
    RFC 854 should have most of what you need (look towards the bottom).
    Most likely, the server will propose a few options, which you should either accept or reject depending on your needs.
    Easiest is probably to use a packet sniffer on a regular telnet session, then dissect the negotiation to see what that particular server wants.
    RFC 990 has a list of telnet options, look for the section labeled "ASSIGNED TELNET OPTIONS".
    It should be simple to write some code that negotiates with one particular host. It will be more difficult to write a full-blown telnet client that does general negotiations with any type of telnet server.
    I have a small program that telnets to a router to do some configuration. The only thing I reply to the proposed options is:
    "\FF\FD\03\FF\FE\01\r\n" (In \-codes). Translated: "Don't suppress go ahead, Do echo".
    (FF=IAC "Interpret as command", FD=Do, FE=Don't, 01=echo, 03= suppress go ahead.)
    LabVIEW Champion . Do more with less code and in less time .

  • Delete Business Object Type (SWO1)

    Hi gurus,
    How can we delete/modify objects in SWO1 that were created in a previous version. Are these actions allowed, is there a workaround if its not allowed?
    Thanks for your help!
    Jason

    Hi Raymond,
    Thank you for your help.
    I have come accross that thread in SDN while doing some research already. But It does not completely answer my question.
    Correct me if I'm wrong, this means there is absolutely no workaround to modify a business object type that has been created in a different version?  If thats the case why does SAP enforce this rule?
    Thank you

Maybe you are looking for

  • Error while installing Logic Pro Additional Content HELP!!!!!!!!

    Hello, I've recently purchased Logic Pro 9.1.8 from the Appstore on my new MacBook Pro (Mid 2012). The App installed fine and so did the 2 GB obligatory download on the first launch. But then I downloaded the Logic Pro and Mainstage additional conten

  • Help me please!!! lightsnake usb guitar gb2

    I have been using Garageband ever since I've recieved my iBook about a year and a half ago. Ive been using it with a lightsnake (guitar input / usb) and ive been getting fair results with it, and then one day... poof. every time I try to connect it t

  • Safari auto refresh and iCloud

    When composing an email in the webmail application at the iCloud website, the Safari screen on my MacBook Air will refresh every few minutes, causing me to lose the work I have done. I end up  with a blank screen for the window that I was composing t

  • NWBC - UNCAUGHT_EXCEPTION CX_NWBC

    Dear All, I ahve a problem with NWBC using roles with embedded the trusted RFC from ERP to HCM. here is it the dump For the role entry "" (), the SM59 alias can't be resolved. Needed is at a minimum one type "3" definition ("" or "") and minimum one

  • Q before I buy - Does the Behringer BCF2000 work with Audition CS5.5?

    Looked everywhere for an answer, so thought I'd just come out and ask.