Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: MaheshRathi
  • Order by date
  1. MaheshRathi

    Need help on implementing FTP Client in C++ on HP Unix

    Hello, I need to write a ftp client in C++ on HP unix. Does ne one aware of any free/less expensive ftp library (in C/C++ on HP Ux) which can be used to develop such client. If not, does any one has developed such client in past ... Appreciate your help and any hints /pointers. thanks and...
  2. MaheshRathi

    how to set the classpath

    Hi, You can always set the class path in startWebLogic.sh or startManagedWebLogic.sh. That is being used by the applications running on weblogic or Managed server instance of Weblogic. HTH. Mahesh
  3. MaheshRathi

    Use of grep or egrep

    Hi, I am not able to use grep or egrep to get the matched lines for multiple patterns. For E.g. I want to get the lines matching to either "This is good" or "This is better" pattern. The file can be like this ... I say This is good or bad. you say This is better may be...
  4. MaheshRathi

    Error while compiling and building jar file

    Hi, I am trying to compile the ejb and generate the jar. I am getting following error. (I have tools.jar already in CLASSPATH). [echo] ========================================= [ejbjar] Could not resolve ( publicId: -//Sun Microsystems, Inc.//DTD Enterpr ise JavaBeans 2.0//EN...
  5. MaheshRathi

    Error while building my application - xalan-c linking issue

    Hi, I am not able to build my application with xalan-c. Am getting following error - /usr/ccs/bin/ld: Unsatisfied symbols: xalanc_1_6::XSLTResultTarget::XSLTResultTarget(std::basic_ostream<char,s td::char_traits<char>> *)%1 (first referenced in...
  6. MaheshRathi

    Runtime error - in C++ servers

    Hi, While I am trying to start my servers (written in C++, compiled with visibroker and oracle on hp ux with aCC 3.45), the servers are throwing this error and exiting. /usr/lib/dld.sl: Can't find path for shared library: ORACLE /usr/lib/dld.sl: No such file or directory Assertion failed: 0 !=...
  7. MaheshRathi

    C++ linking issue - HP Unix

    Hi, While trying to build my application .. I am getting linker error (Unable to write, connection timeout). Not sure why - 1. Taking long time to link and build the executable. 2. What is the reason for such linker error. If anyone of you has faced similar error and resolved it, please let me...
  8. MaheshRathi

    Special Symbols after command execution..

    Hi, Try &quot;reset&quot; command or &quot;tput reset&quot; command. I hope, this should help. regards, Mahesh
  9. MaheshRathi

    Writing &quot;@&quot; at the command prompt ..

    Hi, I want to execute this command at command prompt &quot;cat DSLEastCommon.h@@/main/sda_1.9/SDA_1.12.10/SDA_1.12.10_Visibroker_migration/1&quot; But the problem is whenever I copy this .. due to &quot;@&quot; symbol, it is not able to write the whole line. It becomes...
  10. MaheshRathi

    Nested Update sql query ..

    Nope .. I don't think it is one-to-one. I have multiple records in both tables.
  11. MaheshRathi

    Nested Update sql query ..

    Hi, Can I write an update statement to update values in two columns of two different table? For e.g. I want to update col A of Table A and col B of Table B in single update statement .. can it be possible? thanks in advance, Mahesh
  12. MaheshRathi

    Compilation Error - File not found

    Hi, I am getting following compilation error - Error 112: &quot;/apps_serv/sourcepro/rw_buildspace/include/ansi/cwchar&quot;, line 123 # Include file <sys/_mbstate_t.h> not found. # include <sys/_mbstate_t.h> ^^^^^^^^^^^^^^^^^^ Error 484...
  13. MaheshRathi

    Nested Update sql query ..

    Hi, I have a doubt wrt PL/SQL - nested update query .. My requirement is to update one column value based on some conditions i.e. based on the values in two different tables. Here is a select query for reference .. which gives the relation - SELECT A.BILLING_ACCOUNT_NUMBER, A.ACCOUNT_ID...
  14. MaheshRathi

    Information wrt aCC 3.45 required ..

    Hi, Can someone help me in .. 1. To understand the difference between compiler aCC version 3.13 and 3.35 and 3.45 on hpUx. 2. Migration of C++ code from aCC 3.13 to 3.45. 3. How and where to get aCC 3.45 for HPUx. 4. Any other pointers which can help in this migration... thanks and regards, Mahesh
  15. MaheshRathi

    Secure ftp from WinNT to Unix Box

    Hi, The requirement is to set secure ftp connection with unix box from Windows NT. We are aware of normal ftp windows API. Appreciate, if some one can give the reference for APIs on win NT for setting up secure connection with unix box. If you can provide sample code, that would be great...
  16. MaheshRathi

    Hi, I am currently trying to migra

    Hi, I am currently trying to migrate my application to higher version of visibroker i.e to 5.2. I am facing strange problems in compiling the stubs and skeleton i.e. <idlName>_c.C and <idlName>_s.C files which are generated by idl2cpp compiler itself. The errors which am getting are line 165 #...
  17. MaheshRathi

    C - C++ Transition

    Hi, Pete has given a very basic and good example to understand the factory pattern. Here from factory you wil get either circle or square or some other shape as shape object i.e. base class. All these different shapes will implement all the virtual methods defined in base class i.e. Shape. So...
  18. MaheshRathi

    static void function

    Hi, Static member function and member variables are class attributes .. and others are object attributes. In other words, say,In class C1, function F1 and variable V1 are static and function F2 and variable V2 are normal i.e.auto. Then, 1. Function F1 can use variable V1 but not V2. 2. Function...
  19. MaheshRathi

    C - C++ Transition

    Hi, Let's take example of factory design pattern .. I hope you are aware of design patters ... in that, we actually use the virtual functions and abstract class. Base class has the virtual functions which are to be implemented in derived classes. If you declare some function and assign it to...
  20. MaheshRathi

    Reading Environment variables in java ..

    Hi, I want to read some environment variables inside java code. I am not able to use System.getProperty() as it can read only some variables which are predefined. My requirement is - 1. I am declaring a variable and exporting it before execution of code starts. 2. i want to access the value of...

Part and Inventory Search

Back
Top