Socket connection between Java and C

I want to establish socket connection between Java client and C server (on Unix). Can anybody tell how to do it? Will the socket created in client be available in server. I tried out but there was no response from the server.

We too can't connect the daemon server written by "c". The phenomena is below.
<< Execution of this Question1.class >> ---------------------------------------
[kazuyuki@CryptOne tmp]$ java Question1 E 1.2.3.4 MFrame.java 195.211.1.1 15021
<< Output message >> ----------------------------------------------------------
Quetion1 : flg_ = E
Quetion1 : key_ = 1.2.3.4
Quetion1 : fn_ = MFrame.java
Quetion1 : adr_ = CryptOne.localhost/195.211.1.1
Quetion1 : port_ = 15021
java.net.ConnectException: Connection refused
     at java.net.PlainSocketImpl.socketConnect(Native Method)
     at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:350)
     at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:137)
     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:124)
     at java.net.Socket.<init>(Socket.java:268)
     at java.net.Socket.<init>(Socket.java:122)
     at Question1.UPLOAD(Question1.java:65)
     at Question1.main(Question1.java:155)
<< Question >> ----------------------------------------------------------------
Why the event "java.net.ConnectException: Connection refused" has occured ?
The server to connect from Question1 can accept the connection request from
the client program coded by "c" program. We have written down the daemon server
program by "c" code tcp/ip socket functions (socket, bind, listen, accept).
Security manager admits the access from this Question1.class, we have checked.
Would you like please answer this Connction refuse occurrence ?
                                                                 2002.05.18 11:50:00.0(JST)
                                                                 K.Masuda
<< Java client code>> -------------------------------------------------
     (c)Copyright     All rights reserved.
          K.Masuda     2002.05.18
               << Question1.java >>
import     java.lang.String;
import     java.io.InputStream;
import     java.io.OutputStream;
import     java.io.DataInputStream;
import     java.io.DataOutputStream;
import     java.io.FileInputStream;
import     java.io.FileOutputStream;
import     java.io.IOException;
import     java.io.FileNotFoundException;
import     java.net.Socket;
import     java.net.InetAddress;
import     java.net.UnknownHostException;
import     java.net.ConnectException;
import     java.net.NoRouteToHostException;
class Question1 {
     char               flg_;
     String               key_;
     String               fn_;
     InetAddress          adr_;
     int                    port_;
     Socket               sock_;
     Question1(
          char          flg,
          String          key,
          String          fn,
          String          adr,
          int               port
          flg_     = flg;     
          key_     = key;
          fn_          = fn;
          try{
               adr_     = InetAddress.getByName( adr );
          catch( UnknownHostException e ){
               e.printStackTrace();
          port_     = port;
System.out.println( "Quetion1 : flg_ = " + flg_ );
System.out.println( "Quetion1 : key_ = " + key_ );
System.out.println( "Quetion1 : fn_ = " + fn_ );
System.out.println( "Quetion1 : adr_ = " + adr_ );
System.out.println( "Quetion1 : port_ = " + port_ );
     public void UPLOAD(
          try{
               sock_     = new Socket( adr_, port_ );
               UpLoad();
               DnLoad();
               sock_.close();
          catch( UnknownHostException e ){
               e.printStackTrace();
          catch( ConnectException e ){
               e.printStackTrace();
          catch( NoRouteToHostException e ){
               e.printStackTrace();
          catch( IOException e ){
               e.printStackTrace();
     public void UpLoad(
          byte[]                         buf          = new byte[ 512 ];
          int                              rlen;
          int                              wlen;
          try {
               OutputStream          sos          = sock_.getOutputStream();
               FileInputStream          fis          = new FileInputStream( fn_ );
               DataInputStream          dis          = new DataInputStream( fis );
               DataOutputStream     dos          = new DataOutputStream( sos );
               while( ( rlen =     dis.read( buf, 0, buf.length ) ) >= 0 ){
                    dos.write( buf, 0, rlen );
               dis.close();
               dos.close();
               fis.close();
               sos.close();
          catch( IOException e ){
               e.printStackTrace();
     public void DnLoad(
          byte[]                         buf          = new byte[ 512 ];
          int                              rlen;
          int                              wlen;
          try {
               InputStream               sis          = sock_.getInputStream();
               FileOutputStream     fos          = new FileOutputStream( fn_ + ".cry" );
               DataInputStream          dis          = new DataInputStream( sis );
               DataOutputStream     dos          = new DataOutputStream( fos );
               while( ( rlen =     dis.read( buf, 0, buf.length ) ) >= 0 ){
                    dos.write( buf, 0, rlen );
               dis.close();
               dos.close();
               fos.close();
               sis.close();
          catch( IOException e ){
               e.printStackTrace();
     public static void main(
          String[] args
          char[]     chrs     = ( new String( args[ 0 ] ) ).toCharArray();
          Question1     clnt     = new Question1(
                                                                 // E or D
                                        chrs[ 0 ],
                                        args[ 1 ],               // key string
                                        args[ 2 ],               // file to be processed
                                        args[ 3 ],               // IP address
                                                                 // port
                                        Integer.parseInt( args[ 4 ] )
          clnt.UPLOAD();
}

Similar Messages

  • Error while creating connection between Java and ABAP

    Experts
    I am getting the following error message when I am trying to test the connection between JAVA and ABAP systems.
    1. The system ID is valid
    2. The system was retrieved.
    3. The system object represents an SAP system
    4. The following parameters are valid: Web AS Protocol (http) Web AS Host Name (s09f71v06.svr.bankone.net:8100)
    5. The host name s09f71v06.svr.bankone.net was resolved successfully.
    6. The server s09f71v06.svr.bankone.net *could not be pinged* successfully.
    I have JAVA and ABAP on the same system. I am trying to establish a connection. I have checked all the settings and they looks fine. I have also pinged from other system to this server and the Ping works fine.
    Please do let m eknow where do I need to check for the errros or logs for the above error message.
    Appreciate your quick help.
    Mahesh

    Check the relevant services are test are active on the Backend system through SICF trransaction.
    Also make sure that default icm services are running.See note 517484.
    More important the connector test in the portal system should work properly,recheck the WAS path etc are correct.
    Regards
    Ajay

  • JCo connection between java and ABAP

    Hi,
    Any pointers for some good material on establishing JCo connection between ABAP and Java to execute ABAP FMs.
    Thanks and Regards
    Arpita Saxena

    Please find following link for your reference.
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/85a483cb-0d01-0010-2990-c5168f01ce8a?quicklink=index&overridelayout=true]

  • Interprocess socket communication between Java and C

    Hello,
    I have opened a socket to C-process listening at predefined port.
    The C rpogram requires data to be send sandwiched between
    "@BEGMSG\n" "@ENDMSG\n"
    WHen the C program encounters \n it understands it is end of line and returns "\0"
    kkSocket = new Socket("abcd",12013);                    
    out = new PrintWriter(kkSocket.getOutputStream(), true);
    is = new DataInputStream(kkSocket.getInputStream());
    out.println("@BEGMSG@\n");
    ibyteread = is.read();
    System.out.println("Server 1 ::"+ibyteread);
    out.println("INIT\tIMISFS11\timisdiag\tdamnyas1\tllgyZux8Mt2Qs\n");
    ibyteread = is.read();
    System.out.println("Server 1 ::"+ibyteread);
    out.println("@ENDMSG@\n");
    ibyteread = is.read();
    System.out.println("Server 1 ::"+ibyteread);
    My problem is the C-program gives error while reading the "@ENDMSG@";
    Can any one tell the problem

    Hello,
    I have taken care of that,
    Also i am writing as bytes
    as shown below
    fromUser= "@BEGMSG@\n";
    String data = "\0INIT\tIMISFS11\timisdiag\tdamnyas1\tllgyZux8Mt2Qs\n";
    String endmsg = "@ENDMSG@\n";
    os.writeBytes(fromUser);
    in.read();
    os.flush();
    os.writeBytes(data);
    in.read();
    os.flush();
    os.writeBytes(endmsg);
    ibyteread=in.read();
    os.flush();
    Now teh C-program reads the first two lines, but gets third line as empty or -1
    Also i have to read the stream after every write, other wise my data is not written to C-program.
    Some how my third statement which @ENDMSG@ is getting converted to empty string of length <=-1,
    If i don;t read after os.writeBytes(data);
    That line is ignored and C-program directly jumps on "@ENDMSG@\n";
    and reads it.
    Can any one tell this funny behaviour
    Thanks

  • Socket communication between Java and Python aplications.

    I'm try to connect a pyhton client to a Java server through Socket. The problem is that the python client never receive anything. I'm using a ObjectOutputStream to send the msgs. Does anyone have any idea how make this works?!

    RicardoS wrote:
    So how do you do it?! What do you use?!Bytes! Normally I generate the bytes from XML.
    Edited by: sabre150 on Mar 24, 2008 5:10 PM

  • Communication between java and c++, help!

    i am c++ programmer and newly to java.
    now i am developping a client/server app. i use java transfers data (socket) between client and server, and use c++ to create user interfaces because c++ is easier for interfaces.
    my question is:
    in a single PC, java needs to tell c++ what info was read from socket and c++ needs to tell java what info will be written to socket.
    i want to use 2 files (read and write) as media between java and c++. that is: java writes data to a file and c++ reads from the file, and vice versa.
    i know it's not efficient. could you tell me better way to do?
    thanks in advance.

    thanks for reply.
    my problem is: socket is fare in java, not fare in c++
    (win/nt). could u use server in a non nt-server
    machine with c++?I'm not sure what you mean "fair". NT-Server is just a version of NT that Microsoft adds their server products to. Most of which you don't want to use because they are a security nightmare. I think what your asking is can you do the equivalent of Java's ServerSocket in C++. Sure, the socket libraries in Windows (at least last time I checked) were based off the BSD socket libraries. So you would basically do something like:
    // Open socket
    ss=socket(AF_INET, SOCK_STREAM, 0);
    if(ss==-1)
      cerr<<"Error opening socket."<<endl;
      return 0;
    // Fill in address
    struct sockaddr_in server;
    server.sin_family=AF_INET;
    server.sin_port=htons((unsigned short)port);
    server.sin_addr.s_addr=INADDR_ANY;
    // Bind to port
    if(bind(ss, (struct sockaddr *)&server, sizeof(server))==-1)
      cerr<<"Could not bind to port "<<port<<"."<<endl;
      return 0;
    // Ready to accept connections
    if(listen(ss, 5)==-1)
      cerr<<"Could not listen."<<endl;
      return 0;
    // Loop to accept connections
    while(/* some condition */)
      // Accept a connection
      int s=accept(ss, 0, 0);
    }This should work on any version of windows as long as you have winsock. The example code might need to be changed a little though since I copied it from a Linux program I had.

  • ESS/MSS sso configure between java and abap instance

    Dear Gurus,
    I want to configure sso between java and abap instance for ESS/MSS. I couldnt find any guide for it, could you please help me gurus ?
    Other question is, is there any specific role for ESS/MSS users in JAVA instance. I want to create users and assign this role to them.
    Best Regards

    Hi Kemal,
    Hope you are doing good.
    There should be a / in the ITS path before SAP.
    Basically the entry that you have mentioned here should be accessible via browser as well. For eg in your case:
    http://<its hist name>/sap/bc/gui/sap/its/webgui should be accessible over browser.
    I also think you have put in a extra space in "w  ebgui". It should be "webgui".
    If the connector settings are working, then we can be sure that system connection is fine. You do not need to configure ITS settings.
    Also for SSO, refer the SAP note:1083421 and configure the SS0 settings again.
    Please run the SSO2 wizard and then make the automatic connection to
    the abap server. This will solve any inconsistencies on the server
    due to manual interventions.
    Most likely reason for the error is that certificates were loaded
    manually rather than using SSO wizard.
    More help:
    <http://wiki.sdn.sap.com/wiki/display/EP/Troubleshooting+SSO+between+AS-ABAP+and+AS-JAVA>
    The SSO enabling parameters should be set on the R/3 server.
    SSO Logon Ticket-> login/accept_sso2_ticket and login/create_sso2_ticket
    More info:
    <http://help.sap.com/saphelp_nw04/Helpdata/EN/22/41c43ac23cef2fe10000000a114084/frameset.htm>
    Thank you and have a nice day :).
    Kind Regards,
    Hemanth
    SAP AGS

  • Build the connection between Arduino and Flex 4.0 via JSON

    Hi,
    I try to make a connection between arduino and Flex 4.0, I included the JSON lib and also as3corelib.swc to Flex. When I run the Flex file the connection between PC to arduino is working (I can see it in SERPROXY window) and also I don't have any problems in Flex window, I added the SWF file of Flex to the list at //http://www.macromedia.com/support/documentation/tr/flashplayer/help/settings_manager04.htm l, Bu the reading result is not shows in the SWF,    I couldn't understand why !, thanks for help
    here the code
    package
    import com.adobe.serialization.json.JSON;
    import flash.display.Sprite;
    import flash.errors.*;
    import flash.events.*;
    import flash.net.Socket;
    import flash.text.TextField;
    public class deneme extends Sprite
    {private var magnetic:Socket=new Socket("localhost",5331);
      private var magneticValue:Number=0;
      private var distance:Number;
      private var newText:TextField=new TextField();
      private var listText:TextField=new TextField();
      private var MNx:Number;
      private var MNy:Number;
      private var MNz:Number;
      private var d:Object={"x":null, "y":null, "z":null};
      public function deneme()
       socketDataHandler();
      private function socketDataHandler():void
       newText.text=magnetic.readUTFBytes(magnetic.bytesAvailable);
       d= JSON.decode(newText.text);
       MNx=d["x"];
       MNy=d["y"];
       MNz=d["z"];
       listText.x=10;
       listText.y=10;
       listText.width=600;
       listText.height=100;
       listText.text=newText.text;
       addChild(newText);

    package
    {    import com.adobe.serialization.json.JSON;
    import flash.display.Sprite;
    import flash.errors.*;
    import flash.events.*;
    import flash.net.Socket;
    import flash.text.TextField;
    import mx.rpc.events.ResultEvent;
        public class deneme2 extends Sprite
            private var newText:TextField=new TextField();
            private var listText:TextField=new TextField()
            private var magnetic:Socket=new Socket("localhost",5331);
            private var MNx:Number;
            private var MNy:Number;
            private var MNz:Number;
            private var d:Object={"x":null, "y":null, "z":null};
            public function deneme2()
                 magnetic.addEventListener(ProgressEvent.SOCKET_DATA,getDATA);
             private function getDATA(event:ProgressEvent):void
                newText.text=magnetic.readUTFBytes(magnetic.bytesAvailable);
                d= JSON.decode(newText.text);
                MNx=d["x"];
                MNy=d["y"];
                MNz=d["z"];
                listText.x=10;
                listText.y=10;
                listText.width=600;
                listText.height=100;
                listText.text="X="+String(MNx)+" Y="+String(MNy)+" Z="+String(MNz);
                addChild(listText);

  • Connection between JCo and XI

    Hello,
    I want to establish a connection between an external java program which uses JCo to XI. However, it doesn't work. I'm not able to get a connection between java program and XI.
    Can anybody help me in this case?

    Hi Dinh,
    Here is a sample code I used to test the communication calling function module THPOPUP.
    client = JCO.createClient( ...);     
    // Open the connection
    client.connect();
    // Get the attributes of the connection
    JCO.Attributes attributes = client.getAttributes();
    boolean is_backend_unicode = attributes.getPartnerCodepage().equals("4102") ||
                                       attributes.getPartnerCodepage().equals("4103");
    // Create metadata definition of the input parameter list
    JCO.MetaData input_md = new JCO.MetaData("INPUT");
    input_md.addInfo("CLIENT", JCO.TYPE_CHAR, 255, 255 * (is_backend_unicode? 2 : 1 ),-1, 0, null, null, 0, null, null);
    input_md.addInfo("USER", JCO.TYPE_CHAR, 255, 255 * (is_backend_unicode? 2 : 1 ),-1, 0, null, null, 0, null, null);
    input_md.addInfo("MESSAGE", JCO.TYPE_CHAR, 255, 255 * (is_backend_unicode? 2 : 1 ),-1, 0, null, null, 0, null, null);
    // Create the input parameter list from the metadata object
    JCO.ParameterList input = JCO.createParameterList(input_md);
    // Set the first (and only) input parameter
    input.setValue("020", "CLIENT");
    input.setValue("USERNAME", "USER");
    input.setValue("TEST MESSAGE", "MESSAGE");
    // Create metadata definition of the output parameter list
    JCO.MetaData output_md = new JCO.MetaData("OUTPUT");
    // Create the output parameter list from the metadata object
    JCO.ParameterList output = JCO.createParameterList(output_md);
    // Call the function
    client.execute("TH_POPUP", input, output);
    I suggest you to have a look at the sample code named Example1 that is delivered with jco library.
    Probably there are also higher level functionality to send the idoc via jco (that hide you the call to that function module), using something like IDOC.create() or IDOC.send() but I have never used them because when I worked in this kind of scenario I had to call a RFC, not to send and idoc, via jco.
    Instead I sent Idoc to XI from a non sap system that was built on RFC sdk (similar to jco) and we posted IDOCs to XI via function module IDOC_INBOUND_ASYNCRONOUS.
    Dinh, the reason why the Idoc will be sent to the application layer of XI (SXMB_MONI) and not to the below ALE layer (WE05) is that in XI any call to the function module IDOC_INBOUND_ASYNCRONOUS is catched by the application layer.
    Consider that when an SAP system has to send an IDoc to another SAP system it calls  as well that function module (IDOC_INBOUND_ASYNCRONOUS) to send the IDoc
    So once you call that function module the idoc is created in XI and is a normal XI IDoc scenario.
    Hope it clarify your doubts,
    Kind Regards,
    Sergio

  • Connection between O and BP is missing

    Hi,
      When i check inconsistency for a user, i am getting " Connection between "O" and "BP" is missing. When i check the Org.unit in PPOSA_BBP, i could see no BP exists for that Org.unit where user is assigned. I have replicated the org.unit from HR system but yet the BP hasnt been generated. Can you please share your idea on this.
    Regards,
    Prasath J

    Hi Prasath,
    This might be because you need to assign the user to a Purchasing Organisation or a Purchasing Group. If the user do not have BP created then you can do this by using tcode USERS_GEN.
    Go to USERS_GEN and follow below steps :
    1. Select Create User From Existing SU01 user
    2. Enter the org id of the POrg or Pgroup under which you want to assign the user
    3. Select country and execute
    4. In next window one popup will occur, select Area Of User
    5. In next popup enter the user id
    6. Next select the user and click Ok.
    7. This will create a BP and CP for the user and assigns the BP to the Org id of the POrg or Pgroup.
    8. Now check the consistency of the user it will show all green.
    It might give you error like eMail id for BP XXXXX is missing if the SU01 profile of the user does not contain any user id but it is not critical.
    You can open the BP in BP tcode and enter the email id of the user.
    Let us know if it solves your issue.
    Regards,
    Mayur

  • Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  Select Size = Medium or Large.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailier like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago. 
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them. 
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    OT

  • Why can't I use WebCT chat with my computer?  I get the 'spiral of death' every time I try to type in my chat.  I have a feeling it has to do with compatibility issues between Java and Tiger.

    Why can't I use WebCT chat with my computer?  I get the 'spiral of death' every time I try to type in my chat.  I have a feeling it has to do with compatibility issues between Java and Tiger.

    Hi Elizabeth,
    Do your Mac meet any of these requirements?
    http://www.wvnet.edu/services/webct/requirements.html
    From this it appears to be PC only!???
    http://sourceforge.net/projects/awebctcclient/files/Pancake%20%28it%20own%20proj ect%20now%29/Pancake%20Console%20V1.0.0/PancakeConsole-1.0.0-src.zip/download
    Can you provide any more info on which bersion or file you have?
    Can you tell us why you need this for your use?

  • Frustration! I have all igoods in order to use all, fully as should be. But looks like Softbank does no agree with any connection between iPhone and iMac... What in the world! How Apple let that happen???

    I live in Japan,
    I have all igoods in order to use all, fully as should be. But looks like Softbank does no agree with any connection between iPhone and iMac... What in the world! How Apple let that happen??

    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
    *Firefox > Preferences > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    See also:
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    *https://support.mozilla.org/kb/Images+or+animations+do+not+show

  • Handoff: No connection between iPad and iPhone

    Handoff: No connection between iPad and iPhone (IOS 8).

    Hi raydela,
    I understand your calls aren't being transferred between devices.
    Check out the troubleshooting in this article.
    Get help using Continuity with iOS 8
    If a call doesn't transfer to your other devices, or you don't see the Handoff icons
    Make sure that your devices are using iOS 8 or later by going to Settings > General > Software Update.
    Check your settings:
    Go to Settings > Wi-Fi and turn on Wi-Fi if necessary.
    Go to Settings > Bluetooth and turn on Bluetooth if necessary.
    Make sure your iOS devices are connected to the same Wi-Fi network by going to Settings > Wi-Fi and comparing the name of the network each is on.
    Go to Settings > General > Handoff & Suggested Apps and turn on Handoff.
    Go to Settings > Phone and turn off Wi-Fi Calling.
    Best Regards,
    Nubz

  • Bluetooth connection between iphone and ipad no longer workers after upgrade to ver 8 - any help?

    bluetooth connection between iphone and ipad no longer workers after upgrade to ver 8 - any help?
    I'm trying to use the iphone as a remote with keynote, which again worked before the upgrade

    Hi russellpaton,
    Thanks for visiting Apple Support Communities.
    If your iOS devices are not communicating with each other after updating to iOS 8, the troubleshooting steps in this article can help resolve this sitation as well:
    If you can’t use a Bluetooth accessory or car kit
    Cheers,
    Jeremy

Maybe you are looking for

  • How can i change the itunesu site name?

    Hi, recently our dean asked us to change the itunesu site name in the lists from UNIPD to UNIPD - Università degli Studi di Padova. We have used the old site admin to do that because the web admin has not this feature available. Nothing changed... wh

  • 1st Generation iPod nano

    I have rediscovered my 1st generation iPod nano in a drawer and am attempting to use it again but it will not sync with iTunes. The do not disconnect message is on the iPod but nothing is happening on the progress bar on the laptop. I have gone throu

  • Printing cross reference colour highlights InDesign CC

    I am using cross references in InDesign CC and a different colour for each. Is it possible to print these from InDesign?

  • Enchanage rate and residual payment

    hello, when I receive a residual payment and the rate has changed the system calculates the tax on the total amount. Should not calculate the value that I receive? Thanks for the help Vanessa Anastácio

  • Where is mod_oc4j?

    does anyone know where and how to configure oc4j? is it a part of the CORE installation of 9iAS?