Data streaming between server and client does not complete

Using an ad-hoc app, data streaming between server
and client does not complete as it supposed to be.
The process runs well in solaris 5.8, however under 5.9
we have found the characters stream buffer length limitation
is around 900 to 950 characters (by default we are using 3072
characters).
Example:
- We are transfering HTML file, which will be displayed
in the App client, with buffer=3072, the HTML only displayed / transfered
as xxxxxxxx characters, but with buffer=900 the HTML is displayed properly,
in this case, the only problem that we have is the file transfer will
eventually longer than usual.
- There is another case, where we have to transfer information (data) as stream
to the client. A long data stream will not appear at all in the client.
Any ideas why the change between 5.8 and 5.9 woudl cause problems?
The current app-driver that we are using is compiled using Solaris 5.6,
if possible we would like to have use of a later version, which is compiled using Solaris 5.9, do you think this will probably solve our problem?
Thanks
Paul

Does this have anything to do with Java RMI? or with Java come to think of it?

Similar Messages

  • Serialize the object between Server and Client?

    Hello friends,
    What is the important to Serialize the object between server and client?
    Thanks
    tamilvanan

    in which context ??
    Anyways,checkout the below link and try to understand how do we convert Serializable Object's State to in Stream and send it over network.
    http://java.sun.com/j2se/1.4.2/docs/guide/serialization/examples/index.html
    Hope that might help :)
    REGARDS,
    RaHuL

  • Speed between server and client when using FML

    I using FML between server and client, the server access oracle using only 5 ms, but when tranfer back to client, it about 100ms long. I tuned my hp-ux 11 kernel and tuxedo config file, but useless, Why?

    Hi Tumecan,
    Your expected information available here, check.
    Frontend Network Load - Network Integration Guide (BC-NET) - SAP Library
    few related SAP Notes:
    164102 - Network load between application server and front end
    500235 - Network Diagnosis with NIPING
    62418 - Network Load of SAPGUI Frontend Communication
    679918 - The front-end network time
    578118 - Long response times on the SAP GUI
    161053 - Using SAP GUI in WAN
    Regards,
    V Srinivasan

  • Bandwidth between server and client

    HI
    What is the minimum bandwidth can be allocated between server and client?

    Hi,
    Your question has no standard answer. The minimum bandwidth is variable to each specific system. It depends on many other factors too.
    Thanks,
    Gordon

  • Time sync between server and client

    Hi guys,
    I have written a chess server and client. My next step is to implement a clock which will be used in timed games, however, I am not sure of the best solution. I can't think of a reliable method to keep the client's time in sync with the servers because the event latency varies between individual events and clients.
    My first idea was to send a 'tick' event every second but I dont think this the best solution. I have seen many applet based clients which have timers, such as Yahoo chess.
    I know this question is a little vague, I can give more detail if needed.
    Thanks,
    Alex

    To prevent client-side cheating, the server should keep the
    "official" clock. Every so often (perhaps when a move gets made?),
    notify both clients of the official time. Clients count seconds from
    that official time.
    This is a suboptimal solution because it leaves clients vulnerable
    to network lag. I can't think of any other solution that doesn't give
    clients some responsibility for tracking time, though, and that's a
    big security hole.
    If you're willing to open that hole, have each client report back to
    the server the elapsed local time from when they recieved the
    last move to when they made their move. Then update the other
    client's clock accordingly.

  • Connection between server and client using thread

    hi
    i am new to java..i hav done a program to connect a server and client...but i hav not used threads in it..
    so please tel me how to use threads and connect server and client..i tried it out not getin...i am havin thread exception...my program is as shown below
    SERVER PRG:
    import java.io.*;
    import java.net.*;
    public class Server{
    String clientsen;
    String serversen;
    public void go(){
    try{
         ServerSocket serverSock=new ServerSocket(6789);
         while(true) {
         Socket sock=serverSock.accept();
         BufferedReader inFromClient=new BufferedReader(new InputStreamReader(sock.getInputStream()));
         BufferedReader inFromuser=new BufferedReader(new InputStreamReader(System.in));
         DataOutputStream outToClient=new DataOutputStream(sock.getOutputStream());
         clientsen=inFromClient.readLine();
         System.out.println("From Client: "+clientsen);
         System.out.println("Reply mess to Client");
         serversen=inFromuser.readLine();
         outToClient.writeBytes(serversen+'\n');
    } catch(IOException ex) {
         ex.printStackTrace();
    public static void main(String[] args) {
         Server s = new Server();
         s.go();
         CLIENT PRG
    import java.lang.*;
    import java.util.*;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.net.*;
    import java.lang.Thread;
    import java.applet.Applet;
    class Client1
    public static void main(String argv[]) throws Exception
              String Sen;
              String modsen;
              BufferedReader inFromUser=new BufferedReader(new InputStreamReader(System.in));
    Socket clientSocket=new Socket("192.168.1.2",6789);
              DataOutputStream outToServer=new DataOutputStream(clientSocket.getOutputStream());
              BufferedReader inFromServer=new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
              System.out.println("Enter the mess to be sent to server");
              Sen=inFromUser.readLine();
              outToServer.writeBytes(Sen + '\n');
              modsen=inFromServer.readLine();
              System.out.println("FROM SERVER: " +modsen);
              clientSocket.close();
    please send me the solution code for my problem...

    sorry for inconvenience...
    SERVER PROGRAM
      *import java.io.*;*
    *import java.net.*;*
    *public class MyRunnable implements Runnable*
       *public void run() {*
       *go();*
    *public void go(){*
    *try {*
        *String serversen;*
       *ServerSocket  welcomeSocket=new ServerSocket(6789);*
       *while(true)*
    *Socket connectionSocket=welcomeSocket.accept();*
    *//BufferedReader inFromClient=new BufferedReader(new //InputStreamReader(connectionSocket.getInputStream()));*
    *System.out.println("enter the mess to be sent to client");*
    *BufferedReader inFromuser=new BufferedReader(new InputStreamReader(System.in));*
    *DataOutputStream outToClient=new DataOutputStream(connectionSocket.getOutputStream());*
    *//clientsen=inFromClient.readLine();*
    *//System.out.println("From Client: "+clientsen);*
    *//System.out.println("Reply mess to Client");*
    *serversen=inFromuser.readLine();*
    *outToClient.writeBytes(serversen+'\n');*
    *} catch(IOException ex) {*
    *        ex.printStackTrace();*
    *class Server1{*
    *public static void main(String argv[]) throws Exception*
         *Runnable threadJob=new MyRunnable();*
    *Thread myThread=new Thread(threadJob);*
    *myThread.start();*
    *}*CLIENT PROGRAM
    import java.io.*;
    import java.net.*;
    class Client2
    public static void main(String argv[]) throws Exception
              //String Sen;
              String modsen;
              //BufferedReader inFromUser=new BufferedReader(new InputStreamReader(System.in));
    Socket clientSocket=new Socket("192.168.1.2",6789);
              //DataOutputStream outToServer=new DataOutputStream(clientSocket.getOutputStream());
              BufferedReader inFromServer=new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
              //System.out.println("Enter the mess to be sent to server");
              //Sen=inFromUser.readLine();
         //     outToServer.writeBytes(Sen + '\n');
              modsen=inFromServer.readLine();
              System.out.println("FROM SERVER: " +modsen);
              clientSocket.close();
    this is the code which i hav used using thread but i am gwetin error..ts is the error
    Exception in thread "main" java.lang.NoSuchMethodError : Main

  • ISE Windows client does not complete Provisioning. I am trying to use SCEP and NDES

    I'm setting a lab environment with ISE 1.2.0.899 patch 7 (Virtual), Windows server 2008 R2 (Virtual). I had follow instructions to make BYOD and get EAP-TLS certificates.
    The first unsolved sittuation I have is with Windows Server. I can't figure out why the "Certificate Web Enrollment Service" and "Certificate Policy Web Enrollment Service" are not available when I enable Active Directory Certificate Service.
    Anyway I set up all the rest of configuration on ISE. When I try a test the Guest Portal is displayed, the device is registered, and the Network Setup Assistant is started, but around 3/4 of the process it is aborted with an Error, but nothing explaining wath happened. The "More Information" link does not show anything.
    Searching on the Windows Server I found this messages:
    The Network Device Enrollment Service received an http message without the "Operation" tag, or with an invalid "Operation" tag
    Network Device enrollment service cannot convert encoded portions of the client's http message, or the converter message is larger than 64k. invalid pointer
    I suppose the problems should be on the WS but I don't have idea how to fix them.
    I will appreciate your assistance. Thanks in advance
    Daniel Escalante

    Thank you ... I had read the document you indicate and review LabMinutes videos. Labminutes was the first source where I saw the "certificate enrollment web service" and "certificate enrollment policy web service".
    After that I had review several sources (videos and books) and I can't find something that indicates why the indicated services are available some times and not in others.
    Cisco documentation does not mention these services, but I understand they are required to allow funcionality with non domain devices ...
    Regards.

  • Airdrop between Mac and iOS does not work

    I am using a MBP (early 2011) OS X 10.10  and a iPhone 5s iOS 8.0.2 and I cant get a airdrop connection between them. Same WiFi and Bluetooth is on.
    I bet my MBP is too old and does not support some kind of Bluetooth standard....correct? Thanks in advance for your help.

    Hey guys,
         Just wanted to put my 2 cents in and say that using my iPhone 5S and MacbookPro Early 2011 I was able to use both the SMS relay feature and the Phone call receive feature. So I'm not sure where the line is drawn for certain continuity features. I haven't had any handoff features work yet which I don't expect to happen since seamlessly moving something like a Pages files to different devices to continue working on would suggest the need for efficient Bluetooth 4.0 capabilities.
        I'm really surprised that they limited the Airdrop from iOS to OS X to the 2012 or older mac models. I mean the bluetooth hardware in the iPhone should be backwards compatible so I see no reason why it couldn't be done between older macs that supported the mac-to-mac feature but didn't have Bluetooth 4.0. just means ill be using the instashare app to take its place... hopefully hey update with some iOS 8 extensibility features, that would make it a perfect solution.

  • Difference between Server and Client Installation of ODI

    Hi All,
    i am new to ODI, recently i try to install ODI it has three Option 1.Complete 2. Client 3. Server
    i installed Server after installation it contains only Agent. and i tried Client option end of the installation i saw all the ODI components including Agent. i am bit confusion about when do i need to use ODI Server and when do i need to use ODI Client and what is the purpose of both
    Thanks
    Knidhi
    Edited by: knidhi on Oct 6, 2009 2:38 PM
    Edited by: knidhi on Oct 6, 2009 2:38 PM

    Hi,
    Trying to help :-
    What roll ODI Server play in the entire ODI ArchiTechture?
    ODI Server will act as a cenratilsed system for all your ODI clients
    You can call this ODI server as an execution server for all your ODI clients .
    When this is needed ?
    (some real time examples to explain the need)
    If there is team need to work on a cenratlised application ...
    say MachineDev1 (developer1) , MachineDev2 (developer2) .. and MachnAnlayst1 (An1), MachnAnlayst2 (An2) need to work on an single application
    The developer1 will create projects based upon his machine ,
    The developer2 will create projects based upon his machine ,
    and the analysts/operators will try to execute the application from their machines with their machine agents.
    the application will reffer the paths for temperory/supporting files/folders on the agent machines which they are running ...
    this will be a difficult task, if you dont have a similar folder sturcture in all of your machines ..
    In order to avoid this conflict you need a centralised system for running your jobs from different machines
    say SVR (from your example). put all the supporting files/folders in this system while developing projects each develpoer need to consider this server as an execution server.
    so if any execution comes from any clients with this agent, it will reffer to the machine SVR folders and you can have a centralaised enviorment to work for different machines.
    Regards,
    Rathish

  • HT201263 have tried to restore my ipad and it does not complete the restoration and gives me an error code

    I have tried many times to restore my ipad to factory settings with no luck.  It does not get through the whole process and gives an error code of 3194 cannot restore.  It then directs me to a website that does not help and is very hard to get rid of.  I am ready to send my ipad back and get a new one.  Is there any solution to saving my current model?

    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    Update and restore alert messages on iPhone, iPad, and iPod touch
    http://www.buybuyla.com/tech/view/012953a0d412000e.shtml
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694
     Cheers, Tom

  • Failure to boot and recovery does not complete

    Pavilion g6.   When I turn on, only the hp blue circle appears.   Windows does not install or open anything.
     I can hit escape at start up and get the options of F1 System information, F@ System Diagnostics, F9 Boot Device Options, F10 BIOS Setup and F11 System Recovery.   But only System Information opens.  Nothing on any of the other functions does anything.  I was hoping to open System Recovery.   
    I have had the Automatic Recovery supposedly start, but even after 24 hours, nothing happens.
    I can get nowhere beyond this point.
    Product Number: C2N57UA#ABL
    Serial Number:    [Personal Information Removed]
    BIOS Version:       F.26
    AMD A6-4400M APU with Radeon HD Graphics
    What can I do?

    Thanks.   It did work and I was able to get to F10, BIOS, but I am not able to see or access any command that says Diagnostics.   Can you provide any more guidance??
    I did get  to request a Refresh which completed, but it did not get me past the hp logo, and Windows circle spinning and this time the word "welcome".   But it just hangs there.  

  • AME workflow APEXP is struck with activity block and it does not complete

    Hi
    The APEXP type of workflow is struck with block as activity. It neither changes to complete when i retry or rewind.
    It does not allow me to skip activity
    regards
    Bhavika

    Have you done any customization?
    Did it work earlier?
    what is the version of Oracle Apps?

  • Flowcontrol between 3560 and 2950 does not work?

    Configuration:
    ==============
    C3560 Software (C3560-IPBASEK9-M), Version 12.2(25)SEB1, RELEASE SOFTWARE (fc1)
    interface GigabitEthernet0/3
    description R14 Trunk 50,[100],102,105,199
    switchport mode trunk
    switchport nonegotiate
    flowcontrol receive on
    end
    connected to
    ============
    C2950 Software (C2950-I6K2L2Q4-M), Version 12.1(22)EA6, RELEASE SOFTWARE (fc1)
    interface GigabitEthernet0/1
    description R01 Trunk 50,[100],102,105,199
    switchport mode trunk
    switchport nonegotiate
    flowcontrol receive on
    flowcontrol send on
    end
    Port Gi0/1 on 2950 has sometimes no buffer and drops packets:
    ============================================================
    GigabitEthernet0/1 is up, line protocol is up (connected)
    Full-duplex, 1000Mb/s, media type is RJ45
    input flow-control is on, output flow-control is on
    193421146 packets input, 2844802437 bytes, 2637 no buffer
    0 input errors, 0 CRC, 0 frame, 0 overrun, 2637 ignored
    but it never sends a pause packet:
    ==================================
    cs-a2p5#sh flowcontrol
    Port Send FlowControl Receive FlowControl RxPause TxPause
    admin oper admin oper
    Gi0/1 on on on on 0 0
    What am I doing wrong? I have realized that this data overload is caused by
    server with 1Gbs interface pushing data to server with 100 Mbs interface.
    I vould expect it should not affect a trunk with flowcontrol on.
    Tomas

    By wild guess, is the flowcontrol also enabled at the interface to / at both servers ? If there is only flowcontrol between switches but no flowcontrol at servers then it may create the problem. Please advise more.
    Moreover, if you transmit 10 times of traffic to a receiver that it can handle, there may be packet drop and flowcontrol to ask for retransmittion.

  • Transfer files between server and clients

    Hi all
    i use oracle forms 11g r2 webutil
    i have some questions :
    1- How i can choose picture from client side and save it on server ( in folder ) ?
    2- How i can print the picture from client side?
    Thanks

    Hello,
    For transfering files, configure the Webutil library, then use its AS_To_Client() and Client_To_AS() methods.
    Francois

  • Passing parameters between server and client side

    Dear All
    I writing a server-side web service and using wsdl to expose its methods for a 'client' to use.
    However, i need to make sre the clients creates a soap header? How can i tell the client it must create a soap header?
    Also can someone tel me how i pass a value from the server-side to the client-side and also get a vlue from the client soap message
    Many thanks

    In your wsdl you would have the header as part of the input for example, see the operation below:
    <wsdl:operation name="foo">
    <soap:operation soapAction="http://www.foobar.com/foo" style="document"/>
      <wsdl:input>
       <soap:body use="literal"/>
       <soap:header message="tns:FooSoapHeader" part="MySoapHeader" use="literal"/>
      </wsdl:input>
      <wsdl:output>
       <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>

Maybe you are looking for

  • HT201318 Can I but my iCloud storage for my girlfriend with my iTunes login

    My girlfriend and I have both have iPhones. I straight away upgraded my storage as I knew I need more space. But she thinks she wouldn't need it. Anyhow not that I would say I told u so to her but she does. And her way is deleting apps and photos etc

  • Issue after upgrade the ASA5520 from 7.2.4 to 8.2.5,

    i  am having issue after upgrade the ASA5520 from 7.2.4 to 8.2.5, the LMI  remote session getting disconnect in between in one of the outside  interface i  am having issue after upgrade the ASA5520 from 7.2.4 to 8.2.5, the LMI  remote session getting

  • Ongoing problems with Flash in Firefox 8

    I am still having problems with Flash player since upgrading to Firfox 8 - see previous posts. Symptoms: When I try to access any flash containing page, the flash content does not load or play - the area it should be is blank or shrunk out - not even

  • Clearing/Canceling a FPM event

    Hello all,     I have a class attribute that is a flag. What I am trying to do is stop/clear/kill/cancel all events that are called while the flag is still set. I am currently looking into FPM_OVERRIDE_EVENT_OIF of the CL_LO_OIF_MODEL class, but stil

  • How sign out of Skype on iPad (IOS 8)?

    I cannot figure out how to sign out of Skype (or sign in with a different account) on my iPad. The old profile page had the option, but the updated Skype (there is no indication of any version number on the iPad, or none I can find) doesn't seem to h