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 strongm 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. MiddlewareOnline

    what is wrong with the PK

    How are you calling UpdateCoffee. Please share the code. Looks like you have a column in the table that is NOT NULL. MiddlewareOnline.COM http://www.MiddlewareOnline.com IBM MQ Series Certified Consultants A SARVAM PORTAL www.SarvamInc.com
  2. MiddlewareOnline

    Please help - easy question (I think)

    i=256 is NOT correct in your for loop. It should return a boolean (i > 256 or i >= 256 ). MiddlewareOnline.COM http://www.MiddlewareOnline.com IBM MQ Series Certified Consultants A SARVAM PORTAL www.SarvamInc.com
  3. MiddlewareOnline

    Help !!! ASP with MQSeries

    You can use MessageID or CorrelationID to match request to reply message Or you can use dynamic queue to do that. Also, design application if you are trying to do session tracking using cookies or session variables. MiddlewareOnlince.COM http://www.MiddlewareOnline.com IBM MQ Series Certified...
  4. MiddlewareOnline

    Problem with runmqsc

    Check to see that the files system for /var/mqm/ has correct ownership and also see that /opt/mqm/bin has correct ownership for mqm group and mqm user. Rajesh MiddlewareOnline.com http://www.MiddlewareOnline.com IBM MQ Series Certified Consultants A SARVAM PORTAL www.SarvamInc.com
  5. MiddlewareOnline

    Generating trigger messages after restart

    Well, it is NOT a good idea to have trigger (EVERY). The application being triggered should get with wait. This way all the messages that arrived when the triggered was fired plus that arrived during the processing would be picked up. If you can explain why you want to do on/off of trigger may...
  6. MiddlewareOnline

    How can I get MQIC Library?

    Nope. Modify your make file to link this lib. Link your code and you are all set. MiddlewareOnline.com http://www.MiddlewareOnline.com IBM MQ Series Certified Consultants A SARVAM PORTAL www.SarvamInc.com
  7. MiddlewareOnline

    How can I unarchive libmqic.a file?

    You should modify your makefile. MiddlewareOnline.com http://www.MiddlewareOnline.com IBM MQ Series Certified Consultants A SARVAM PORTAL www.SarvamInc.com
  8. MiddlewareOnline

    Oracle Access through Sun J2EE Server

    Why don't you use connection pool feature and define a data source to this connection. That should work inside the BEAN. MiddlewareOnline.COM http://www.MiddlewareOnline.com IBM MQ Series Certified Consultants A SARVAM PORTAL www.SarvamInc.com
  9. MiddlewareOnline

    Servlets problem

    Use Session object to store the data. MiddlewareOnline.com http://www.MiddlewareOnline.com IBM MQ Series Certified Consultants A SARVAM PORTAL www.SarvamInc.com
  10. MiddlewareOnline

    How can I get MQIC Library?

    Which version did you upgrade from ? The libraries on AIX is always libmqic.a (archieve libs). I think you are referring to MA01 support pack for Oracle mqic.o. MQ libs are dynamic lib, you need NOT have to recompile the code. MiddlewareOnline.com http://www.MiddlewareOnline.com IBM MQ Series...
  11. MiddlewareOnline

    MQSeries problem between a c prog. and the message queue

    Also, to add to above, make sure when you created the queue manager you have specified a good trigger interval. Also, the oracle trigger does a PUT on the queue in a UOW ? MiddlewareOnline.com http://www.MiddlewareOnline.com IBM MQ Series Certified Consultants
  12. MiddlewareOnline

    Multiple Session Beans accessing one Entity Bean

    Here is what I am trying to do 1. One Entity Bean with a known Primary Key ( e.g. "INTERFACEBEAN") This bean is created at startup of the weblogic server and creates connection with backen JMS server. Q. How do I create an instance of bean at startup with a known...
  13. MiddlewareOnline

    MQRFH2

    MQRFH2 is an extension header you can use to support extended functionalities like 1. Folders e.g. MRM for MQ Series Integrator 2. To support different product specific information for routing , parsing, data dictionary. etc. This is usually comes handy when you are interfacing or using...
  14. MiddlewareOnline

    Connecting to a queue manager on remote machine

    If you want to connect as client to a queue manager running on other machine, you should read MQ Series Client" manual. It talks about setting MQSERVER variable which define connectivity to server. Also, you could copy the channel table from the Server and use MQCHL??? variable to point to...
  15. MiddlewareOnline

    How to use MCAUSER?

    I suggest you read MQ Series Manuals to get more info. You must read Intecommunication Guide to get some of the conceptual things out of your way. MiddlewareOnline.COM http://www.MiddlewareOnline.com IBM MQ Series Certified Consultants
  16. MiddlewareOnline

    How to use MCAUSER?

    The server channel definition is what you refer to in you client connection. MQSERVER=SERVER_CHNL_NAME/TCP/IP(PORT) Now, if you hardcode the MCAUSER in server definition, it leaves a security loophole. Any client connecting to MQ Server has authority of user "xyz". So, you need to...
  17. MiddlewareOnline

    How to use MCAUSER?

    When you say "Then at server side(Win 2K), do I need to logon using the same user with the same group? & then make the MCAUSER=mquser as follow:" You are referring to interactive logon (please correct me If I am wrong here). MCAUSER is used to indicate to server who the client is...
  18. MiddlewareOnline

    MQSERIES PL/SQL Support

    In the mqpack package print the value of queue manager either into a table to see the value that you are getting in procedure before calling function in shared lib is correct. MiddlewareOnline.Com http://www.MiddlewareOnline.com IBM MQ Series Certified Consultants
  19. MiddlewareOnline

    MQSERIES-ORACLE Wrapper Function

    Check the syntax for ENVS='abc=xyz; dec=lmn;' There is quote required. Check out the values you are getting in progrm by getenv() call and print it for verification. Also ,you need more than just mqm/lib. Include /usr/lib or equivalent on your system for socket etc. MiddlewareOnline.com...
  20. MiddlewareOnline

    MQSERIES-ORACLE Wrapper Function

    LD_LIBRARY_PATH can't see the ****/mqm/lib directory. MiddlewareOnline.Com http://www.MiddlewareOnline.com IBM MQ Series Certified Consultants

Part and Inventory Search

Back
Top