Anonymous

Forum Replies Created

Viewing 15 replies – 1 through 15 (of 511 total)
  • Author
    Replies
  • in reply to: Problems about Table Schema Options #80916
    Anonymous
    Participant

      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. 😀

      in reply to: Database-Inbound/Outbound Protocols #78645
      Anonymous
      Participant

        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

        in reply to: Format NTE #75015
        Anonymous
        Participant

          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

          in reply to: Cloverleaf 5.8 rev3 – monitor daemon issues #74786
          Anonymous
          Participant

            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

            in reply to: CL 5.8 – Inter-Site routing support. #71616
            Anonymous
            Participant

              Where does the processing take place? in the sending site/process or the site the destination is sending to?

              in reply to: Cloverleaf 5.8 rev3 – monitor daemon issues #74783
              Anonymous
              Participant

                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.

                in reply to: Hardware requirements vs 3.0 #68167
                Anonymous
                Participant

                  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

                  in reply to: Unable to resend messages using windows client. #74623
                  Anonymous
                  Participant

                    Thanks Everyone! I got my answer.

                    in reply to: Unable to resend messages using windows client. #74621
                    Anonymous
                    Participant

                      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.

                      Anonymous
                      Participant

                        The 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 size

                        You can pass these options to your JVM by using the ‘CLJAVA_INIT‘ environment variable, e.g. :

                        Code:


                        CLJAVA_INIT=-Xms256M -Xmx500M

                        in reply to: 5.8 Master Site HL7 issue. #72021
                        Anonymous
                        Participant

                          Very 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.

                          in reply to: 5.8 Master Site HL7 issue. #72019
                          Anonymous
                          Participant

                            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 ?

                            in reply to: 270(X12) connection to passport #71979
                            Anonymous
                            Participant

                              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.

                              in reply to: 270(X12) connection to passport #71977
                              Anonymous
                              Participant

                                Is it by chance the first message of the day ?

                                Are you running over a VPN ?

                                in reply to: replacing ~ with br #70692
                                Anonymous
                                Participant

                                  Try this.

                                  set var [string map {“:” “\br\”} [lindex $xlateInVals 0 ]]

                                Viewing 15 replies – 1 through 15 (of 511 total)