Sunday, February 17, 2008

Integrating WebSphere MQ 6 with BEA Weblogic Server 10 using Weblogic Server's Foreign (JMS) Server feature.

This article (in fact you may call this a set of instructions) shows you how to configure Foreign (JMS) Server in BEA WebLogic 10 Server to receive/send messages from/to queues in WebSphere MQ.

What we need:
You must have following software installed in your system:
  1. WebSphere MQ 6
  2. BEA Weblogic 10
  3. JDK 1.5 or above. (This comes bundled with Weblogic)
I assume you know compile and deploy message driven beans in Weblogic.

What we going to do:
  1. Create a queue manager and two local queues namely MQSenderQueue and MQReceiverQueue in Websphere MQ, one for sending a message to our MDB at Weblogic and other one for receiving messages from Weblogic. Create and configure JMS Foreign Server, Destinations and Connection Factories.
  2. Code and deploy a MDB in Weblogic and automatically receive messages from MQ MQSenderQueue and place it at a second MQ queue MQReceiverQueue using Weblogic Foreign JSM Server features.
For testing:
  1. Put a test message to MQSenderQueue at MQ.
  2. Monitor Weblogic console to see if it has received and sent the message again to MQ.
  3. See the message received at the MQReceiverQueue at MQ.
Creating queue managers, queues and connection factories in WebSphere MQ:

Creating queue manage
Click on Start -> Program Files -> IBM WebSphere MQ -> WebSphere MQ Explorer to open WebSphere MQ Explorer. Optionally execute C:\Program Files\ibm\WebSphere MQ\bin strmqcfg.exe to run explorer.

Image #1: WebSphere MQ Explorer

On the left hand side WebSphere MQ Explorer – Navigator pane, click on 'IBM WebSphere MQ' node to expand that, if it is not expanded already.
  • To create a queue manager, right click on the ‘Queue Managers’ node and select New -> Queue Manager.
  • In the opened window, enter name “MQTest” in the name textbox and keep clicking Next-> and finally click Finish.
Now you have created a MQ queue manager namely “MQTest”. A node “MQTest” must appear under node “Queue Managers” now as shown below:


Image #2: Create queue manager in MQ


Image #3: Create queue manager in MQ


Image #4: View queue manager in MQ

Creating WebSphere MQ local queues
Now let us create MQ queues. As I mentioned above, we are going to create two queues. We will be using one of them to put a test message which is to be received by our MDB at BEA Weblogic and the other one is used by our MDB to put message the message back into second MQ queue, so that we can see the same message again in MQ, but in the second MQ queue.

We are going to create two local queues using MQ explorer.

1. To create our first local MQ queue, right click on Queues node under “MQTest” queue manager. Select New -> Local Queue.


Image #5: Create local queue in MQ

2. Enter name for our first local MQ queue “MQSenderQueue” as shown below. Click “Next” and finally “Finish”. This is the queue we will be using to put our test message.


Image #6: Create local queue in MQ

3. Repeat the above two steps to create another local queue “MQReceiverQueue”. Note the naming I followed here – used a prefix MQ to avoid the confusions since we use similar JNDI names in Weblogic also.

Optionally, you may create MQ queue manager and local queues using command prompt. Open a command prompt (CMD) and CD to C:\Program Files\ibm\WebSphere MQ\bin.
  • Create the queue manager: crtmqm MQTest.
  • Start the queue manager: strmqm MQTest.
  • Create queues in the queue manager:
 runmqsc MQTest
DEFINE QLOCAL(MQSenderQueue)
DEFINE QLOCAL(MQReceiverQueue)
end
Please note that I haven’t tried this option, so I am not sure how it works.

Creating JNDI Context and Connection factories
Next, create a simple file-based JNDI context and configure the JMS objects in that JNDI namespace. These JNDI objects are used by applications running in WebSphere Application Server Community Edition to connect to the WebSphere MQ queue manager. For this exercise, WebLogic and WebSphere MQ should be on the same machine.

The setting is for file-based JNDI. Create the directory C:\MQ-JNDI before continuing with the next step. Under new folder C:\MQ-JNDI, create a file mq-jndi.properties with the following contents:

INITIAL_CONTEXT_FACTORY=com.sun.jndi.fscontext.RefFSContextFactory
PROVIDER_URL=file:/C:/MQ-JNDI
SECURITY_AUTHENTICATION=none

Next open a command prompt, cd to C:\MQ-JNDI, create the QueueConnectionFactory and Queue objects by executing the command:

“C:\Program Files\IBM\WebSphere MQ\Java\bin\JMSAdmin.bat” -cfg mq-jndi.properties


You should see this prompt, where you can configure the JNDI objects:

InitCtx>

At the prompt, copy and paste all five lines of following commands together and press Enter.

def xaqcf(MQSenderQCF) qmgr(MQTest)
def xaqcf(MQReceiverQCF) qmgr(MQTest)
def q(MQSenderQueue) qmgr(MQTest) queue(MQSenderQueue)
def q(MQReceiverQueue) qmgr(MQTest) queue(MQReceiverQueue)
end

You should see a message like “Stopping Websphere MQ classes for Java(tm) Message Service Administration” after you press Enter after the last line “end”.
With that, we now have MQ queues ready (see following image). Next task is to create a MDB in EJB 3 and deploy it in BEA Weblogic 10.


Image #7: MQ explorer showing queue manager and local queues.

Configuring Foreign JSM Server in BEA Weblogic Server:
Before starting your Weblogic Server you have to ensure that certain MQ related jar files are in your Weblogic Server’s classpath. Easiest way to do this is to copy following jars from “C:\Program Files\ibm\WebSphere MQ\Java\lib” folder to your Weblogic domain’s lib (C:\bea\user_projects\domains\RnD\lib in my case) folder, from where Weblogic loads them up while starting.
  1. com.ibm.mq.jar
  2. com.ibm.mqjms.jar
  3. commonservices.jar
  4. dhbcore.jar
  5. fscontext.jar
Create JMS Module
Once jars are in Weblogic Server’s class path, start your Weblogic server and login to Weblogic admin console. To start with, click ‘Lock & Edit’ button.
Expand Services -> Messaging on LHS menu and click JMS Modules link.
Click on “New” button on RHS


Image #8: Configuring JMS module

Type in a name “MQIntegrationTest” in the Name text box and press Next.


Image #9: Configuring JMS module

Select the Target server (in my case it was AdminServer) as shown below, press Next and finally Finish. Click on “Activate Changes” button on LHS.


Image #10: Creating JMS module

Create JMS Foreign Server
Click on Lock & Edit again.
Select Services -> Messaging -> JMS Modules as you did earlier, and click on newly created module
“MQIntegrationTest”. Click New button.
Select “Foreign Server” radio button and click “Next”.


Image #11: Creating JMS foreign server

Enter “MQTestForeignServer” in the Name text box, click Next button. In this page you can see that the target server is selected already. Click Finish.


Image #12: Creating JMS foreign server


Image #13: Creating JMS foreign server

Activate changes by clicking “Activate Changes” button.

Click Lock & Edit again.
Open the newly created Foreign JMS server byt clicking Services -> Messaging -> JMS Modules -> MQIntegrationTest -> MQTestForeignServer.

Under the General tab under Configuration, type in following details:

JNDI Initial Context Factory:
com.sun.jndi.fscontext.RefFSContextFactory
JNDI Connection URL:
file:/C:/MQ-JNDI

Click “Save”.


Image #14: Configure JMS foreign server

Creating Destinations
Click on Destinations link in the Configuration tab at the top and click New


Image #15: Create Destinations

Type in following:

Name:
ReceiverDetails
Local JNDI Name:
jms/WLReceiverQueue
Remote JNDI Name:
MQSenderQueue

Note that the Remote JNDI Name must match the name of the queue you created in WebSphere MQ broker.
Click OK.


Image #16: Configure Destination

Repeat the above to create another Destination with following details:

Name:
ReplyDetails
Local JNDI Name:
jms/WLReplyQueue
Remote JNDI Name:
MQReceiverQueue

Now you can see two Destinations created:


Image #17: Newly created Destinations

Creating Destinations
Let’s create two Connection Factories for above queues.
Click on Connection Factories (next to Destinations) and click New


Image #18: Create connection factories

Enter following details in “Create a New Foreign JMS Connection Factory” page.

Name:
ReceiverCF
Local JNDI Name:
jms/WLReceiverQCF
Remote JNDI Name:
MQSenderQCF

Again, the remote JNDI name must match on you have given to MQ connection factory.
Click Ok.


Image #19: Create connection factory

Repeat the above steps to create one more connection factory for our ReplyQueue:

Name:
ReplyCF
Local JNDI Name:
jms/WLReplyQCF
Remote JNDI Name:
MQReceiverQCF

With that, you can see two Connection Factories created for our Foreign JMS Server like shown below:


Image #20: Connection factories

Click on “Activate Changes” to activate changes. With that you are done with creating and configuring Foreign JMS Server. The only thing pending before we test is to code and deploy our MDB.

Creating MDB and deploying it.
Here is the MDB code:

/*
* File: TestMDB.java
* Copyright (c) 2007-2008 ibswings.com. All rights reserved.
*/
package com.ibswings.ejb3.mdb;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import javax.annotation.Resource;
import javax.ejb.ActivationConfigProperty;
import javax.ejb.MessageDriven;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageListener;
import javax.jms.QueueConnection;
import javax.jms.QueueSender;
import javax.jms.QueueSession;
import javax.jms.Session;
import javax.jms.TextMessage;

/**
* Class: TestMDB
*
* @author Ishwara Varnasi
* @date Feb 17, 2008
*/
@MessageDriven(name = "TestMDB", mappedName = "jms/WLReceiverQueue",
activationConfig = {@ActivationConfigProperty(
propertyName = "destinationType",
propertyValue = "javax.jms.Queue")}
)
public class TestMDB implements MessageListener {

public void onMessage(Message msg) {
System.out.println("\n=========================================");
System.out.println("=> Message received!");

if (msg instanceof TextMessage) {

try {
System.out.println("=> Message: "
+ ((TextMessage) msg).getText());
} catch (JMSException e) {
e.printStackTrace();
}
}

// Place the message on to the reply queue (WLReplyQueue)
putMessage(msg);
System.out.println("=========================================");
}

@Resource(name = "WLReplyQueue", mappedName = "jms/WLReplyQueue")
private javax.jms.Queue queue;
@Resource(name = "WLReplyQCF", mappedName = "jms/WLReplyQCF")
private javax.jms.QueueConnectionFactory tcf;

public void putMessage(javax.jms.Message msg) {
System.out.println("=> Placing message on WLReplyQueue...");
QueueConnection queueConnection = null;
QueueSession queueSession = null;
QueueSender queueSender = null;

try {
queueConnection = tcf.createQueueConnection();
queueSession = queueConnection.createQueueSession(false,
Session.AUTO_ACKNOWLEDGE);
queueSender = queueSession.createSender(queue);
queueSender.send(msg);
System.out.println("=> Message sent!");

} catch (Exception e) {
System.out.println("Exception: ");
e.printStackTrace();

if (e instanceof JMSException) {
((JMSException) e).getLinkedException().printStackTrace();
}

} finally {

try {
System.out.println("=> Closing Connection");
queueSession.close();
queueConnection.close();
} catch (Exception e) {
System.out.println("Exception: ");
e.printStackTrace();

if (e instanceof JMSException) {
((JMSException) e).getLinkedException().printStackTrace();
}
}
}
}

@PostConstruct
public void postCreate() {
System.out.println("Bean Created");
}

@PreDestroy
public void preDestroy() {
System.out.println("Bean Destroyed");
}
}

The above code is for a simple message driven bean. It receives messages from MQSenderQueue and onMessage() prints out the content of text message received. Next it places the message back to the WLReplyQue. Note that in the code we never directly place message on to MQ queue. We are actually placing the message to a MQ queue namely MQReceiverQueue using Foreign JMS Server and local Weblogic JNDI name WLReplyQue.
Since we are using EJB 3, we actually do not need an ejb-jar.xml since we are using annotaions. However, to make it work on Weblogic 10, we still need a weblogic-ejb-jar.xml. Somehow I couldn’t get it working without this. Also note that I am using an older (90) schema for weblogic-ejb-jar.xml. Following is the content of Weblogic-ejb-jar.xml:

<weblogic-ejb-jar xmlns="http://www.bea.com/ns/weblogic/90"
j2ee="http://java.sun.com/xml/ns/j2ee"
xsi="http://www.w3.org/2001/XMLSchema-instance"
schemalocation="http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-ejb-jar.xsd">

<weblogic-enterprise-bean>
<ejb-name>TestMDB</ejb-name>
<message-driven-descriptor>
<destination-jndi-name>
jms/WLReceiverQueue
</destination-jndi-name>
<connection-factory-jndi-name>
jms/WLReceiverQCF
</connection-factory-jndi-name>
</message-driven-descriptor>
</weblogic-enterprise-bean>
</weblogic-ejb-jar>

Create EJB jar and deploy it in Weblogic Server. You need to restart Weblogic instance if you do any changes in MQ to reflect that in Weblogic. We are all set to test now!

Testing
Open WebSphere MQ explorer, click on MQTest (our queue manager) -> Queues. On the RHS table, right click on MQSenderQueue and select “Put test message” in the popup menu. Type in a test message, say, “Hello MQ-Weblogic World!”, click “Put Message” and close.


Image #21: Put a test message for testng.
Go to your Weblogic Servers’ output console and you will see the message. Outputs look like:

=========================================
=> Message received!
=> Message: Hello MQ-Weblogic World!
=> Placing message on WLReplyQueue...

=> Message sent!
=> Closing Connection
=========================================


Now go to MQ explorer and check messages in the second queue – MQReceiverQueue – you should be able to see this message.


Image #22: Queues with messages.


This article is inspired by an article by Sanjay M Kesavan at
http://www-128.ibm.com/developerworks/websphere/library/techarticles/0604_kesavan/0604_kesavan.html
I would like thank Mr. Kesavan, author of above wonderful article.


That’s it. You may send your feedbacks to me on ivarnasi@gmail.com.

348 comments:

«Oldest   ‹Older   201 – 348 of 348
jameswill11 said...

Intuit Quickbooks has around-the-clock technical software technical support for payroll including individual problem fixes and advice in product usage also. Our full scale of QuickBooks Payroll Technical Support Number from end to end payroll includes proactive, reactive, onsite and remote support—and by that way technically you can resolve payroll issues more easily when they do occur.

kevin2 said...

Intuit QuickBooks Tech Support Number is assisted by our customer support representatives who answer your call instantly and resolve all your valuable issues at that moment. It really is a backing portal that authenticates the users of QuickBooks to perform its services in a user-friendly manner.

Blogsilly said...

Quickbooks Support Telephone Number
QuickBooks has completely transformed the way people used to operate their business earlier. To get familiar with it, you should welcome this positive change.Supervisors at QuickBooks Technical Support Number have trained all of their executives to combat the issues in this software. Utilizing the introduction of modern tools and approaches to QuickBooks, you can test new techniques to carry out various business activities. Basically, this has automated several tasks that have been being done manually for a long time. There are lots of versions of QuickBooks and each one has a unique features.

Tech Guy said...

Nice post
AWS training in bangalore

Benish said...

Nice blog....Thanks for sharing useful information..
Python training in Chennai/Python training in OMR/Python training in Velachery/Python certification training in Chennai/Python training fees in Chennai/Python training with placement in Chennai/Python training in Chennai with Placement/Python course in Chennai/Python Certification course in Chennai/Python online training in Chennai/Python training in Chennai Quora/Best Python Training in Chennai/Best Python training in OMR/Best Python training in Velachery/Best Python course in Chennai/<a

Tech News said...

visit here=> Best devops training in bangalore

lajwantidevi said...

vidmate app

Convertible Baby Cribs said...

dream on me aden crib


These baby cribs reviews help you to find out a traditional, unique, safe,
comfortable, reliable, sustainable and also most perfect baby cribs.

Arslan Bhatti said...

This might be a heavenly idea to put your backpack in the washing machine. best rolling backpack for college And remove those dirt patches and greasy stains. But, wait first make some extra effort to play safe. Having invested a jumbo sum of your savings on a pricey backpack; you don’t want to damage it. Right!

Benish said...

Really nice post..Thanks for sharing informative message ..
Python training in Chennai
Python training in OMR
Python training in Velachery
Python certification training in Chennai
Python training fees in Chennai
Python training with placement in Chennai
Python training in Chennai with Placement
Python course in Chennai
Python Certification course in Chennai
Python online training in Chennai
Python training in Chennai Quora
Best Python Training in Chennai
Best Python training in OMR
Best Python training in Velachery
Best Python course in Chennai

kevin32 said...


Get prominent solutions for QuickBooks near! With no doubts, QuickBooks has revolutionized the process of doing accounting that is the core strength for large in addition to small-sized businesses. QuickBooks Accounting Support Services is an accounting portal that authenticates the customers of QuickBooks Tech Support Number to perform its features in a user-friendly manner.

tom wick said...

QuickBooks Pro has managed to make it possible for a company person to produce an invoice, track expense and automatically backup data to avoid losing them at any cost. QuickBooks Tech Support Number can be acquired 24/7 to produce much-needed integration related support. This particular QuickBooks product can be installed up to three computers and can be simultaneously accessed to efficiently retain the accounts.

Bryan Willson said...

While installing QuickBooks Pro at multiple personal computers or laptops, certain bugs shall disturb the initial set up process. This installation related problem may be solved by letting the executives that are handling the QuickBooks Tech Support Number know the details pertaining to your license plus the date of purchase associated with product to instantly solve the put up related issue.

QuickBooks Support Phone Number said...

And our QuickBooks Helpline Number expert team gave complete focus on enhancing the great and existing features so your overall workflow and functionality of your business can be simply updated and improved.

Blogsilly said...

Also, the reason for it’s popularity is not just the diverse features but also the customized support offered by QuickBooks Support and this makes it convenient to use this software. Another reason for gaining high level of popularity is that this software is much reliable. Problems with the accounting software never happen. Moreover, if they do, they are generally very simple to deal with! Certainly when you have most knowledge on the subject. When you don’t, there is yet still nothing to worry – Just check for the help from those who have this knowledge. Here, we are talking about staff or the experts from Quickbooks payroll support team.

EST of SEO said...


Bob Proctor is an icon that has worked for many years helping people to learn their self-worth. He has written various different books in helping people to become prosperous
within their personal lives. In these books he covers different aspects which aid in a variety of different real-life situations that people experience.
Because of his work and way with words people have grown to respect him for his
stay motivated . His wise quotes are also known for giving people a sense of security,
self-worth and meaning in life. What a true gift to be able to help people from all over the world prosper in their lives.

visit website

Arslan Bhatti said...

We Innovate IT Solutions by offering end-to-end solutions for all of your IT challenges. Best It Management Solutions With one call or click, learn how we can help you with IT Consulting, IT Recruiting, Software Developers, Data Management and Mobile App Development. Regulus Technologies has been the trusted source for IT services to some of the most recognized companies in the North America. Learn how we can help you Innovate IT Solutions!

jim carter said...

The team working behind the QuickBooks customer care number are known to be the best engineers in the entire industry in accordance with their timely advice, you will be about to find a dependable solution that is worthy enough for the money you spend on them. The engineers and technicians will work hard to provide a friendly QuickBooks Tech Support Phone Number that you need to possess for reaching them at any given situation.

Mathew said...

For most regarding the business organizations, QuickBooks Support really is and has now always been a challenging task to control the business accounts in a suitable way by finding the appropriate solutions. The proper solutions are imperative for the growth of the business enterprise.

steffan said...

It is possible to avail the receipt simply by engaging the camera to the receipts scanner and yes it automatically gets put in the expenses.To let the aforementioned along with other features, go ahead and reach our QuickBooks Support Phone Number to get instant assistance through the pro-advisors.

Anonymous said...

nice blog
get best placement at VSIPL

digital marketing services
web development company
seo network point

Anonymous said...

nice blog
get best placement at VSIPL

digital marketing services
web development company
seo network point

Anonymous said...

nice blog
get best placement at VSIPL

digital marketing services
web development company
seo network point

Anonymous said...

For Hadoop Training in Bangalore Visit:Big data and hadoop training in Bangalore

leadmirror said...

Nice article
Thanks for sharing the information
Please visit leadmirror to know your website rank

EST of SEO said...





Thank you so much for sharing the article. Really I get many valuable information from the article
With our Digital Marketing Training, re-discover your creative instinct to design significant
marketing strategies to promote a product/service related to any organization from any business sector.

Digital Marketing Course


EST of SEO said...





Thank you so much for sharing the article. Really I get many valuable information from the article
With our Digital Marketing Training, re-discover your creative instinct to design significant
marketing strategies to promote a product/service related to any organization from any business sector.

Digital Marketing Course


EST of SEO said...


Thank you so much for sharing the article. Really I get many valuable information from the article
With our Digital Marketing Training, re-discover your creative instinct to design significant marketing strategies to promote a product/service related to any organization from any business sector.

Digital Marketing Course in Sydney


Blogsilly said...

We have a team this is certainly extremely supportive and customer friendly.Our customer service executives at QuickBooks Technical Support Number try not to hesitate from putting extra efforts to provide you with relief from the troubles due to QB Payroll errors.We take good care of our customers and bend towards backward to please them with our exuberant performance. All this is done without compromising with all the quality of services because nothing seems good in the event that work is not done.Our customer support team is enthusiastic and makes best usage of its experience. They just do not let go any issue even if it is fairly complex.

Anonymous said...

For Devops Training in Bangalore Visit :
Devops Training in Bangalore

EST of SEO said...


Thank you so much for sharing the article.
Women fashion has always been in vouge. It has been continually changing, evolving, rebrading itself with every passing day. Compared to men,

women's clothing has far more variety in terms of colors options, fabrics and styles.

Just take a step out of your home and you would spot either a grocery store or a women's clothing shop first! No wonder even in the online world women are spoilt for choices
with the likes of Amazon, Flipkart bringing the neighbourhood retail stores to you on your fingertips.
Here we try to explore what are the other shopping options you have for women and what they are known for.


Glambees is relatively a new entrant in the market but you will definitely love the collection you will find here. You mostly find beautiful ethic wear collections in sarees
and salwar suits but some really good tops to pair with your jeans too.women's online clothing store dealing in sarees, salwar suits, dress materials, kurtis, lehengas,
casual wear, wedding wear, party wear and more. The selection and affordability is its USP.

EST of SEO said...

Kaamil Traning is fastly growing Training Center in Qatar
that aims to provide Value through Career Linked training, Professional Development Programs, Producing Top Notch
Professionals, Provide Bright Career Path. Kaamil Training Leveraging best-in-class global alliances and strategic partnerships with Alluring Class rooms, Great Learning
Environment. The toppers study with us and market leaders will be your instructors.
At Kaamil Training our focus is to make sure you have all the knowledge and exam technique you need to achieve your
ACCA Course in Qatar qualification. Our core objective is to help you
pass your exams and our ability to do this is demonstrated by our exceptional pass rates.

EST of SEO said...

Kaamil Traning is fastly growing Training Center in Qatar
that aims to provide Value through Career Linked training, Professional Development Programs, Producing Top Notch
Professionals, Provide Bright Career Path. Kaamil Training Leveraging best-in-class global alliances and strategic partnerships with Alluring Class rooms, Great Learning
Environment. The toppers study with us and market leaders will be your instructors.
At Kaamil Training our focus is to make sure you have all the knowledge and exam technique you need to achieve your
ACCA Course in Qatar qualification. Our core objective is to help you
pass your exams and our ability to do this is demonstrated by our exceptional pass rates.

Sohag said...

The trend of creating the ecommerce sites has become viral these days, which has further enhanced the competitions. And the need to beat the competitions has naturally come forward. To facilitate the business companies who have their set up on the online platform, there are web development organizations available..."> ecommerce website development company kochi

sanjana singh said...

website
website
website
website
website
website

Anonymous said...

Great blog created by you. I read your blog, its best and useful information. Machine Learning Course

deepika said...

Amazing article.
jquery interview questions

Anonymous said...

For IOT training in Bangalore :
Visit: IOT Training in Bangalore

HR HRidoy said...

Digital Marketing can be defined as a unique marketing strategy that is implemented in digital platforms through Internet Medium to reach the target audience. When compared to traditional marketing, search analytics gives you an extra edge in Digital Marketing. Analytics empowers the business to analyse the success in their business strategies and provides the required data to modify the strategies to suit the market requirements and improve ROI.

Digital Marketing Course
Digital Marketing Course in Sydney

John Stephen said...

drive
We are an MRO parts supplier with a very large inventory. We ship parts to all the countries in the world, usually by DHL AIR. You are suggested to make payments online. And we will send you the tracking number once the order is shipped.

luxury watches buy online said...

daamaze is the best online shop for buy First copy ladies bags

drivetrain said...


We provide a complete line of automatic transmission parts, overhaul kits, troubleshooting and overhaul guides to factory re-manufactured automatic transmissions . Shift kits are available, and more importantly shift enhancement kits are available, these enhancement kits fix know problems with automatic transmission. Enhancement kits correct design and manufacturing defects, yes they can be corrected after your vehicle has left the factory. If there is an enhancement kit available for you application be sure you have one installed before your transmission suffers costly failures. automatic transmission parts .

salman chattels said...

Great Share!
warehouse for rent in chennai
Godowns for rent in chennai
Factory shed for rent in chennai

nowfirstviral said...

Very nice 먹튀검증업체 순위

SVR Technolgies said...

Hey Nice Blog!! Thanks For Sharing!!! Wonderful blog & good post. It is really very helpful to me, waiting for a more new post. Keep Blogging!Here is the best angularjs online training with free Bundle videos .

contact No :- 9885022027.
SVR Technologies

Training for IT and Software Courses said...

This is the exact information I am been searching for, Thanks for sharing the required infos with the clear update and required points. To appreciate this I like to share some useful information.aws training in bangalore

svrtechnologies said...

Thanks for Sharing Such an informative Stuff...

amazon web services tutorial for beginners

Durai Moorthy said...

This is really interesting, You’re a very skilled blogger.
aws Training in Bangalore
python Training in Bangalore
hadoop Training in Bangalore
angular js Training in Bangalore
bigdata analytics Training in Bangalore

Realtime Experts said...


Thank you for your post. This is excellent information. It is amazing and wonderful to visit your site.web designing training in bangalore

vijay said...

your blogs are very informative,thanks to share info about your services
aws Training in Bangalore
python Training in Bangalore
hadoop Training in Bangalore
angular js Training in Bangalore
bigdata analytics Training in Bangalore

vijay said...

your blogs are very informative,thanks to share info about your services
aws Training in Bangalore
python Training in Bangalore
hadoop Training in Bangalore
angular js Training in Bangalore
bigdata analytics Training in Bangalore

nowfirstviral said...

I Check your site your site is very good site thank you so much share amazing article 먹튀검증

nowfirstviral said...

I Check your site your site is very good site thank you so much share amazing article 먹튀검증

Anonymous said...

This article is very much helpful and i hope this will be an useful information for the needed one.Keep on updating these kinds of informative things Biztalk online training hyderabad

Softgen Infotech said...

I am happy for sharing on this blog its awesome blog I really impressed. Thanks for sharing.

Became An Expert In UiPath Course ! Learn from experienced Trainers and get the knowledge to crack a coding interview, @Softgen Infotech Located in BTM.

svrtechnologies said...

Really thanks for sharing such an useful and informative stuff...

ibm mq tutorial

ravali said...

After reading your article I was amazed. I know that you explain it very well. And I hope that other readers will also experience how I feel after reading your article.
data science course

nowfirstviral said...

very nice website 파워볼사이트

IICT said...

Great information has been shared..

SAP Training in Chennai

nowfirstviral said...

very nice and good article 토토사이트

tejaswini said...

Personally I think overjoyed I discovered the blogs.big data course in malaysia
data scientist course in malaysia
data analytics courses

Deborah Morrison said...

Getting traffic is definitely not the only reason why you should allow comments. Here are some of the most powerful reasons you shouldn’t avoid. It Helps You Connect With The World. Connections wih the world. Imagine about a world without bloggers you can connect to. If every blogger closes the door to …
Best Wishes from
https://donnettethomas.tumblr.com

digitaltucr said...

Truly, this article is really one of the very best in the history of articles. I am a antique ’Article’ collector and I sometimes read some new articles if I find them interesting. And I found this one pretty fascinating and it should go into my collection. Very good work!
data science course in bangalore
data science interview questions

Rajesh Anbu said...

Wonderful blog with lots of information, Keep up the good work and share more like this.
aws Training in Bangalore
python Training in Bangalore
hadoop Training in Bangalore
angular js Training in Bangalore
bigdata analytics Training in Bangalore
python Training in Bangalore
aws Training in Bangalore

digitaltucr said...

I am really enjoying reading your well written articles. It looks like you spend a lot of effort and time on your blog. I have bookmarked it and I am looking forward to reading new articles. Keep up the good work.
ai training in bangalore
Machine Learning Training in Bangalore

Dance Classes in Noida 50 - Indrayu Academy said...

Techsquad - Dubai based laptop repair company

Techsquad provide laptop repair service across Dubai,
if you have any kind of laptop or desktop,
We repair all of them, we repair laptop like gaming, macbook,
Our certified engineers can provide you satisfactory service,
Our Laptop & Desktop Repair Service in Dubai is famous for our great service experience.
This service is available for all over dubai, our 24x7 service is ready to help you all the time,
Our price is also affordable,
We can provide laptop fix service at your doorstep.

laptop fix

Gurvinder sir said...

Thanks for sharing the knowledgeable stuff to enlighten us no words for this amazing blog..ccc admit card kaise download kare

Deepa said...

Nice article, very interesting to read. Salesforce Training Sydney is a best institute.

Jack sparrow said...


Pretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.i also want to share about One of the best sap hana training . expecting more articles from you.

Mary Sutton said...

Hi buddy! Awesome sharing with full of information I was searching for.your complete guidance gave me a wonderful end up. great going.
Best Wishes from
Education

menon said...

Excellent post, From this post i got more detailed informations.
AWS Training in Bangalore
AWS Training in Chennai
AWS Course in Bangalore
Best AWS Training in Bangalore
AWS Training Institutes in Bangalore
AWS Certification Training in Bangalore
Data Science Courses in Bangalore
DevOps Training in Bangalore
PHP Training in Bangalore
DOT NET Training in Bangalore

svrtechnologies said...

This is so elegant and logical and clearly explained. Brilliantly goes through what could be a complex process and makes it obvious.

sap bw online training

Sap Fico Videos

svrtechnologies said...

I am inspired with your post writing style & how continuously you describe this topic. After reading your post, thanks for taking the time to discuss this data scientist training , I feel happy about it and I love learning more about this topic.

nowfirstviral said...

very nice and great article you can check must my website 더킹카지노

svrtechnologies said...

Whatever we gathered information from the blogs, we should implement that in practically then only we can understand that exact thing clearly, but it’s no need to do it, because ssrs tutorial for beginners you have explained the concepts very well. It was crystal clear, keep sharing..

Urban Dezire Official said...

Hey Nice Blog Post Please Check Out This Link for purchase
Women Crossbody Bags for your loved ones.

svrtechnologies said...

This is so elegant and logical and clearly explained. Brilliantly goes through what could be a complex process and makes it obvious...

hadoop training online

svrtechnologies said...

Whatever we gathered information from the blogs, we should implement that in practically then only we can understand that exact thing clearly, but it’s no need to do it, because you have explained the concepts very well. It was crystal clear, keep sharing..

aws course in bangalore
aws tutorial videos

SAP Training said...

Very good article...
SAP Training in Chennai
Java Training in Chennai
CCNA Training in Chennai
Pearson Vue Exam Center in Chennai
QTP Training in Chennai
Selenium Training in Chennai
Hardware and Networking Training in Chennai
SAP ABAP Training in Chennai
SAP FICO Training in Chennai
AWS Training in Chennai

svrtechnologies said...

This is so elegant and logical and clearly explained. Brilliantly goes through what could be a complex process and makes it obvious...

sap hana admin online training

Monika Zawadzka said...

Great article.

nowfirstviral said...

Thanks for sharing this exceptional and valuable information. It will help to improve our knowledge. Again thank you for sharing this marvelous data 토토사이트.

adobe mahbub said...

Nice to meet you as well! Thank you for commenting on my post.
I follow the link. Thank You!!!

Best Wishes from

basingstokebusinessclub

Keerthi SK said...

i have been following this website blog for the past month. i really found this website was helped me a lot and every thing which was shared here was so informative and useful. again once i appreciate their effort they are making and keep going on.

Digital Marketing Consultant

nowfirstviral said...

So, there is absolutely no point in wasting your time and effort, getting worried for the problem you are facing an such like 파워볼 메이저 사이트

Joyal said...

Effective blog with a lot of information. I just Shared you the link below for Courses .They really provide good level of training and Placement,I just Had Weblogic Server Classes in this institute , Just Check This Link You can get it more information about the Weblogic Server course.



Java training in chennai | Java training in annanagar | Java training in omr | Java training in porur | Java training in tambaram | Java training in velachery

lavanya said...


This is most informative and also this post most user friendly and super navigation to all posts. Thank you so much for giving this information to me. RPA training in Chennai.

Java training in chennai | Java training in annanagar | Java training in omr | Java training in porur | Java training in tambaram | Java training in velachery

Safia Nora said...

Hey, thanks for your awesome sharing and you’ve done a great job the article was up to the mark and appreciating you to be continued with such effort. Wonderful experience gathered while I was going through your great article. keep it up and best of luck at all times Shock Collar for small dogs

david said...

The article is really Nice.

Data Science Training Course In Chennai | Data Science Training Course In Anna Nagar | Data Science Training Course In OMR | Data Science Training Course In Porur | Data Science Training Course In Tambaram | Data Science Training Course In Velachery

Jamess said...

QuickBooks Support Phone Number

QuickBooks Tech Support Phone Number

QuickBooks Pro Support Phone Number

QuickBooks Premier Support Phone Number

QuickBooks Payroll Support Phone Number

kevin32 said...

QuickBooks accounting software uses the .ND and .TLG configuration files in a network or multi-user environment to get into a business file. A corrupted or damaged .NDor .TLG file may cause QuickBooks error 6000 832. Renaming .ND and .TLG configuration files do not result in loss in QB data.
visit: https://www.dialsupportnumber.com/quickbooks-error-code-6000-832/

Facebook Youtube Viral Platform said...

Hey, thanks for your awesome sharing and you’ve done a great job the article was up to the mark and appreciating you to be continued with such effort. Wonderful experience gathered while I was going through your great article. keep it up and best of luck at all times. Custom Velcro Patches

Buy Instagram Followers USA said...

Wonderful article. Do you need high quality instagram marketing services and promotion campaign to increase followers, audience and likes... Buy Instagram Followers USA

devi said...

Very interesting to read this article.I would like to thank you for the efforts you had made for writing this awesome article. This article inspired me to read more. keep it up.

Data Science Training Course In Chennai | Certification | Online Training Course | Data Science Training Course In Bangalore | Certification | Online Training Course | Data Science Training Course In Hyderabad | Certification | Online Training Course | Data Science Training Course In Coimbatore | Certification | Online Training Course | Data Science Training Course In Online | Certification | Online Training Course

vidyasthali law college said...


such an amazing college for law students to build career amazing study material with high profile facilities and teachers.

best law college


About College

Best Law Collge in jaipur

Information about college

Best Law Collge in jaipur
www.vidyasthalilawcollege.com

radhika said...

Nice information, valuable and excellent design, as share good stuff with good ideas and concepts, lots of great information and inspiration, both of which I need, thanks to offer such a helpful information here.AWS training in Chennai

AWS Online Training in Chennai

AWS training in Bangalore

AWS training in Hyderabad

AWS training in Coimbatore

AWS training


Devi said...

Really Good blog post.provided a helpful information.I hope that you will post more updates like this.. oracle training in chennai

sanjay said...

we are an online store for all kind of fashionable item in india online.First Copy Watches For Men

Anonymous said...
This comment has been removed by the author.
kevin32 said...

QuickBooks Payroll Support Number
QuickBooks POS Support Number
QuickBooks Pro Support Number
QuickBooks Enterprise Support Number
QuickBooks Technical Support Number
QuickBooks Tech Support Number

Blogsilly said...

QuickBooks Support Phone Number
QuickBooks Technical Support Number
QuickBooks Tech Support Number

Unknown said...

Thanks for Sharing This Article.It is very so much valuable content. I hope these Commenting lists will help to my website
devops online training
best angularjs online training
top angularjs online training

Blogsilly said...

QuickBooks Support Phone Number
QuickBooks Tech Support Number
QuickBooks Technical Support Number
QuickBooks Payroll Support Number

Robert Brown said...
This comment has been removed by the author.
delfen said...

This blog is really helpful to deliver updated educational affairs over internet which is really appraisable. I found one successful example of this truth through this blog. I am going to use such information now


Data Science Training in Chennai

Data Science Training in Velachery

Data Science Training in Tambaram

Data Science Training in Porur

Data Science Training in Omr
Data Science Training in Annanagar

Anonymous said...

I'm a long-serving digital marketing professional and full-service as a social media marketing manager. I'm offering services at a competitively low cost. I have experience in keyword research, Article writing or Rewriting, Guest posting, B2B Lead Generation , Data Entry ,link building, web 2.0 backlink ,
. I have 5 years of experience in the field and are assured of delivering High Quality and manual work. I have my own site name as AbidhTech. My Blog site also here. This is a Bangla deshi Science club site .

veeraraj said...

Thanks for sharing valuable information.

SUTAPA said...

affair|after marriage|অ্যারেঞ্জ ম্যারেজ
Love Story|Sad Love Story
অদ্ভুত ভালোবাসা | single mother
working woman|অসম্পর্ণ
অসম্পর্ণ ভালোবাসা | ভালোবাসা | affair

savas said...

I think this is among the most vital information for me. And i am glad reading your article.
Thanks!
visit my sites Please.


http://www.biztopkorea.kr/bbs/board.php?bo_table=BIZTOP50&wr_id=398426
http://hisusosu.net/watershop/bbs/board.php?bo_table=hi_data&wr_id=119149
http://adpostback.com/bbs/board.php?bo_table=notice&wr_id=69623
http://manage.benmeedu.com/bbs/board.php?bo_table=c0704&wr_id=503920
http://bogildops.com/bbs/board.php?bo_table=yp_board02&wr_id=14029

Prashant Baghel said...

Best 2021 Movie In India
kgf chapter 2 full movie in hindi download filmyzilla

sachink said...

I was searching this type of article for a long time, Great work.First Copy Ladies Watches Online

Realtime Experts said...

Nice reading, This is an informative information, thanks for sharing this blog.
Websphere Message Broker Training in Bangalore

Realtime Experts said...

Interesting Post. It is really Nice and lovely post. keep it up. keep blogging. otherwise anyone wants to learn SAS training course
Websphere mq Training in Bangalore

Mallela said...

Thanks for posting the best information and the blog is very informative.data science interview questions and answers

360DigiTMG said...

Good information you shared. keep posting.
data science bootcamp malaysia

pc repair service in Bellingham said...

pc repair service in Bellingham EZPC provides fast, reliable, and affordable Computer repair service in Bellingham. We also provide free diagnosis for any issues you may have

Jobi said...

I read this article. I think You put a lot of effort to create this article. I appreciate your work.
Baron Zemo Coat

xxxtoys said...

AMAZING BACHELORETTE PARTY SUPPLIES We strive to have a positive impact on small to medium businesses, customers, employees, the economy, and communities. Surjmor bring together smart, passionate builders with different backgrounds and goals, who share a common desire to always be learning and inventing on behalf of our customers. With all the family of business that are a part of us, our goals is providing customers with the best service possible.

xxxtoys.top

andrewjackson said...

Our the purpose is to share the reviews about the latest Jackets,Coats and Vests also share the related Movies,Gaming, Casual,Faux Leather and Leather materials available Boston Starter Jacket

Subhagruha Projects said...


Excellent blog. Lots of useful information here, thanks for your effort!
Real Estate Plots in Vizag

HOME1 said...

Coimbatore House For Sale , Land For Sale - Buy, Sell, Rent Properties In Coimbatore
Search, buy, rent, lease, Residential and Commercial real estate properties in Coimbatore Tamil Nadu.
best-villa-projects-in-coimbatore
Home1
chennai

mrbobystone said...

Hi , Thank you so much for writing such an informational blog. If you are Searching for latest Jackets, Coats and Vests, for more info click on given link-Beth Dutton Coat

Elena James said...

Trade Stocks, Forex, And Bitcoin Anywhere In The World: roboforex login Is The Leading Provider Of Software That Allows You To Trade On Your Own Terms. Whether You Are Operating In The Forex, Stock, Or Cryptocurrency Markets, Use roboforex login Software And Anonymous Digital Wallet To Connect With The Financial World.: roboforex login Is A Currency Trading Company That Allows You To Trade Stocks, Forex, And Cryptocurrency.

UNIQUE ACADEMY said...

nices information thanku so much
cs executive
freecseetvideolectures/

eddielydon said...

This is the best post I have ever seen. Very clear and simple. Mid-portion Is quite interesting though. Keep doing this. I will visit your site again. connor jessup locke & key puffer jacket

Reshma said...


Awesome blog. Thanks for sharing such a worthy information....
Angularjs Training in hyderabad
Angularjs Training in Gurgaon

George Mark said...

This is a great inspiring article.I am pretty much pleased with your good work.You put really very helpful information. Keep it up. Keep blogging. Looking to reading your next post. Gus Polinski Home Alone Jacket

Pranisha said...



Are you looking for the best
Oracle training in Chennai
here is the best suggestion for you, Infycle Technologies the best Software training institute to study to also other technical courses like Cyber Security, Graphic Design and Animation, Block Security, Java, Cyber Security, Oracle, Python, Big data, Azure, Python, Manual and Automation Testing, DevOps, Medical Coding etc., with technical trainers with amazing training with a peaceful environment. And we also provide 100+ Live Practical Sessions and Real-Time scenarios which helps you to easily get through the interviews in top MNC’s. for more queries approach us on 7504633633, 7502633633.

Jobi Johnson said...

This was an extremely wonderful post. Thanks for providing this info. albert einstein jacket

Pavithra Devi said...

Such a good post .thanks for sharing
AWS Training in Porur
AWS Training in Chennai

tarunradant said...

Slot machine games | Drmcd
In an increasingly volatile gambling world, video slots and video poker are a new 당진 출장안마 Play free 경상남도 출장샵 video slots and choose where to play. 세종특별자치 출장샵 · Top 사천 출장샵 Games  광주 출장샵 Rating: 3.6 · ‎31 reviews

KP WEBTECH said...

Web Design Company in Chennai - Website Designing Company in Chennai
Why Chennai is an IT Hub and How to Identify a Good Web Designer in Chennai?

Chennai has for long been a software hub and a major magnet to attract the right programming talent. While customers from all over the world engage with different software companies based on their unique needs, Chennai offers some excellent advantages in the domains of software development, web design, online marketing and SEO.

Lookobeauty said...

https://lookobeauty.com/makeup-artist-institute-makeup-artist-course-in-gurgaon/

Nice Content

Lookobeauty said...

https://lookobeauty.com/makeup-artist-institute-makeup-artist-course-in-gurgaon/

Looking For Best Makeup Artist Course In Gurgaon. Best Makeup Artist Institute With Affordable Fees, Best Placement Record By Top Makeup Teachers In Gurgaon.

iTech India said...

Hi, Thanks for sharing such great information using this article. This article helps us a lot.

Software development company
Best Web Application Development

SwarnApp said...

Thanks for sharing the knowledgeable stuff to enlighten us no words for this amazing blog..
best jewellery software jewellery accounting software swarnapp software

SwarnApp said...

Thanks for sharing the knowledgeable stuff to enlighten us no words for this amazing blog.
best jewellery software jewellery accounting software swarnapp software
software for jewellers

Jake sully said...

Thank you for sharing this valuable information with us.
how to make a good paper airplane that flies far | best paper model | the best glider paper airplane | paper airplane aerodynamics | super paper airplanes | how to make easy paper planes | control surfaces on a plane

web hosting said...

Thanks very much for that pointer.
Shared Web Hosting

Thinkerstep said...

Nice Blog
Web Development Agency USA
Web Development Agency USA

Swarnapp Jewellery Software said...

Thanks for sharing such a Wonderful blog.
Jewellery ERP Software UAE
Jewellery ERP Software UAE

Techworld said...

Thanks for sharing this amazing article. it is really helpful and informative. comptia a+ online course

Techworld said...

Thanks for sharing this: comptia a+ certification training

Techworld said...

This article is really useful. thanks for sharing this. rpa certification

VISWA Technologies said...

Wow, that’s what I was exploring for, what a material! present here at this website, thanks admin of this web site.
Oracle Performance Training
<a href="https://viswaonlinetrainings.com/courses/java-online-training/>JAVA Training</a>

Magdalnemary said...

Thanks for the notes that you have published here. Though it looks familiar, it's a very good approach you have implemented here. Thanks for posting content in your blog. I feel awesome to be here.
Java Training in Chennai

StrongBox IT said...

Thanks for sharing this post.

Cybersecurity Consulting Services | Software Testing Services in Chennai | Penetration Testing Services in Chennai

Bharath said...

I appreciate your hard work, Thanks for sharing your blog with us
DevOps training in Hyderabad

«Oldest ‹Older   201 – 348 of 348   Newer› Newest»