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 Chriss Miller 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: *

  1. DevIntProd

    Problem initializing a e*Gate Schema

    We ended up deleting the RDB and the schema folder from the repository, and recreating the schema from a backup export I had taken the night before. This fixed the problem. Most likely the RDB had become corrupted, as we were also experience bad writes to the eGate registry errors before this...
  2. DevIntProd

    Problem initializing a e*Gate Schema

    Sigmaadg.... We are currently experiencing the same problem, did anyone ever find a solution to this? These schemas have never done this. And it it only happending for One schema, the other schemas attached to this registry host work fine...
  3. DevIntProd

    Problems starting an e*Way

    Turn the logging up for the Eway, and then look at the log. It should give you a little hint as to what is causing the problem.
  4. DevIntProd

    Reload Java Collaboration Rule in Multi Mode eWay

    Cliffbob, There is a command you could have run in your main collaboration rule to retrieve the file from the registry every time before creating the new instance to work from. The control broker would go to the registry for the file, do a checksum campare, and if the file from the registry is...
  5. DevIntProd

    Reload Java Collaboration Rule in Multi Mode eWay

    Cliffbob, We think that you are in fact rebuilding the JSubCollabMapInfo instance, but that you may be doing it with the old 'version' of the collaboration rule. Can you verify that when you promote your collaboration rule that you want to load is that it is updating in the client directory of...
  6. DevIntProd

    New egate alert utility available

    What value add are you offering above the alert agent& SNMP agent that comes packaged with the product?
  7. DevIntProd

    SOAP Integration Behavior v. Number of Threads

    I am curious if anyone has seen anything like this before, and if so, do you know why the systems behaved this way... We have one SOAP integration running 10 parallel threads in the eWay, each doing equal amounts of work. We have another SOAP integration that is running 1 thread in each eWay...
  8. DevIntProd

    How do I delete a collaboration with no associated eWay?

    Technocat, While your suggestion does explain how to delete physical files of a collaboration rule, which cannot be logically orphaned, it does not solve the poster's original problem of deleting an orphaned collaboration. Remember a collaboration is a logical entity while a collaboration rule...
  9. DevIntProd

    How do I delete a collaboration with no associated eWay?

    Have you thought of attaching the collaboration to an existing eWay? Click an existing eWay, right click in the collaboration pane, select existing collaboration, and attach the collaboration to the existing eWay. You can then delete the collaboration from there. -DevIntProd
  10. DevIntProd

    How do you handle your errors?

    Technocat, We do a few things... In some instances we write the error out to a file, while generating an email to be sent out to support. You can then manually take that file, do any manipulation of data needed and save it. We created a file eWay to then read the file and write it back into...
  11. DevIntProd

    Is anyone integrating to MarketSoft's DemandMore Leads?

    I was just curious if anyone else is integrating to MarketSoft's DemandMore Leads application, and if so how is your integration set up? Currently, we are writing a file to the DML box (with an stceway running on the box), kicking off a DML import script, waiting for the script to finish, and...
  12. DevIntProd

    Exception when performing get on MQSeriesETD (4.5.3)

    We had a similar problem of the exception being thrown when the queue is empty, to resolve the problem we did this: catch(CollabConnException cce) { if (!cce.getMessage().equals( "getWithOptions threw exception: MQRC_NO_MSG_AVAILABLE" )) {...
  13. DevIntProd

    JMS IQ Dump

    To clarify question #3: In the situation where you say there are x number of events already on the queue, but they only come off as one goes on. Is the event being pulled off by the subscriber the exact event being published to it at that time, or does it place the new event at the back of the...
  14. DevIntProd

    JMS IQ Dump

    I have a couple of questions: 1) Are these messages published as a topic or a queue? 2) How are you determining there are actually these 8,000 messages on the queue? 3) Is the message that comes out the same one that went in, or are you cycling through the stack? One...
  15. DevIntProd

    JMS IQ Dump

    If the Queue is broken, I am not sure that there is any tool available to retrieve the data.
  16. DevIntProd

    compiling collab rule without egate collab editor

    While it is definatley possibly to set up a complile statement with all the right classpaths, etc... to end up with a compiled class file, I do not advise doing this, and here is why: a) The other 4 files associated with that rule would not change, and these are essential files the editor uses...
  17. DevIntProd

    Monitor screen blank?

    alikki, I don't think 5/3 is out yet, maybe 5.0.3 ? But anyway, Do you have plenty of RAM? It may just be slow and you may have to wait some time if you have limited resources, or you may not be able to load it at all if you don't have the available resources. I think 5.0.3 wants you to have...
  18. DevIntProd

    Problem Shutting down an eWay connecting to MSMQ

    I have a multi-mode eWay connecting through the java MSMQ connections and have a problem getting it to shutdown correctly. It will only actually shutdown after it has done work. For instance, if I just turn the eWay on, and there are no messages on the MSMQ it is reading from, and then try to...
  19. DevIntProd

    Manual Commit back to JMS

    Is there a way to manually tell the JMS IQMgr that a given recod has been committed, to go ahead and journal that message. If anyone has this piece of code written, I would greatly appreciate the syntax and command, thank you. Basically, I am reading multiple records offteh queue in...
  20. DevIntProd

    Problem with a very quirky DateUtils function...

    Below is the code we are using: String timeStamp2 = DateUtils.timeStamp("%m%d%y"); String errorFile = baseDirectory + "/Errors/" + collabName + "-error-data." + timeStamp2; The problem is once in a while, instead of getting errorFile string to be something like...

Part and Inventory Search

Back
Top