We are trying to setup our Weblogic Server 9.2 in Red Hat Enterprise Linux 5.0 to automatically Startup and Shutdown when RHEL is boot up and shutdown. Could anyone help us on this matter ? Thanks in advance.
sorry for the mistype in the #define portion,
#define CONSTANT_1 1
#define CONSTANT_2 0
is the correct one and the indexmax does not change as long as the application is running....
Thanks for the advice...
to give you guys a more overview, please refer to the code below :
#define IndexMax 512
#define CONSTANT_1 = 1
#define CONSTANT_2 = 0
boolean bOk = false;
while (bOk == false)
{
// Logging Function to reflect in the Log Files that
// this part is being executed...
thanks for the reply mikrom, sad to say but based on our log files the values in the Table[index] are all valid that is why we are having a hard time troubleshooting this.
our applications is executed in Linux.....
hello to all, i just want to ask if any of you have experienced the following :
if ((Table[index].variable1 == CONSTANT_1) &&
(Table[index].variable2 == CONSTANT_2) &&
(Table[index].variable3 == 0))
{
// Do some things
}
At first, this if-statement was working properly, but after...
hello to all, i just want to know how to determine the memory mapping or location of certain C Application variables, tables, arrays or linked list in the Memory of a Linux System ?
Because we what to determine if at certain location in memory, a certain dynamic variable or linked list is...
Hello people.
I am a newbie in VB and just want to know, how to create an instance of a Class written in C in VB ?
Problem:
I have created a class in C that will be called in VB. The problem is that one of the parameters in the functions that I created is a class written in C. (The class is...
I recently ported a eVC++ 3.0 dll application to eVC++ 4.0 and I encountered a "Error executing midl.exe" error message. Have any of you guys encountered this error before ?? Hope you can help me with this. Thanks.
One thing I forgot to tell you guys, I'm using Embedded Visual C++ 3.0... here are some of the things I noticed :
e.g.:
LPCWSTR lpcwSource;
lpcwSource[0] = 0; error C2166: l-value specifies const object (same with lpcwSource[0] = '\0';, *lpcwSource = 0;)
delete[] lpcwSource; (this call also...
LPCWSTR lpcwSource;
while (1) {
lpcwSource = GetValue();
}
Specification of the GetValue() function :
- returns LPCWSTR
- waits for data from a dll every 10 secs.
For example, at first run of the program, the dll returns "This is the data needed." to the GetValue() function...
Given a value to a Memory Address/Location, can somebody teach me on how to clear the values in the memory ?? I was to place NULLS ('\0') values in the said locations. Thanks.
Yes and No... No, because PDAs and Pocket PCs has its own database format. And when you import your Microsoft Access 97 Database, the PDA or Pocket PC will convert its contents to its own format. And Yes, because after converting your Microsoft Access 97 Database to Pocket Access Format, you can...
We have a remote server that is running a certain service, we want to check remotely if the service is running or not without using rsh or ssh... thanks..
try this..
store the ff. in a file.. lets call it ftpconfig.cfg
SERVER='1.2.3.4'
USERNAME=moved1234
PASSWORD=longston4£
in your ftp script do the following
CONFIG_FILE=ftpconfig.cfg
SERVER=`grep SERVER ${CONFIG_FILE} | cut -d= -f2`
USERNAME=`grep USERNAME ${CONFIG_FILE} | cut -d= -f2`...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.