mule-studio

Mule 3.5 Community throwing No Suitable Driver found

依然范特西╮ 提交于 2019-12-08 12:18:41
问题 I was working on the AnyPoint Studio with Mule 3.5 Community Runtime, while trying to connec to my oracle db it is throwing the following error at runtime INFO 2014-05-30 12:16:32,875 [[externaladdresssearch].connector.http.mule.default.receiver.02] org.mule.lifecycle.AbstractLifecycleManager: Initialising: 'connector.VM.mule.default.dispatcher.1832211181'. Object is: VMMessageDispatcher INFO 2014-05-30 12:16:32,875 [[externaladdresssearch].connector.http.mule.default.receiver.02] org.mule

Consuming a JAX-WS in a Mule ESB flow

雨燕双飞 提交于 2019-12-08 09:25:51
问题 I want to consume a JAX-WS service method. the methode is named find and accept a String as argument. this the Mule flow : <flow name="InvokeAWebServiceFlow1" doc:name="InvokeAWebServiceFlow1"> <file:inbound-endpoint path="C:\MuleStudio\SandBox\input" pollingFrequency="3000" responseTimeout="10000" doc:name="File"/> <file:file-to-string-transformer encoding="UTF-8" mimeType="text/xml" doc:name="File to String"/> <cxf:jaxws-client port="douaneWSPort" serviceClass="WSDL.DouaneWS" doc:name="SOAP

How to read SQL queries from properties file in Mule 3.5 Database connector

旧街凉风 提交于 2019-12-08 04:57:05
问题 I have a Mule flow which is fetching Data from Database using Mule 3.5 Database connector ... My Mule Flow is following :- <flow name="BestelItems" doc:name="BestelItems"> <poll doc:name="Poll"> <fixed-frequency-scheduler frequency="30" timeUnit="SECONDS"/> <db:select config-ref="Generic_Database_Configuration" doc:name="Database"> <db:parameterized-query><![CDATA[select * from getData]]></db:parameterized-query> </db:select> </poll> <mulexml:object-to-xml-transformer doc:name="Object to XML"

to store a message in rabbitmq from mule

£可爱£侵袭症+ 提交于 2019-12-08 03:28:31
问题 Below is my flow and i'm trying to store my salesforce batch information into a queue in rabbit mq <flow name="foreachsimilar_pmFlow1" doc:name="foreachsimilar_pmFlow1"> <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" doc:name="HTTP"/> <sfdc:create-job config-ref="Salesforce1" type="HRISASI__c" operation="insert" doc:name="Salesforce"/> <set-variable variableName="batchID" value="1" doc:name="Variable"/> <set-property propertyName="jobInfo" value="#

to store a message in rabbitmq from mule

爱⌒轻易说出口 提交于 2019-12-07 13:18:27
Below is my flow and i'm trying to store my salesforce batch information into a queue in rabbit mq <flow name="foreachsimilar_pmFlow1" doc:name="foreachsimilar_pmFlow1"> <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" doc:name="HTTP"/> <sfdc:create-job config-ref="Salesforce1" type="HRISASI__c" operation="insert" doc:name="Salesforce"/> <set-variable variableName="batchID" value="1" doc:name="Variable"/> <set-property propertyName="jobInfo" value="#[payload]" doc:name="Property"/> <set-variable variableName="jobId" value="#[payload.id]" doc:name=

Mule + ZenDesk: Unhelpful error message: “null (java.lang.UnsupportedOperationException). Message payload is of type: ZendeskConnector$1”

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-07 08:17:21
问题 I think this is some type of generic MuleSoft error message, basically saying that it's either unhappy about the input or output, but I've made the simplest flow that I can, and as far as I know there are no parameters to pass. The test flow I'm trying to do: HTTP -> ZenDesk/ListTickets -> Set Payload ("hello world") Things I've looked at: I'm using a global config and the connection verifies I'm using my password (vs. the security token) If I make the password incorrect I get a 401 as

How to call stored procedure from Mule 3.5 with new Database endpoint

大憨熊 提交于 2019-12-07 06:32:06
问题 I was testing Mule's new Database connector of Mule 3.5 with Stored Procedure ... (Reference :- http://www.mulesoft.org/documentation/display/current/Database+Connector ).. I had a following Stored Procedure :- ALTER PROCEDURE [dbo].[sp_retrieveData] @Id int AS Select * from getData Where ID = @Id Which is working fine in Mule's old JDBC connector ... I used to call the stored procedure from the JDBC endpoint using the following syntax :- <jdbc-ee:query key="RetriveQuery" value="CALL sp

Mule ESB 3.6 - Best way to convert BufferedInputStream to XML

北战南征 提交于 2019-12-06 15:52:03
问题 I have a Mule ESB project using HTTP Connector where I want to use XPath to split/route the XML. The message payload after the HTTP Connector is a org.glassfish.grizzly.utils.BufferInputStream. What is the best way to transform this to a type where I can use a component such as a 'Splitter' or 'Expression' (using XPath) to split/route it? The 'Object to XML' doesn't seem to work and the splitter doesn't work when the payload is a String (i.e. using Object to String after HTTP). I would rather

Why Batch scope behave strange when trying to load a Huge Records- Mule ESB

久未见 提交于 2019-12-06 15:17:56
问题 I'm facing issues in Process Record Phase of Batch, Kindly suggest- I'm trying to load the some KB file ( which has about 5000 record). For the success scenario it works. If suppose error happened in input phase for the first hit and the flows stops, when the second time when it try to hit the same record. Mule stops executing in Process Record step .It is not running After loading Phase . Please find the run time logs below 11:55:33 INFO info.org.mule.module.logging.DispatchingLogger -

Mule Studio - pass set variable to Java Transformer

 ̄綄美尐妖づ 提交于 2019-12-06 11:56:25
问题 I've got a flow in mule, and part of it requires two "payload" objects to be passed - one payload is Customer, and the other is Store. The current payload of the flow is set to the Store, and that works correctly being passed into my Java transformer class. I've used Variable (set variable name to Customer) to save my customer payload and am using the property field of my Java Transformer to try and pass that through. Currently it is passing it through to my Java class as a string - rather