Forum Replies Created
-
AuthorReplies
-
Found the reason of the problem, the schema file for db is under folder %HciRoot%formatdbschemadbschema.xsd which missing attribute “FIELD_SEP” and “TERMINATION” (strange), I solved it by adding these two attributes. 😀
hi, Jerry
Is there any news about adding ability to database outbound connection to returning data from query/stored procedure? I think it’s quite meaningful to DB based query service.
Thanks and regards
The allignment needs to be done in the engine, the “IN” comes in with the .br, the downstreem system does not like the .br and needs the text to be alligned by the engine. Here is what I have as a preproc so far.
foreach seg $segments {
if [cequal $seg “”] { continue }
set segtype [csubstr $seg 0 3]
if {[cequal $segtype OBX]} {
set LOBX [split $seg $sep]
set LOBX [string map {\.br\ ” “} $LOBX]
set seg [join $LOBX $sep] ;# Concatenate list back to msg
}
if {[cequal $segtype NTE]} {
set LNTE [split $seg $sep]
set LNTE [string map {\.br\ ~} $LNTE]
set seg [join $LNTE $sep] ;# Concatenate list back to msg
What command do you use to get the values below?
hci:
fsize = 2097151
core = 2097151
cpu = -1
data = 3145728
rss = 524288
stack = 524288
nofiles = 10000
Where does the processing take place? in the sending site/process or the site the destination is sending to?
We to are having issues almost daily, I come in, open the IDE and all sites appear dead.
I run hciss and hcisitectl and they both time out. I then bounce monitor daemon and things just start working. This happened shortly after the rev3 patch was installed.
Cloverleaf GlobalMonitor 5.0
General HARDWARE Server Requirements
Last updated on August/04/2010
Note: Hardware recommendations are based on Non-VMWare environments.
Minimum Recommended
# of CPUs 1@2.0 GHz+ (Windows) 4@2GHz+(Windows)
Memory 2 GB 4 GB
Disk Space 100G 200G
Graphics 2D, 256 colors, 1024×768 Same of better
Video Memory 16Mb 32Mb or better
CD-ROM 8x 16x or better
Supported Platforms
Thanks Everyone! I got my answer.
Jim,
Thank you for your reply. Actually, My problem is, to resend the message. I am attaching the screenshot so that you can take a look. Thanks once again.
July 22, 2010 at 3:35 pm in reply to: upgraded to 5.7 now gettting javacore/heapdump/snap dumps #71896The allocation of memory for the JVM is specified using -X options. The exact options may depend upon the JVM that you are using, the examples here are for the Sun JVM:
Code:
-Xms initial java heap size
-Xmx maximum java heap sizeYou can pass these options to your JVM by using the ‘
CLJAVA_INIT‘ environment variable, e.g. :Code:
CLJAVA_INIT=-Xms256M -Xmx500MVery cool thank you. It was setup in the gui as having the master site.
The command line did show the master site.
But I knew I had not restarted the host server. Did that and low and behold it is working.
Thanks.
AT this time there are no variants in the slave sites. The name of the variant is EPIC.
I guess you are telling based on your questions.
This can be done and it should be working ?
Then it will most likely be a timeout some where in the pipe. Getting the Firewall and VPN people to find it has always been an issue.
I would ask both groups and check your system for the TCP_Keepidle setting.
I’m pretty sure you will find info on clovertech about it but you can also search with Google to find more information on it.
I have had to use several work around
1> send a keep alive message every 60 minutes that they can ignore.
2> cycle the thread so it renews the connection.
Only once have I actually got the firewall guys to fix what really should be fixed.
Good Luck.
Is it by chance the first message of the day ? Are you running over a VPN ?
Try this. set var [string map {“:” “\br\”} [lindex $xlateInVals 0 ]]
-
AuthorReplies