UdpSocket on Applet receives only 1 byte in vm 1.3.1_15. All works on 1.4.2

Friends I am having a problem that might be easy to solve but I don't seem to find the solution:
I made an applet that listens udp xml transmissions, very basic, nothing fancy. I made it with jdk 1.4.2 it allways worked fine. Yesterday I tried to make it work on clients with JRE 1.3.1 on their machines, so I compiled a new version of the same applet with the jdk 1.3.1_15 and it worked perfectly. But when I tested it on a client that had only the JRE 1.3.1_15 I found out that the applet, o better yet, the UdpSocket receives only one single byte. Actually de '<' char from the begining of xml.
This is the code that listens and the same code works fine with VM 1.4.2:
BEFORE IS THE INITIALIZATION CODE FOR THE SOCKET:
private static final int DEFAULT_BUFFER=32768;
DatagramPacket packet=new DatagramPacket(buf, buf.length);
packet.setLength(this.DEFAULT_BUFFER);
this.mSocket=new DatagramSocket(this.mPort, localAddress);
this.mSocket.setReceiveBufferSize(this.DEFAULT_BUFFER);NOW THE LISTENING CODE:
if(this.mDebug)
  System.out.println("Buffer["+this.mSocket.getReceiveBufferSize()+"].");
//Receive data
this.mSocket.receive(packet);
byte[] data=new byte[packet.getLength()];
//output debug info
if(this.mDebug)
System.out.println("Packet [len="+ packet.getLength() +"].");
//copy data into a new array
System.arraycopy(packet.getData(), 0, data, 0, data.length);
//notify data arrival
this.notifyDataArrival(data);SUMMARY:
Originally built on vm 1.4.2 the applet now compiled on 1.3.1 jdk, only works fine in vm's 1.4.2 and not in the 1.3.1 where it only receives a single byte per mSocket.receive(packet) call.
Please helpme out.
Thanks in advance,
Frank

(a) Set the packet length to the actual length of the array, and no longer.
(b) Reset it to this length before every receive, otherwise the DatagramPacket will shrink to the size of the smallest datagram received so far.

Similar Messages

  • How can I set up a "receive only" email account in Outlook 2010

    I have an Outlook 2010 email account that receives emails from a "Fax-to email" service, and I'd like to make that accout "Receive Only".  Is it possible to do that, and if so, how.
    Capt. Dinosaur

    Hi
    As per the information and details provided by you, to set up a
    “Receive Only”email account in Outlook 2010, please follow these steps: -
    You have a few options available to you. You can set up the account with
    a fake SMTP server name and configure the Send/Receive group to not send mail from this account, or you can use a different, valid account for the Outgoing server, just in case you accidentally use the wrong account when you compose a message.
    First, create the account in Outlook: -
    Fill the name and address fields with the desired information. Select
    POP3 account type and enter the incoming server name.
    In the Outgoing server field, type
    nomail.
    Enter the correct username and password for the incoming mail account.
    If you want to verify the incoming server is correctly configured, click on
    Test Account Settings, and then choose the dialog after the incoming server is verified.
    Deselect the option to
    Automatically test account settings when the Next is clicked.
    Click on the
    Finish to return to Outlook.
    Because Outlook will error on every manual send and receive when it can not find the outgoing server error, you need to change the
    Send and Receive Settings for this account.
    Press
    Ctrl+Alt+A to open the Send/Receive Settings dialog. (or you can go to
    Send/Receive tab, Send/Receive Groups and select Define Send/Receive Groups.
    Click the
    Edit button.
    Select the receive-only account, then deselect
    Send Mail Items.
    Click on the
    OK, then Close to return to Outlook.
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G

  • Applet/servlet communication for byte transmission

    Hello all !
    I wrote an applet to transfer binary file from web servlet (running under Tomcat 5.5) to a client (it's a signed applet) but I have a problem of interpretation of byte during transmission.
    the code of the servlet is :
            response.setContentType("application/octet-stream");
            ServletOutputStream sos = response.getOutputStream();
            FileInputStream fis = new FileInputStream(new File(
                    "C:\\WINDOWS\\system32\\setup.bmp"));
            byte[] b = new byte[1024];
            int nbRead = 1;
            while (nbRead > 0) {
                nbRead = fis.read(b);
                System.out.println("octets lus = " + nbRead);
                sos.write(b, 0, nbRead-1);
            fis.close();
            sos.close();et le code de l'applet qui appelle cette servlet est :
            URL selicPortal = null;
            try {
                selicPortal = new URL(
                        "http://localhost:8080/AppletTest/servlet/FileManipulation");
            } catch (MalformedURLException e) {
                e.printStackTrace();
            URLConnection selicConnection = null;
            try {
                selicConnection = selicPortal.openConnection();
            } catch (IOException e) {
                e.printStackTrace();
            selicConnection.setDoInput(true);
            selicConnection.setDoOutput(true);
            selicConnection.setUseCaches(false);
            selicConnection.setRequestProperty("Content-Type",
                    "application/octet-stream");
            try {
                InputStream in = selicConnection.getInputStream();
                FileOutputStream fos = new FileOutputStream(new File(tempDir
                        + "\\toto.bmp"));
                byte[] b = new byte[1024];
                int nbRead = in.read(b);
                while (nbRead > 0) {
                    fos.write(b);
                in.close();
                fos.close();
             } catch (IOException ioe) {
                ioe.printStackTrace();
            }the file dowloaded is broken. it seems that bytes 01 00 or 00 01 are not correctly process.
    Some ideas to help me please ?

    hi,
    have you solved this issue.. please post me the code since i m also doing the applet/servlet communication and can use your code as reference.
    how to read the content placed in the urlConnection stream in the servlet
    Below is my code in applet
    public void upload(byte[] imageByte)
              URL uploadURL=null;
              try
                   uploadURL=new URL("<url>");
                   URLConnection urlConnection=uploadURL.openConnection();
                   urlConnection.setDoInput(true);
                   urlConnection.setDoOutput(true);
                   urlConnection.setUseCaches(false);
                   urlConnection.setRequestProperty("Content-type","application/octet-stream");
                   urlConnection.setRequestProperty("Content-length",""+imageByte.length);
                   OutputStream outStream=urlConnection.getOutputStream();
                   outStream.write(imageByte);
                   outStream.close();
              catch(MalformedURLException ex)
              catch(IOException ex)
    How can i read the byte sent on the outstream (in above code) in the servlet.
    Thanks,
    Mclaren

  • Exception during receive an array bytes from servlet

    Hi! I have some problem with receive my array bytes. When I want to recive my array bytes at application site from servlet, I have an exception java.io.ObjectInputStream$PeekInputStream.readFully(Unknown Source) near ObjectInputStream. I don't know what it's make. All looks good. Strings send I recive without any problems. Problem is with array bytes.
    URL url = new URL("http://127.0.0.1/App/servlet/Serwlet");
             URLConnection connect = url.openConnection();
            connect.setUseCaches(false);
             connect.setDefaultUseCaches(false);
             connect.setDoOutput(true);
         connect.setDoInput(true);    
    connect.setRequestProperty("Content-Type","application/x-java-serialized-object");
    ObjectOutputStream out = new sdfgObjectOutputStream(connect.getOutputStream());
              out.writeObject(arrayBytes);
              out.flush();
              out.close();
    //Here during debug is an exception
    ObjectInputStream in = new ObjectInputStream(connect.getInputStream());
              byte[] tmp = (byte[])in.readObject();
              in.close();
    System.out.println("Send array: "+arrayBytes);    
    System.out.println("Receive array: "+tmp);
    Servlet site :
    ObjectInputStream in = new ObjectInputStream(request.getInputStream());
                   byte[] tmp = (byte[])in.readObject();
                   in.close();
    response.setContentType("application/octet-stream");
                   ObjectOutputStream out = new ObjectOutputStream(response.getOutputStream());
                   out.writeObject(tmp);
                   out.flush();
                   out.close();Any ideas? :]

    All this exception looks that :
    java.io.EOFException
         at java.io.ObjectInputStream$PeekInputStream.readFully(Unknown Source)
         at java.io.ObjectInputStream$BlockDataInputStream.readShort(Unknown Source)
         at java.io.ObjectInputStream.readStreamHeader(Unknown Source)
         at java.io.ObjectInputStream.<init>(Unknown Source)
         at Klient.OdbiorcaButton.polaczenie(OdbiorcaButton.java:151)
         at Klient.OdbiorcaButton.actionPerformed(OdbiorcaButton.java:124)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)

  • Problem sending only one byte with ibwrt()

    If I send only one byte of data with ibwrt() command, it doesn't work with whatever settings (EOS,EOI,..) I chose. I got the error (ENOL : no listener).
    Did somebody get the same problem ?

    ENOL indicates that there is no listener on the bus. This is probably not related to the settings on the controller. Are you correctly addressing a device to be a listener? If so, is there some indication on the device that it is addressed to listen?
    Also, your post seems to indicate that sending more than one byte works. Is this true?

  • SOA service receives only part of the payload posted

    Hi all,
    Our SOA architecture consists of SOA and OSB. The external system hits the SOA service via OSB with the large payload of size around 12 MB.
    The issue is that the external system posted a payload of 9 MB and received only 5 MB of it.The external system also received success response for the posted payload.But we received incomplete payload.
    I think the issue must be because of the large size of the payload.
    If I am not wrong, there should be some configuration settings that we have missed out.
    Kindly advice.
    Regards,
    Goutam

    What phone do you have, and your husband have?
    How long (in characters) is the message that gets trucated?
    If you add an emoji or photo attachment (which forces the message to be sent via MMS) does it still happen?
     

  • JDBC to Lotus Notes, only 255 bytes be read for each field. Any clue?

    Hi,
    I am programming with JDBC to Lotus Notes. I can extract data from .nsf files but for each field, only 255 bytes can be read, all the rest got truncated. I ran the ResultSetMetaData.DisplayColumnSize(), it returns 255.
    What is the problem? How can I extract larger strings (such as 700 bytes)? I tried bloc data type, it doesn't help.
    In the API docs, there is a RowSetMetaData that has a SetColumnSize() method, but I can not find an implemented package of it, also not sure it will work. Any suggestion will be deeply appreciated!
    Thanks!
    William

    You must declare the filed Rich Text, not Only Text, because the Method GetString only get 255... although your filed have more caracters...
    If you declare rich Text you must use tgetAsciiStream Method...
    suppose the filed 2 is Rich Text...
                 byte[] buffer = new byte[4096];
                 int size;
                 InputStream strin = rs.getAsciiStream(2);
                 if(strin == null){
                    System.out.println("notas es null\n");
                 else {
                    for(;;){
                        try {
                        size = strin.read(buffer);
                        if(size <= 0){
                           break;
                        System.out.print(new String(buffer,0,size));
                        } catch (java.io.IOException e){
                           e.printStackTrace();

  • Smart Script Player Applet (Player Only) Problem ...

    Hi all!
    We are trying to make our SmartScript opens automatically when a user navigates to a particular view. We followed the following steps:
    * Using Siebel tools:
    1) Create a new view.
    2) Add "Smart Script Player Applet (Player Only)" to it.
    3) Add the view to an existed screen and other needed steps.
    * Using Siebel web client:
    1) Associate the view with the Smartscript.
    When we tried to invoke it, we couldn't see the questions :S and when we pressed "Finish" a message appeared indicating that there are a required fields that must be answered before.
    Taking into considerations that when invoking the smartscript from the user interface it works correctly!
    Can anyone help us of how to recognize the error?
    Thanks in advance.
    Kind regards,
    Tamara.
    Edited by: 952870 on Aug 27, 2012 7:36 AM

    Hi Tamara,
    You seem to have followed the steps as per bookshelf:
    http://docs.oracle.com/cd/E16348_01/books/SmartScript/SmartScriptExeTestSS6.html#wp1008662
    I guess you have added the new view to the user's responsibility etc?
    I sometimes add a list applet to the same view just to test that the view is working and renders correctly. This just rules out any SS player issues
    Thanks
    Andy

  • BGP received-only Question

    Hi
    From what I understand in the show ip bgp x.x.x.x/x output the received-only would be present when soft-reconfiguration inbound is configured and the route has been rejected by a policy i.e. a route map
    What i have also found is that on many outputs i can see the exact same route in the output twice, one which has the received-only keyword and one doesn't.
    Now for a specified neighbor we have a route map configured inbound which will change the weight based on the community value. It seems as though when a route map is configured and an attribute is changed that route appears in the output twice, one being modified and one which is unchanged. But this contradicts what is said on the Cisco website its states 'the received-only keyword will only show up if the route is denied by a policy', but its not.. it's just changed.
    Has anyone had this discussion before? I would like to hear people's thoughts on the matter.
    Thanks
    Andre
    corerouter#show ip bgp | b 10.141.54.0
    * 10.141.54.0/23 10.199.10.18 0 64000 34406 65502 ?
    *> 10.199.10.18 0 64000 34406 65502 ?
    corerouter#sho ip bgp 10.141.54.0/23
    BGP routing table entry for 10.141.54.0/23, version 1219279
    Paths: (4 available, best #3, table Default-IP-Routing-Table)
    Advertised to update-groups:
    2 3 4 5 6 7
    34406 65502
    10.199.10.18 from 10.199.10.20 (82.196.60.60)
    Origin incomplete, metric 0, localpref 100, weight 64000, valid, external
    Community: 10199111
    34406 65502, (received-only)
    10.199.10.18 from 10.199.10.20 (82.196.60.60)
    Origin incomplete, metric 0, localpref 100, valid, external
    Community: 10199111
    34406 65502
    10.199.10.18 from 10.199.10.19 (82.196.60.1)
    Origin incomplete, metric 0, localpref 100, weight 64000, valid, external, best
    Community: 10199111
    34406 65502, (received-only)
    10.199.10.18 from 10.199.10.19 (82.196.60.1)
    Origin incomplete, metric 0, localpref 100, valid, external
    Community: 10199111

    show ip bgp neighbor x.x.x.x received-routes
    show ip bgp neighbor x.x.x.x routes
    sho ip bgp a.b.c.d
    If you found this page, like I did, while searching for "received-only" - that means that the route has only been received, but not entered in the routing table. This is good if you meant to block that route.  But if that route is actually also installed in the routing table and you meant to block it, check your route-map, specifically your prefix-lists and you will likely find that you have an error with wither the IP address or the CIDR mask, resulting in a non-match condition. The inverse is also true if you intend to allow a route but you only see the "received-only" route, you probably have a typo in your route-map or prefix list.  Below are some examples that might help.
    Here are some BGP with route-map and prefix-list examples, although the data is not meaningful. 
    router bgp 1234
      neighbor CARRIER1 peer-group
      neighbor CARRIER1 route-map PROVIDER1-IN in
      neighbor 6.7.8.9 peer group CARRIER1
    route-map PROVIDER1-IN deny 5
      match ip address prefix-list MyIPs
    route-map PROVIDER1-IN permit 10
      match ip address prefix-list GOOG APPL
    ip prefix-list GOOG seq 5 permit 8.8.8.0/24 le 32
    ip prefix-list GOOG seq 10 permit 8.8.4.4/32
    ip prefix-list APPL seq 5 per 17.142.160.59/32
    ip prefix-list APPL seq 10 per 17.178.96.0/24 le 32
    ip prefix-list MyIPs seq 5 per 1.2.0.0/16 le 24
    ip prefix-list MyIPs seq 10 per 2.3.4.0/24 le 32
    ip prefix-list MyIPs seq 15 per 4.5.6.7/32

  • My account sending hidden SPAM e-mails, i receive only mail delivery failure for e-mails that i didn't send

    My account sending SPAM e-mails but i can't find it in sent folder, i receive only undelivered message response for messages which i didn't send and problem is not on provider server i checked it out.
    Examples of server response:
    This message was created automatically by mail delivery software.
    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:
    [email protected]
    SMTP error from remote mail server after end of data:
    host mx1.optonline.net [167.206.4.77]: 554 5.7.1 Spam detected by Cloudmark content scanner. Message rejected.
    ------ This is a copy of the message, including all the headers. ------
    Return-path: <[email protected]>
    Received: from [181.64.16.205] (helo=kiwqdljpf)
    by smtp2.neobee.net with esmtpa (Exim 4.74)
    (envelope-from <[email protected]>)
    id 1WPiCY-0004IY-2G
    for [email protected]; Tue, 18 Mar 2014 01:48:20 +0100
    Subject: FirmViagra
    Date: Mon, 17 Mar 2014 18:41:36 -0700
    To: <[email protected]>
    From: "Sleb Icap" <[email protected]>
    Mime-Version: 1.0
    Content-Type: text/plain; charset=utf-7
    X-Spam-Score: 1.2 (+)
    X-Scan-Signature: 05e778587fdac215ad5fe7047e8f78ed
    http://holzstark.at/opportune.htm?la
    This message was created automatically by mail delivery software.
    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:
    [email protected]
    SMTP error from remote mail server after RCPT TO:<[email protected]>:
    host mx.coxmail.com [68.99.120.4]: 550 5.1.1 <[email protected]> recipient rejected
    ------ This is a copy of the message, including all the headers. ------
    Return-path: <[email protected]>
    Received: from [181.64.16.205] (helo=kiwqdljpf)
    by smtp2.neobee.net with esmtpa (Exim 4.74)
    (envelope-from <[email protected]>)
    id 1WPiCk-0004IY-B6
    for [email protected]; Tue, 18 Mar 2014 01:48:32 +0100
    Subject: SweetDrugs
    Date: Mon, 17 Mar 2014 18:41:48 -0700
    To: <[email protected]>
    From: [email protected]
    Mime-Version: 1.0
    Content-Type: text/plain; charset=utf-8
    X-Spam-Score: 2.3 (++)
    X-Scan-Signature: 05e778587fdac215ad5fe7047e8f78ed
    http://selapak-cambodia.com/chic.html?zogyzeno
    My configuration of Thunderbird is:
    Application Basics
    Name Thunderbird
    Version 24.3.0
    User Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0
    Profile Folder
    Show Folder
    (Local drive)
    Application Build ID 20140131124303
    Enabled Plugins about:plugins
    Build Configuration about:buildconfig
    Crash Reports about:crashes
    Memory Use about:memory
    Mail and News Accounts
    ID Incoming server Outgoing servers
    Name Connection security Authentication method Name Connection security Authentication method Default?
    account1 (pop3) pop3.neobee.net:110 plain passwordCleartext smtp.neobee.net:25 alwaysSTARTTLS passwordCleartext true
    account2 (none) Local Folders plain passwordCleartext
    account3 (pop3) pop.mail.yahoo.com:995 SSL passwordCleartext smtp.mail.yahoo.com:465 SSL passwordCleartext true
    account4 (pop3) pop.mail.yahoo.com:995 SSL passwordCleartext smtp.mail.yahoo.com:465 SSL passwordCleartext true
    account5 (pop3) pop.mail.yahoo.com:995 SSL passwordCleartext smtp.mail.yahoo.com:465 SSL passwordCleartext true
    Extensions
    Name Version Enabled ID
    Test Pilot for Thunderbird 1.3.9 false [email protected]
    Important Modified Preferences
    Name Value
    browser.cache.disk.capacity 358400
    browser.cache.disk.smart_size.first_run false
    browser.cache.disk.smart_size.use_old_max false
    browser.cache.disk.smart_size_cached_value 358400
    dom.max_chrome_script_run_time 0
    extensions.lastAppVersion 24.3.0
    font.internaluseonly.changed true
    font.name.monospace.el Consolas
    font.name.monospace.tr Consolas
    font.name.monospace.x-baltic Consolas
    font.name.monospace.x-central-euro Consolas
    font.name.monospace.x-cyrillic Consolas
    font.name.monospace.x-unicode Consolas
    font.name.monospace.x-western Consolas
    font.name.sans-serif.el Calibri
    font.name.sans-serif.tr Calibri
    font.name.sans-serif.x-baltic Calibri
    font.name.sans-serif.x-central-euro Calibri
    font.name.sans-serif.x-cyrillic Calibri
    font.name.sans-serif.x-unicode Calibri
    font.name.sans-serif.x-western Calibri
    font.name.serif.el Cambria
    font.name.serif.tr Cambria
    font.name.serif.x-baltic Cambria
    font.name.serif.x-central-euro Cambria
    font.name.serif.x-cyrillic Cambria
    font.name.serif.x-unicode Cambria
    font.name.serif.x-western Cambria
    font.size.fixed.el 14
    font.size.fixed.tr 14
    font.size.fixed.x-baltic 14
    font.size.fixed.x-central-euro 14
    font.size.fixed.x-cyrillic 14
    font.size.fixed.x-unicode 14
    font.size.fixed.x-western 14
    font.size.variable.el 17
    font.size.variable.tr 17
    font.size.variable.x-baltic 17
    font.size.variable.x-central-euro 17
    font.size.variable.x-cyrillic 17
    font.size.variable.x-unicode 17
    font.size.variable.x-western 17
    mail.openMessageBehavior.version 1
    mail.winsearch.firstRunDone true
    mailnews.database.global.datastore.id d3f7cbbc-ff7c-49f8-8265-081ff16f23e
    network.cookie.prefsMigrated true
    places.database.lastMaintenance 1394703331
    places.history.expiration.transient_current_max_pages 104858
    plugin.importedState true
    plugin.state.flash 0
    plugin.state.java 0
    plugin.state.npauthz 0
    plugin.state.npbrowserplugin 0
    plugin.state.npctrl 0
    plugin.state.npdeployjava 0
    plugin.state.npgeplugin 0
    plugin.state.npgoogleupdate 0
    plugin.state.npnokiasuiteenabler 0
    plugin.state.nppdf 0
    plugin.state.npspwrap 0
    plugin.state.npvlc 0
    security.default_personal_cert Select Automatically
    security.disable_button.openCertManager false
    security.disable_button.openDeviceManager false
    security.OCSP.require true
    Graphics
    Adapter Description Intel(R) HD Graphics Family
    Vendor ID 0x8086
    Device ID 0x0116
    Adapter RAM Unknown
    Adapter Drivers igdumd64 igd10umd64 igd10umd64 igdumdx32 igd10umd32 igd10umd32
    Driver Version 8.15.10.2462
    Driver Date 7-26-2011
    Adapter Description (GPU #2) NVIDIA GeForce GT 630M
    Vendor ID (GPU #2) 0x10de
    Device ID (GPU #2) 0x0de9
    Adapter RAM (GPU #2) 2048
    Adapter Drivers (GPU #2) nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um
    Driver Version (GPU #2) 9.18.13.3165
    Driver Date (GPU #2) 10-23-2013
    Direct2D Enabled false
    DirectWrite Enabled false (6.2.9200.16571)
    ClearType Parameters ClearType parameters not found
    WebGL Renderer false
    GPU Accelerated Windows 0
    AzureCanvasBackend skia
    AzureFallbackCanvasBackend cairo
    AzureContentBackend none
    JavaScript
    Incremental GC 1
    Accessibility
    Activated 0
    Prevent Accessibility 0
    Library Versions
    Expected minimum version Version in use
    NSPR 4.10.2 4.10.2
    NSS 3.15.4 Basic ECC 3.15.4 Basic ECC
    NSS Util 3.15.4 3.15.4
    NSS SSL 3.15.4 Basic ECC 3.15.4 Basic ECC
    NSS S/MIME 3.15.4 Basic ECC 3.15.4 Basic ECC
    Please help me to solve this problem.

    By the way, some non-delivery receipts (NDRs) are themselves spam messages with malicious attachments designed to infect your computer, so be cautious about opening any of those.

  • HT1725 I purchased an episode of the tv show Hannibal. Attempted download. Said download was completed yet received only a 30 second trailer of the episode. Tried 4 times, used 5GB data and still don't have the episode on my iPad.

    I purchased an episode of the tv show Hannibal. Paid, downloaded to iPad but received only the 30 second trailer for that episode. Attempted 3 more times, used up 5GB of my monthly data allowance and still continued to get nothing but the trailer.

    Hello Pamela1958,
    Thanks for the question. It may be best to report an issue with your purchase. The following article outlines how to do so:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933
    Thanks,
    Matt M.

  • How to restrict Intercompany Invoice getting generated for receive only trn

    Hi All,
    I have a businesss scenario, where there are two operating units (A and B) Intercompany shipping relationship is set between these two OU's
    Operating Unit: A and Inventory Org: ZZ
    Operating Unit: B and Inventory Org: DEF
    1. If I have Sales order from A and shipped from B OU Inv org(DEF Inv org) , IC AR and IC AP gets generated and also End customer Invoice in A OU gets create
    assume the above order was for 10 Qty shipment
    at Inventory Logical transactions will be created in ZZ Inv org for 10 Qty shipment
    now if the customer comes backs and says you have shipped 12 Qty and returns the 2 Qty, here we dont send any credit Invoice to customer so RMA Order line type is Receive only when you raise RMA order in OU A aganist DEF Inv org (OU B) and you receive the goods in DEF, system creates logical transactions in ZZ inv org which is in OU A and forcing to create IC AR and IC AP in both the OU's, how to restrict the same
    Ideally its extra shipment done from DEF ware house and they are receiving back
    Thanks in advance
    Regards
    Krishna

    Hi All,
    I have a businesss scenario, where there are two operating units (A and B) Intercompany shipping relationship is set between these two OU's
    Operating Unit: A and Inventory Org: ZZ
    Operating Unit: B and Inventory Org: DEF
    1. If I have Sales order from A and shipped from B OU Inv org(DEF Inv org) , IC AR and IC AP gets generated and also End customer Invoice in A OU gets create
    assume the above order was for 10 Qty shipment
    at Inventory Logical transactions will be created in ZZ Inv org for 10 Qty shipment
    now if the customer comes backs and says you have shipped 12 Qty and returns the 2 Qty, here we dont send any credit Invoice to customer so RMA Order line type is Receive only when you raise RMA order in OU A aganist DEF Inv org (OU B) and you receive the goods in DEF, system creates logical transactions in ZZ inv org which is in OU A and forcing to create IC AR and IC AP in both the OU's, how to restrict the same
    Ideally its extra shipment done from DEF ware house and they are receiving back
    Thanks in advance
    Regards
    Krishna

  • Getting only 3 byte data from Bodypart -  mail.jar 1.4

    I am using jdk 1.4
    my code is like
    BodyPart part = multipart.getBodyPart(index);
    with mail.jar 1.4 when i tried to retive the content from part its returning only 3 byte
    but when i have used mailapi.jar 1.3 its returning correct data may i know what is problem with mail.jar 1.4 .

    The issue is that you are mapping "Data Value" to amount in the Target Application import format:
    SELECT SCENARIO "Scenario" 
      ,YEAR "Year"
      ,PERIOD "Period"
      ,DATAVIEW "View"
      ,DATAVALUE "Value"
      ,ACCOUNT "Account"
      ,ENTITY "Entity"
      ,ICP "ICP"
        ,UD2 "Area"
        ,UD1 "Tail"
        ,UD3 "Special"
        ,UD4 "Facility"
      ,AMOUNT "DataValue"
      FROM AIF_HS_BALANCES
      WHERE LOADID = 300
    You need to map AMOUNT to "AMOUNT" in the HFM Application.  Check that the dimension mapping is correct for the class in the target application and that your import format is going to the proper target dimension(Amount).    

  • I own several iOS devices, and for some reason, everyone get's my text messages on their phone. We turn iMessage on, and select send and receive only at our own respective devices. Why does iMessage automatically turn on?

    I own several iOS devices, and for some reason, everyone get's my text messages on their phone. We turn iMessage on, and select send and receive only at our own respective devices. Why does iMessage automatically turn on?

    Go to Settings > Messages > Send & Receive on each device and make sure only the phone number for that device is checked.

  • HT1430 I cannot hear a phone call through the receiver, only thru the speaker or headset.  Any suggestions?

    I cannot hear a phone call through the receiver, only thru the speaker.  Any suggestions?

    I have te same issue. It started after upgrading to iOS 5 on my iPhone 4. I tried to restore, same problem after restore.

Maybe you are looking for