Sending Zipped Files Across Sockets

Hi,
In my application, I have to send files across sockets. It's already being done, but I wanted to improve performance.
Currently, we read in the File and send it across however many bytes at a time.
Using java's zip utilities does anyone know of an example or have any ideas about reading the bytes in, compressing them, and then sending them across?
thanks for any help in advance,
Geoff

Here's the server-side code which corresponds to the code I got from you for ClientSide (it has been tweaked to try to get rid of the error).
forgive the lack of indentation (error to follow code)
import java.io.*;
import java.net.*;
import java.util.zip.*;
public class ReceiveData
public static void main(String[] args)
System.out.println("Receive Data");
try
ServerSocket serverSock = new ServerSocket(1400);
Socket sock = null;
while(true)
System.out.println("before accept");
sock=serverSock.accept();
System.out.println("after accept");
FileOutputStream fileOut = new FileOutputStream("d:\\javatests\\CompressTest\\test2.txt");
byte[] buffer = new byte[4092];
DataInputStream is = new DataInputStream(new GZIPInputStream(sock.getInputStream()));
int totalBytes = 0;
int bytesRead = is.read(buffer);
totalBytes += bytesRead;
while(bytesRead !=-1)
System.out.println("inside loop");
     fileOut.write(buffer, 0, bytesRead);
     bytesRead = is.read(buffer);
     totalBytes += bytesRead;
fileOut.flush();
fileOut.close();
is.close();
System.out.println("totalBytes: " + totalBytes);
catch(Exception e)
e.printStackTrace();
produces this error:
java.net.SocketException: Connection reset
     at java.net.SocketInputStream.read(SocketInputStream.java:168)
     at java.util.zip.InflaterInputStream.fill(InflaterInputStream.java:213)
     at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:134)
     at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:87)
     at java.io.DataInputStream.read(DataInputStream.java:113)
     at ReceiveData.main(ReceiveData.java:45)
and line 45 corresponds to the following line:
int bytesRead = is.read(buffer); (the one before the while loop)
thanks again to all,
Geoff
}

Similar Messages

  • How to send zip file as attachment through email

    Hi All,
    I am having a requirement that I need to download the internal table data into .txt file and I need to zip the text file. And this zip files needs to send to the customer through email.
    I am able download the data into .txt and able to zip the file. But I am not able send the .zip file through email.
    I know that we can send .xls, .txt, .csv and also .ppt, .doc file types we can send as an attachement through abap program. But I don't know about .zip files. Is there any possibilty to send .zip file as an attachment thorugh email.
    Can any one help me how to send a .zip file thorugh email as an attachment. 
    Regards,
    vinod

    hi Vinod,
    Can you please tell me how you have zipped the file.
    I am having a text file in application server. I need to zip that file. Then the middleware moves it to Legacy system.
    I used the following code. With this I am having the data in Binary format which my midleware cannot understand.
    What I need on the whole is just to reduce the size of the file.
    form ZIP_FILE .
    DATA: lt_data TYPE TABLE OF x255,
          lt_textdata TYPE TABLE OF x255.
    DATA: ls_data LIKE LINE OF lt_data.
    DATA: lv_dsn1(100) VALUE '/ECD/120/GIS/FTP/IB/DNBPAYDEX.TXT'.
    DATA: lv_dsn3(100) VALUE '/ECD/120/GIS/FTP/IB/DNBPAYDEXZIP.zip'.
    *DATA: lv_dsn3(100) VALUE '/interfaces/SM5/test.zip'. " Contains sample1.xls and sample2.xls
    DATA: lv_file_length TYPE i.
    DATA: lv_content TYPE xstring.
    DATA: lo_zip TYPE REF TO cl_abap_zip.
    CREATE OBJECT lo_zip.
    Read the data as a string
    clear lv_content .
    OPEN DATASET lv_dsn1 FOR INPUT IN BINARY MODE.
    READ DATASET lv_dsn1 INTO lv_content .
    CLOSE DATASET lv_dsn1.
    lo_zip->add( name = 'sample.TXT' content = lv_content ).
    lv_content = lo_zip->save( ).
    *clear lv_content .
    Conver the xstring content to binary
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
    EXPORTING
    buffer = lv_content
    IMPORTING
    output_length = lv_file_length
    TABLES
    binary_tab = lt_data.
    OPEN DATASET lv_dsn3 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    LOOP AT lt_textdata INTO ls_data.
    TRANSFER ls_data TO lv_dsn3.
    ENDLOOP.
    CLOSE DATASET lv_dsn3.
    IF sy-subrc EQ '0'.
        MESSAGE s999(zfi_ap_gl) WITH text-t10.
      ENDIF.
    Can you please help.
    Thanks Aravind

  • ZIP file across XI 3.0 ?

    Hi,
    Is-it possible to send, <u>across XI 3.0</u>, a ZIP file from a NON SAP system to a SAP R/3 system?
    If yes... What type of adapter? and How to do it?
    Thanks.

    Hi,
    Can't you convert the file content in the File Adapter into XML as described in the documentation for version 3.0 ?
    Kind regards
    Colin

  • How to send Zip files as attachments !! Very urgent, Please help!

    I am sending PDF files as attachments using java mail (it works fine). But now my requirement is to zip the PDFs and send them as attachments instead of actual PDF's. But i don't know how to achieve that. does java mail API support zip attachment facilities? I have looked in activation API also, but i couldn't find anything helpful. even i searched the forums, but no clue. Please, anybody help me about this, it's very urgent.
    thanks
    sri

    Check the first "if". If I specify an attachment, then a myme multipart doby is created: one for text and the other for the attachemnt I use this myme ovbject only for attachemnts, because some ISPs have problems and report error in email format if the attachemnet is missing and it contains only text and no attachment.
    static public void send(String to,
         String from,
         String host,
         String smtpPort,
         String subject,
         String body,
         String fileAttachment,
         String attachmentMimeType,
         String username,
         String password,
         String debug)
    throws Exception
         // create some properties and get the default Session
         Properties props = new Properties();
         props.put("mail.smtp.host", host);
         props.put("mail.smtp.port", smtpPort);
         props.put("mail.smtp.timeout","5000");
         props.put("mail.debug", debug);
         Session session = null;
         if (username != null && password != null)
              props.put("mail.smtp.auth", "true");
              MyPasswordAuthenticator auth = new MyPasswordAuthenticator(username, password);
              session = Session.getDefaultInstance(props,auth);
         else
              session = Session.getDefaultInstance(props, null);
         //session.setDebug(true);
         // create a message
         MimeMessage message = new MimeMessage(session);
         message.setFrom(new InternetAddress(from));
         InternetAddress[] address = InternetAddress.parse(to, false);
         message.setRecipients(Message.RecipientType.TO, address);
         message.setSubject(subject);
         message.setSentDate(new Date());
         // create the message part
         if ( fileAttachment != null && fileAttachment != "NO" )
              MimeBodyPart messageBodyPart = new MimeBodyPart();
              //fill message
              messageBodyPart.setText(body);
              //Multipart multipart = new MimeMultipart();
              Multipart multipart = new MimeMultipart("alternative");
              multipart.addBodyPart(messageBodyPart);
              // Part two is attachment
              System.out.println("----->fileAttachment DISTINTO de NULL");
              messageBodyPart = new MimeBodyPart();
              FileDataSource fds = new FileDataSource(fileAttachment);
              messageBodyPart.setDataHandler( new DataHandler(fds));
              messageBodyPart.setFileName(fileAttachment); //<-- El archivo atachado.
              multipart.addBodyPart(messageBodyPart);
              //EN DESARROLLO el envio de attachment!!          
              // Put parts in message
              message.setContent(multipart);
         } else { //Envio es solamente TEXTO
              message.setText(body);
         // send the message
         Transport.send(message);
    Regards,
    Vladimir

  • Bypassing SOA MANAGER , Consume a stateless Webservice and send Zip file

    Hello,
    I have question around consuming web service via ABAP program.The scenario is consume a operation of a web-service and get the information, based on this information put the data in flat files and send it back in another operation of this web-service. Due to way web-service is implemented I cannot generate proxy class and use SOA manager the reason is web-service is using complex data type
    1) Is it possible to consume a web-service via ABAP program directly
    I have explored the SAP documentation and came up with this link
    Appendix C - SOAP Runtime for the SAP Web AS - SAP Library
    Few  Links I found are
    Manual HTTP POST from ABAP
    WebService 4.7 / WAS 620 XSTRING BASE 64
    Using any of the above approaches can  SAP program consume a web-service bypassing the SOA manager & send the zipped files in one of the operations.
    Thank you

    Appreciate if some one can answer the question above

  • Cannot send .zip file

    So I'm trying something for Minecraft and I need to send a file that is .zip
    I tried to email it to my gmail but here's what it says
    Unable to Send Email
    A copy has been placed in your outbox. No password provided.
    Please go to Mail Account Settings and enter a password.
    What do I do? I already entered my password but it still doesn't send and keeps popping up the message above.
    Please help me, I'd really appreciate it (by the way I have an iPhone 5c)
    -SnowfurandThistleclaw

    Since no one has an answer does anyone know where I can find iTunes File Sharing on my PC (computer)?

  • Sending Zip files

    I have created a project, then while still on the ipad
    clicked the share option, selected email.
    Read email pop up explanation, one tapped the project i wish to email
    Tapped email.
    Email client loads. Tap in address but the Zip file never loads or never completes, so the
    Mail app 'send' button is never 'good to go'. It's a small file 229kb

    Can you give us more information?
    Information about your iPad, if you can share the problematic project in Creative Cloud, can you share with us?
    Thanks,
    Takashi

  • Sending zip file(or folder ) from desktop to email attachment

    Dear all
    I hvae 11 files on my desktop of differnt file type like doc, pdf, xls ...
    By using GUI_UPLOAD, i am able to upload one file at a time
    Is there any way to upload zip file at once OR folder containing all the files at a single go  OR all the files can be uploaded in a single program.
    Is there any class, function module to upload zip file. I am aware of cl_abap_zip but not able to use it.
    Ravi
    Edited by: ravihsr on Mar 24, 2011 3:05 AM
    Edited by: ravihsr on Mar 24, 2011 3:14 AM

    Hi
    This the code:
    REPORT  Z263_EMAIL.
    data: T_MAIL_PACK TYPE TABLE OF SOPCKLSTI1,
          T_MAIL_HEAD TYPE TABLE OF SOLISTI1,
          T_MAIL_REC TYPE TABLE OF SOMLRECI1,
          MAIL_HEAD TYPE SODOCCHGI1,
          T_MAILTXT TYPE TABLE OF SOLISTI1,
          WA_MAIL_PACK TYPE SOPCKLSTI1,
          WA_MAIL_HEAD TYPE SOLISTI1,
          WA_MAIL_REC TYPE  SOMLRECI1,
          WA_MAILTXT TYPE SOLISTI1,
          TAB_LINES TYPE I.
    *FILLING HEADER
    MAIL_HEAD-OBJ_NAME  = 'NEW MAIL TO BE SENT'.
    MAIL_HEAD-OBJ_DESCR = 'SUBJECT FOR MAIL'.
    WA_MAILTXT-LINE = 'MAIL OUTPUT'.
    APPEND WA_MAILTXT TO T_MAILTXT.
    WA_MAIL_REC-RECEIVER = '******@****.COM'. "email-id
    WA_MAIL_REC-REC_TYPE = 'U'.
    APPEND WA_MAIL_REC TO T_MAIL_REC.
    DESCRIBE TABLE T_MAILTXT LINES TAB_LINES.
    CLEAR WA_MAIL_PACK-TRANSF_BIN.
    WA_MAIL_PACK-HEAD_START = 1.
    WA_MAIL_PACK-HEAD_NUM = 0.
    WA_MAIL_PACK-BODY_START = 1.
    WA_MAIL_PACK-BODY_NUM = TAB_LINES.
    WA_MAIL_PACK-DOC_TYPE = 'RAW'.
    WA_MAIL_PACK-OBJ_NAME = 'C:\Documents and Settings\rmalhotra\Desktop\NEW.RAR'.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    WA_MAIL_PACK-TRANSF_BIN = 'X'.
    WA_MAIL_PACK-HEAD_START = 1.
    WA_MAIL_PACK-HEAD_NUM = 1.
    WA_MAIL_PACK-BODY_START = 1.
    WA_MAIL_PACK-BODY_NUM = TAB_LINES.
    WA_MAIL_PACK-DOC_TYPE = 'XLS'.
    WA_MAIL_PACK-OBJ_NAME = 'C:\Documents and Settings\rmalhotra\Desktop\a1.xls'.
    WA_MAIL_PACK-OBJ_DESCR = 'ORDERS'.
    *WA_MAIL_PACK-DOC_SIZE = TAB_LINES * 128.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    DESCRIBE TABLE gv_objbin LINES tab_lines.
    WA_MAIL_PACK-transf_bin = 'X'.
    WA_MAIL_PACK-head_start = 1.
    WA_MAIL_PACK-head_num = 1.
    WA_MAIL_PACK-body_start = 1.
    WA_MAIL_PACK-body_num = tab_lines.
    WA_MAIL_PACK-doc_type = 'PDF'.
    WA_MAIL_PACK-obj_name = 'C:\Documents and Settings\rmalhotra\Desktop\RAGHAV_SMARTFORM.pdf'.
    *WA_MAIL_PACK-doc_size = tab_lines * 255.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    WA_MAIL_PACK-transf_bin = 'X'.
    WA_MAIL_PACK-head_start = 1.
    WA_MAIL_PACK-head_num = 1.
    WA_MAIL_PACK-body_start = 1.
    WA_MAIL_PACK-body_num = tab_lines.
    WA_MAIL_PACK-doc_type = 'TXT'.
    WA_MAIL_PACK-obj_name = 'C:\Documents and Settings\rmalhotra\Desktop\VOTES.TXT'.
    *WA_MAIL_PACK-doc_size = tab_lines * 255.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    WA_MAIL_PACK-transf_bin = 'X'.
    WA_MAIL_PACK-head_start = 1.
    WA_MAIL_PACK-head_num = 1.
    WA_MAIL_PACK-body_start = 1.
    WA_MAIL_PACK-body_num = tab_lines.
    WA_MAIL_PACK-doc_type = 'DOC'.
    WA_MAIL_PACK-obj_name = 'C:\Documents and Settings\rmalhotra\Desktop\TS-MRO-47- Warranty Claim Creation v1.0.doc'.
    *WA_MAIL_PACK-doc_size = tab_lines * 255.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        DOCUMENT_DATA                    = MAIL_HEAD
      PUT_IN_OUTBOX                    = ' '
       COMMIT_WORK                      = 'X'
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
      TABLES
        PACKING_LIST                     = T_MAIL_PACK
      OBJECT_HEADER                    =
      CONTENTS_BIN                     =
       CONTENTS_TXT                     = T_MAILTXT
      CONTENTS_HEX                     =
      OBJECT_PARA                      =
      OBJECT_PARB                      =
        RECEIVERS                        = T_MAIL_REC
    EXCEPTIONS
       TOO_MANY_RECEIVERS               = 1
       DOCUMENT_NOT_SENT                = 2
       DOCUMENT_TYPE_NOT_EXIST          = 3
       OPERATION_NO_AUTHORIZATION       = 4
       PARAMETER_ERROR                  = 5
       X_ERROR                          = 6
       ENQUEUE_ERROR                    = 7
       OTHERS                           = 8
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    SUBMIT RSCONN01.
    Regards
    Raghav Malhotra

  • Information Broadcaster- Fales to send ZIP files reports.

    Hi everybody,
    I schedualed a total of 60 daily sales reports to be sent as ZIP files to varius addresses. the problem is that every day a few of them (1-8) are received but without the ZIP file report and attached to the mail is a txt file with the following message:
    "Symantec Mail Security replaced ZSD_SALES_WS_DR_CAP_TM_VERSION.ZIP with this text message.  The original file was unscannable and was quarantined.
    ID:NODE02::SYQ7d88c154   "
    i don't what is the reason does anybody have a clue?!?!?

    I'm not suggesting there is anything wrong with the files. Symantec is examing the files and based on it's various examinations of the file, is indicating it can not/will not pass them along.  Again - this seems like an issue to pursue with whoever administers your email scanning software.  Don't believe this is a BW issue.
    Perhaps they can configure Symantec not to scan e-mail attachments from the BW server

  • Sending Video file over Sockets

    I m trying to play song on server machine as well as on client machine
    so any one can help me in this regard.

    I m trying to play song on server machine as well as
    on client machineYou could try filling a number of server with varying levels of water and then tapping the sides though to be honest there exist a vast number of musical instruments that will perform this function. Try a piano.
    so any one can help me in this regard.I suspect specification is not your strong point!
    Try asking a more specific question relating to your problem.

  • Problem in sending file thru sockets

    Hello
    i am sending a file thru sockets....the file reaches the server but there is loss of file contents. i do not recieve the entire file. whats wrong?
    my Server code
    //package socket_try ;
    // SimpleServer.java: a simple server program
    import java.net.*;
    import java.io.*;
    import javax.comm.*;
    import java.util.*;
    public class Server
    public static final int BUFFER_SIZE = 1024 * 50;
    static CommPortIdentifier portId;
    static Enumeration portList;
    SerialPort serialPort;
    Thread readThread;
    public static void main(String[] ar)
    byte[] buffer;
    buffer = new byte[BUFFER_SIZE];
    int port = 6666; // just a random port. make sure you enter something between 1025 and 65535.
    boolean portFound;
    try
    ServerSocket ss = new ServerSocket(port); // create a server socket and bind it to the above port number.
    System.out.println("Waiting for a client...");
    Socket socket = ss.accept(); // make the server listen for a connection, and let you know when it gets one.
    System.out.println("Got a client :) ... Finally, someone saw me through all the cover!");
    System.out.println();
    BufferedInputStream bin = new BufferedInputStream(socket.getInputStream());
    BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("c:\\SMS.txt"));
    int in;
    try
    int len = 0;
              while ((len = bin.read(buffer)) > 0) {
                   bos.write(buffer, 0, len);
                   System.out.print("#");
              bin.close();
              bos.flush();
              bos.close();
              socket.close();
    ss.close();
    catch(Exception x)
    x.printStackTrace();
    catch(Exception e)
    System.out.println("Exception : "+e);
    my client code
    import java.net.*;
    import java.io.*;
    public class Client
    public static final int BUFFER_SIZE = 1024 * 50;
    public static void main(String[] ar)
    int serverPort = 6666; // make sure you give the port number on which the server is listening.
    String address = "192.168.1.3"; // this is the IP address of the server program's computer. // the address given here means "the same computer
    as the client".
    int in=0;
    byte[] byteArray;
    byte[] buffer;
    buffer = new byte[BUFFER_SIZE];
    try
    InetAddress ipAddress = InetAddress.getByName(address); // create an object that represents the above IP address.
    System.out.println("Any of you heard of a socket with IP address " + address + " and port " + serverPort + "?");
    Socket socket = new Socket(ipAddress, serverPort); // create a socket with the server's IP address and server's port.
    System.out.println("Yes! I just got hold of the program.");
    // Get the input and output streams of the socket, so that you can receive and send data to the client.
    // Just converting them to different streams, so that string handling becomes easier.
    BufferedInputStream bis;
    BufferedOutputStream bos;
    bis = new BufferedInputStream(new FileInputStream("c:\\send.txt"));
    bos = new BufferedOutputStream(socket.getOutputStream());
    byte[] receivedData;
    int len = 0;
    while ((len = bis.read(buffer)) > 0)
    bos.write(buffer, 0, len);
    System.out.print("#");
         for(int y =0 ; y < buffer.length ; y++)
    char s =(char) buffer[y];
    System.out.println("character:"+s);
    bis.close();
    bos.flush();
    bos.close();
    socket.close();
    System.out.println("\nDone!");
    catch(Exception x)
    x.printStackTrace();
    } /* end of main */
    }/* end of class */
    what is wrong can please anyone tell me??????

    As I don't know how long a record is, that's not a very useful answer. How many bytes are you expecting and how many do you actually get?

  • Suddenly unable to send a Zip file

    Hi there
    I am having a problem sending zip files. It has been working fine before but recently it has not been posible. I always send to the same person, who has been receiving without problems before. The zipped file is 5,2 mb and generated in windows via WMWare Fusion 5. I have no problems if I use Gmail, but in Macmail it is not working.
    Any good ideas?

    So what is happening is the mail app can't connect to the gmail smtp server to send the email. This seems to be a fairly common problem with the built in mail program. One minute it works, can send emails, the next it can't find the smtp server for various email providers like gmail or yahoo or suggests the password is incorrect even though you haven't changed anything.
    From what I read on these forums about the only way to correct this is to complete remove the account for the mail program then recreate it. Make sure you remove all smtp entries for that account also.
    Maybe you should try a different email program that doesn't have these constant glitches that pop up from nowhere.

  • Error while posting .ZIP file

    Hi All,
    I am working on file to file scenario.. I want to post .zip file from source to target. I am not using any mapping for this... I m using the Integrated configuration for theis scenario.. We are using sFTP advantco adapter for both sender and receiver.
    I am able to post the .zip file with size 50KB only.
    If i send .zip file with more than 50KB size, sender channel picked the file but i am getting the below error in the receiver communication channel.
    Error: Cannot write content to remote file XXXX: Possible causes: SFTP connection is broken or remote file/directory is in use: java.lang.ArrayIndexOutOfBoundsException:  (Software version: 3.0.17)
    How to transfer .zip files with more than 50KB size.
    Thanks,
    Soumya.

    Hi Soumya,
    I see no reason to use sFTP or  advantco for this.
    you can config this scenario using PI regular File adapter, and PI regular File to File scenario.
    in your case you just create an empty DT without fields in Repository, you need to create interfaces (OB,IB) for the Configuration
    this works for me in many scenarios.

  • Zip files of TBIT44

    Hi All
    can anybody can send zip files of TBIT44.
    my mail id is: [email protected]
    thanks
    N.P.BABU

    Hi Prasad Babu,
    TBIT44 is SAP's Traning class and is offered at SAP's training facilities worldwide.
    The Training material in part or full is SAP's property and is not meant for distribution.
    Rgds,
    Sam Raju

  • Send a picture file using sockets

    Hi,
    Could someone please tell me how I can send a picture file using sockets across a TCP/IP network? I have managed to do it by converting the file into a byte array and then sending it but I dont see the data back at the client when I recieve the file. I just see the byte array as having size 0 at client.
    Byte array size is correct at client side.
    //client code
    System.out.println("Authenticating client");
              localServer = InetAddress.getLocalHost();
              AuthConnection = new Socket(localServer,8189);
              out = new PrintWriter(AuthConnection.getOutputStream());
              InputStream is = AuthConnection.getInputStream();
              System.out.println(is.available());
              byte[] store = new byte[is.available()];
              is.read(store);
         ImageIcon image = new ImageIcon(store);
              JLabel background = new JLabel(image);
              background.setBounds(0, 0, image.getIconWidth(), image.getIconHeight());
              getLayeredPane().add(background, new Integer(Integer.MIN_VALUE));
    //extra code here
              catch (UnknownHostException e) {
    System.err.println("Don't know about host: LocalHost");
    System.exit(1);
              catch (IOException e) {
    System.err.println("Couldn't get I/O for "
    + "the connection to: LocalHost");
    System.exit(1);
    //server code
                   DataOutputStream out = new DataOutputStream(incoming.getOutputStream());
                   FileInputStream fin = new FileInputStream("3trees.gif");
                   byte[] b = new byte[fin.available()];
                   int ret = fin.read(b);
                   out.write(b);

    i used OutputStream as
    OutputStream out = incoming.getOutputStream(); and flushed the stream too.
    But I still get the same output on the client side. I tried sending a string and it works , but I cant seem to be able to populate the byte array on the client side. It keeps showing zero. Please advise.
    Thank you.

Maybe you are looking for

  • Loops not working

    Is there a setup to enable all the loops as they dont work initially

  • How do I set up an account to receive email from my SMTP relay Server. Have I made a SMTP Server config error?

    Hi, How do I set up an account to receive email from my SMTP Relay Server? I've setup the SMTP feature and set my Server to use anonymous authentication. Things appear to look ok. But I can't connect make a test connection to it when I am trying to a

  • Com.sapportals.wcm.WcmException:TREX Name Server Error

    Hi, I have developed a Customised Search Iview using the STD KM Search Iview But I getting the following error while I input a search criteria and click on the Search Button : "Error during search occurred - com.sapportals.wcm.WcmException: TREX Name

  • Search help icon in table

    Hi,    While using OVS(Object value selector) search help or any other search help in table column, We are not finding the f4 help icon in the table column. Is there any method to get the f4 help icon? Regards M.Karthiheyan

  • Music On Hold on working on a cluster

    Hi Everyone,                   We recently added a Subscriber in a cluster and the subscriber is in a remote location. All the operations are working as usual except for Music on Hold feature.      If the remote phone registered to the remote subscri