"Outbound" stands for any behavior or event related to links pointing to URLs outside the current domain.
Questions tagged [outbound]
211 questions
2
votes
2 answers
Mule Read timed out exception
I have an esb from which i make a webservice call,which works fine most of the times, but sometimes i get the below exception
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at…

Pavan JHNR
- 49
- 1
- 11
2
votes
1 answer
Spring Integration unit test http:outbound-gateway
Trying to figure out how to best unit test an http:outbound-gateway in a Spring Integration workflow.
Here's what our gateway looks like:

Sean Connolly
- 5,692
- 7
- 37
- 74
2
votes
2 answers
How to limit SMTP delivery to hourly batches
In an effort to keep us from being labeled spammers by major ISPs (in addition to SPF records, privacy policies, CANSPAM compliance and the like) - I wanted to limit the amount of mail we send out an hour.
Is this possible in W2K3 SMTP server? I…

Jeremy W
- 51
- 3
2
votes
1 answer
How to create outbound messages programmatically in Salesforce? (Using Metadata API)
Is there a way to create outbound messages programmatically in Salesforce? for example a class in which make Metadata API call to create an outbound message?
Any code sample?

benji_r
- 535
- 2
- 16
- 34
2
votes
1 answer
Mule - how to get the name of the file created in an outbound endpoint
I have a Mule application that is writing a file in an outbound endpoint, with the config below:
Following this…

danw
- 1,608
- 4
- 29
- 48
2
votes
2 answers
mule- serialization exception while making outbound call
I have a simple flow which has an http inbound endpoint. I am trying to consume a http outbound and received the following exception.
I am able to consume the same outbound directly from SOAP UI. But, unable to call through Mule…

user3322736
- 21
- 3
2
votes
2 answers
Making a TCP connection through a restrictive outbound firewall
I'm using Java to create a client/server application that communicates using TCP. The network that the client is running on has an outbound firewall that prevents the client from connecting to the server. Is there any way/workaround to create a TCP…

Jephir
- 1,331
- 17
- 16
2
votes
2 answers
Mule http:outbound-endpoint + multipart/form-data
I'm trying to call a rest service that expects to receive a multipart/form-data and I am facing some issues with this.
After a while searching, I've understood that I had to move the payload to an outbound attachment and set the payload to null.
…

Paola Bueno
- 113
- 2
- 8
2
votes
0 answers
Problems with Spring Integration HTTP outbound channel adapter
I am using spring integration 2.2.4 and am trying to add HTTP outbound channel adapter for invoking GET/POST REST services. Currently the adapter is getting displayed in the graph view but when I am trying to drag and use it in the code , it is not…

Samadarshee
- 61
- 1
- 1
- 4
2
votes
1 answer
Leading zero for outbound asterisk call
Hy all,
I am a newbie in asterisk so don't know much about it. I am currently tangled in an application which makes an outbound call. Previously it wasn't working due to some provisioning issues and then ANI was showing NULL value. But now it's…

IConfused
- 714
- 2
- 8
- 20
2
votes
0 answers
IIS 7 outbound rule not rewriting HTML href
I am trying to rewrite a html response with an outboundrule, but it is not working: This are my inbound and outbound rules:

Abel Padilla Mijares
- 21
- 2
2
votes
2 answers
Spring Integration, delete file in outbound channel adapter
I am using Spring Integration to poll a directory for a File, process this file in a service class, write this file to an output directory and then delete the original file.
I have the following XML configuration:

kwh
- 654
- 1
- 9
- 19
2
votes
1 answer
asterisk how to create outbound calls
I have a sip server. In the extensions.conf i've set the following:
[extensions.conf]
exten =>1,1,Dial(SIP/1,20,tr)
exten => 1,n,Hangup()
exten => 2,1,Dial(SIP/2,20,tr)
exten => 2,n,Hangup()
I need to be able to have outbound calls. I mean from…

user1165435
- 231
- 2
- 4
- 11
2
votes
2 answers
How to implement audio ring for SIP outbound calls
Im using the android.net.sip class to make SIP calls
Although, I can make calls and capture all the audio events from the call session
Like ringing, busy, callconnected.....
How do i add the ringbacktone, and busy tone to the calls.
By default…

user1203336
- 31
- 4
1
vote
1 answer
Using file:outbound-channel-adapter in Spring Integration, can I append to an existing file
We have an application that reads XML from a message queue and writes to a flat file. The naming convention we have to use for the flat file limits us to writing one file per second. This is dictated by a third party application.
Can I configure…

Joseph Nelson
- 93
- 10