[00:12:03] *** kcbabo has quit IRC [00:54:02] *** kcbabo has joined #switchyard [00:54:03] *** kcbabo has joined #switchyard [01:30:11] *** ldimaggi has joined #switchyard [01:58:20] *** kcbabo has quit IRC [02:35:42] *** kcbabo has joined #switchyard [02:35:42] *** kcbabo has joined #switchyard [02:50:06] *** ldimaggi_ has joined #switchyard [02:50:15] *** ldimaggi_ has quit IRC [04:11:30] *** kcbabo has quit IRC [04:23:49] *** lanceball has joined #switchyard [05:12:53] *** ldimaggi has quit IRC [05:26:41] *** lanceball has quit IRC [05:50:29] *** kcbabo has joined #switchyard [05:50:29] *** kcbabo has joined #switchyard [07:30:17] *** magesh has joined #switchyard [07:54:27] *** kcbabo has quit IRC [08:11:50] *** dbevenius has joined #switchyard [08:20:46] *** javahorn has joined #switchyard [09:30:21] *** dbevenius has quit IRC [09:38:15] *** dbevenius has joined #switchyard [10:21:56] *** rbalent has joined #switchyard [10:21:56] *** rbalent has joined #switchyard [10:54:18] *** tfennelly has joined #switchyard [11:09:42] <magesh> tfennelly: Hi Tom [11:10:10] <tfennelly> magesh: hey magesh [11:10:25] <tfennelly> magesh: I have a question for you actually [11:10:32] <magesh> tfennelly: :) me first [11:10:38] <tfennelly> magesh: I'll post something in a few mins and point your to it [11:10:42] <tfennelly> magesh: sure... go [11:10:59] <tfennelly> magesh: I'm not ready to ask mine yet anyway :) [11:11:09] <magesh> tfennelly: The pull request have to wait for Keith to push? The one regarding the port issue [11:12:10] <tfennelly> magesh: I don't think so... unless there are major arch changes, I try to handle them for him if I can (if I check to see are there any) [11:12:34] <magesh> tfennelly: Okay, if you can push it that will be great [11:12:46] <tfennelly> magesh: if I see changes that are biggies... loads of changes... I check with him first to make sure [11:12:58] <tfennelly> magesh: I will... sorry... there are a few things in the queue [11:13:03] <magesh> tfennelly: This one is no biggie [11:13:08] <magesh> tfennelly: Now your turn [11:13:08] <tfennelly> magesh: sure [11:13:41] <tfennelly> magesh: I'll post something in a few mins... it's re creating a SOAPMessage for a Fault [11:13:56] <tfennelly> magesh: will give more details in a few mins [11:14:16] <magesh> tfennelly: Okay [11:14:18] <tfennelly> magesh: you 'll know the answer since you've been all over that API [11:14:48] <magesh> tfennelly: :)) [12:06:06] *** dbevenius1 has joined #switchyard [12:06:45] *** dbevenius has quit IRC [12:38:08] *** vinicius has joined #switchyard [12:49:31] *** rbalent has quit IRC [12:50:33] *** rbalent has joined #switchyard [13:11:35] *** GitHub112 has joined #switchyard [13:11:35] <GitHub112> [components] tfennelly pushed 1 new commit to master: http://git.io/FOz6Ww [13:11:35] <GitHub112> [components/master] SWITCHYARD-443 "camel-core pom should not specify groupId but instead - Daniel Bevenius [13:11:35] *** GitHub112 has left #switchyard [13:16:08] * magesh funny to read this ;) camel-core pom should not specify groupId but instead - Daniel Bevenius [13:26:06] *** GitHub16 has joined #switchyard [13:26:06] <GitHub16> [components] tfennelly pushed 1 new commit to master: http://git.io/wE_AcQ [13:26:06] <GitHub16> [components/master] [SWITCHYARD-446] - Disable stopping inbounds in SOAPGatewayTest - Magesh Kumar B [13:26:06] *** GitHub16 has left #switchyard [14:32:00] *** lanceball has joined #switchyard [14:34:00] *** ldimaggi has joined #switchyard [14:35:26] *** rbalent has quit IRC [14:35:59] *** rbalent has joined #switchyard [14:35:59] *** rbalent has joined #switchyard [14:37:42] *** tfennelly has quit IRC [14:45:44] *** tfennelly has joined #switchyard [14:58:48] *** tcunning has joined #switchyard [15:00:15] *** igarashitm has joined #switchyard [15:03:56] <igarashitm> tfennelly: Hi, thanks for your comment [15:04:11] <tfennelly> igarashitm: no probs [15:04:19] <tfennelly> igarashitm: hope they made sense [15:05:43] <igarashitm> tfennelly: yes, I've got it, so all components should pass the Complete SOAP Fault envelope to sendFault(), right? [15:06:30] <igarashitm> tfennelly: I was thinking when component pass the custom XML to sendFault(), but it should be thrown the exception? [15:06:31] <tfennelly> igarashitm: no.. I wasn't saying that actually [15:07:36] <tfennelly> igarashitm: the components throwing an exception is one way of getting the HandlerChain to generate the SOAP Fault [15:08:18] <tfennelly> igarashitm: then at the SOAP component layer ... it needs to check if it's a complete message OR NOT (i.e. doesn't have to be) [15:08:37] <igarashitm> tfennelly: ok [15:08:39] <tfennelly> igarashitm: if it's a complete message it builds from that [15:09:01] <tfennelly> igarashitm: if it's not... then we assume we're just getting the payload fragment of XML [15:09:12] <tfennelly> igarashitm: and we build the rest of the message around that [15:09:50] <igarashitm> tfennelly: ok, and Keith said that XML fragment should be in Detail [15:09:54] *** rbalent has quit IRC [15:10:04] <tfennelly> igarashitm: but I think the main point for your change is... do all the SOAPMessage construction in the one place i.e. in the MessageDecomposer [15:10:12] <tfennelly> igarashitm: right [15:10:29] *** rbalent has joined #switchyard [15:11:19] <tfennelly> igarashitm: it's the job of the MessageDecomposer to create a valid SOAP message (either from a complete SOAP message, or from a fragment) [15:12:06] <tfennelly> igarashitm: if it doesn't do that properly, I think the InboundHandler should gen an error Vs trying to second-guess/fix-up [15:12:31] <igarashitm> tfennelly: ok I see, now in my code, part of building SOAP Fault logic is in SOAPUtil. that should be move to MessageDecomposer [15:13:19] <tfennelly> igarashitm: I think so... the Decomposer is doing all that SOAPMessage magic already... no need to be doing it in multiple places [15:14:55] <igarashitm> tfennelly: ok that sounds right for me too, thanks [15:15:19] *** rbalent has quit IRC [15:15:47] *** rbalent has joined #switchyard [15:15:47] *** rbalent has joined #switchyard [15:17:37] *** tfennelly has quit IRC [15:17:58] <igarashitm> tfennelly: and why I was URLEncoding is... the SOAP Fault/faultString can't have XML fragment but just String.. but I should know can I have XML fragment in Fault/Detail.. if it's OK, I don't need to URLEncode it [15:19:11] *** rcernich has joined #switchyard [15:19:20] <igarashitm> ops [15:22:01] *** antollinim has joined #switchyard [15:29:57] *** ldimaggi has quit IRC [15:30:06] *** ldimaggi has joined #switchyard [15:30:22] *** ldimaggi has quit IRC [15:30:26] *** ldimaggi has joined #switchyard [15:30:51] *** ldimaggi has quit IRC [15:36:13] <igarashitm> ok... Fault/detail has any contents so I don't need to URL encode... [15:36:25] *** ldimaggi has joined #switchyard [15:37:58] *** tfennelly has joined #switchyard [15:41:29] *** igarashitm has quit IRC [15:42:25] *** tfennelly has quit IRC [15:48:56] *** igarashitm has joined #switchyard [16:01:25] *** bfitzpat has joined #switchyard [16:11:47] *** rbalent has quit IRC [16:12:28] *** rbalent has joined #switchyard [16:50:57] *** tfennelly has joined #switchyard [17:09:00] *** magesh has quit IRC [17:55:38] *** lanceball is now known as lance|afk [18:20:35] *** dbevenius1 has quit IRC [18:58:01] *** lance|afk is now known as lanceball [19:04:36] *** antollinim has quit IRC [19:04:54] *** antollinim has joined #switchyard [19:20:29] *** errantepiphany has joined #switchyard [19:20:39] *** errantepiphany has left #switchyard [19:23:22] *** antollinim has quit IRC [19:25:22] *** antollinim has joined #switchyard [19:37:23] *** antollinim1 has joined #switchyard [19:37:38] *** antollinim has quit IRC [19:56:46] *** ldimaggi has quit IRC [21:04:59] *** kcbabo has joined #switchyard [21:04:59] *** kcbabo has joined #switchyard [21:18:54] *** javahorn has quit IRC [21:20:07] *** rbalent has quit IRC [21:26:30] *** gaYak has quit IRC [21:26:32] *** wyer has quit IRC [21:26:37] *** gaYak has joined #switchyard [21:26:37] *** wyer has joined #switchyard [21:33:49] *** dbevenius has joined #switchyard [21:34:18] *** antollinim1 has quit IRC [21:52:04] *** vinicius has quit IRC [21:57:44] *** ldimaggi has joined #switchyard [22:07:40] *** ldimaggi has quit IRC [22:26:43] *** dbevenius has quit IRC [22:57:06] *** kcbabo has quit IRC [23:35:44] *** igarashitm has quit IRC [23:42:37] *** lanceball has quit IRC