Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification.
The following page has been changed by Deepal: http://wiki.apache.org/ws/FrontPage/Axis2/hackathon_13_06 ------------------------------------------------------------------------------ [09:34] srinathp: I am working on https://issues.apache.org/jira/browse/AXIS2-2118 pls let me know if any of + + [09:41] azeez: return omEle; + + [09:41] azeez: } + + [09:41] azeez: public String echoString(String in) { + + [09:41] azeez: return in; + + [09:41] azeez: } + + [09:41] azeez: public int echoInt(int in) { + + [09:41] azeez: return in; + + [09:41] azeez: } + + [09:41] azeez: public String throwAxisFault() throws AxisFault { + + [09:41] azeez: OMFactory fac = OMAbstractFactory.getOMFactory(); + + [09:41] azeez: OMElement ele = fac.createOMElement("wso2wsas", fac.createOMNamespace("", "")); + + [09:41] azeez: ele.setText("This is a method which simply throws an AxisFault"); + + [09:41] azeez: throw new AxisFault(new QName("wso2wsas_code"), + + [09:41] azeez: "This is a method which simply throws an AxisFault", "wso2_node", + + [09:41] azeez: "admin", ele); + + [09:41] azeez: } + + [09:42] azeez: public SimpleBean echoStringArrays(String[] a, String[] b, int c) { + + [09:42] azeez: / + + [09:42] azeez: SimpleBean bean = new SimpleBean(); + + [09:42] azeez: bean.setA_r(a); + + [09:42] azeez: bean.setB_r(b); + + [09:42] azeez: bean.setC(c); + + [09:42] azeez: return bean; + + [09:42] azeez: } + + [09:42] azeez: } + + [09:42] azeez: the WSDL is about 1KM long :D + + [09:43] azeez: Here is the SimpleBean class + + [09:43] azeez: public class SimpleBean { + + [09:43] azeez: private String[] a_r; + + [09:43] azeez: private String[] b_r; + + [09:43] azeez: private int c; + + [09:43] azeez: public String[] getA_r() { + + [09:44] azeez: return a_r; + + [09:44] azeez: } + + [09:44] azeez: public void setA_r(String[] a_r) { + + [09:44] azeez: this.a_r = a_r; + + [09:44] azeez: } + + [09:44] azeez: public String[] getB_r() { + + [09:44] azeez: return b_r; + + [09:44] azeez: } + + [09:44] azeez: public void setB_r(String[] b_r) { + + [09:44] azeez: this.b_r = b_r; + + [09:44] azeez: } + + [09:44] azeez: public int getC() { + + [09:44] azeez: return c; + + [09:44] azeez: } + + [09:44] azeez: public void setC(int c) { + + [09:44] azeez: this.c = c; + + [09:44] azeez: } + + [09:44] azeez: } + + [09:50] Deepal: azeez was it wroking b4 + + [10:00] azeez: ?wsdl is it? + + [10:01] azeez: ?wsdl was working well b4 + + [10:02] Deepal: hmm + + [10:02] Deepal: there was no any changes in ?wsdl generation in the hackathon + + [10:03] azeez: can u reproduce the error? + + [10:04] Deepal: will do + + [10:07] chamikara has joined + + [10:10] sandakith has joined + + [10:47] sandakith has disconnected: Read error: 60 (Operation timed out) + + [10:52] amila_suriarachc: hi + + [10:52] amila_suriarachc: I am working on https://issues.apache.org/jira/browse/AXIS2-2682 + + [10:53] amila_suriarachc: do Axis2 support soapHeaderFaults + + [10:53] amila_suriarachc: i.e. <soap:header message="tns:POSubmit" part="ConfigurationHeader" use="literal"> + + [10:53] amila_suriarachc: <soap:headerfault message="cfg:ConfigurationFaultMessage" + part="ConfigurationFault" use="literal"/> + + [10:53] amila_suriarachc: </soap:header> + + [10:54] {aaron} has joined + + [10:54] {aaron}: .... hackathon at Indiana University? + + [10:56] azeez: yep, this is the hackathon at Indiana University + + [10:57] sandakith has joined + + [10:59] {aaron}: interesting + + [10:59] {aaron}: anyway, i have a question...i have axis (1.2.x) behind a reverse proxy and the wsdl it autogenerates for deployed services has the + wrong endpoint address + + [10:59] {aaron}: is there a way I can change that url? like, set a base url/path somewhere? + + [11:01] azeez: r u using Axis or Axis2? + + [11:02] {aaron}: axis + + [11:03] azeez: hmm... most of us guys here are Axis2 developers + + [11:06] {aaron}: ok, no problem + + [11:07] {aaron}: it's interesting because I'm at Cornell and I work with a team that's at IU UITS on Kuali projects + + [11:07] {aaron}: (not sure if you've heard of that) + + [11:07] {aaron}: they are working on a services bus amongst other things + + [11:08] {aaron}: gotta go, have fun ;) + + [11:08] {aaron} has disconnected + + [11:12] azeez: Guys, FaultSerializationTest in the kernel is also failing for me + + [11:12] azeez: do I need to get an update of Axiom ? + + [11:12] gdaniels: probably + + [11:19] saminda has disconnected: Remote closed the connection + + [11:20] srinathp: yes .. that test only work with most uptodate OM + + [11:24] ajith has joined + + [11:33] azeez: Hi Ajith... u @ iu? + + [11:34] ajith: nope + + [11:34] ajith: still in cal + + [11:34] azeez: cool + + [11:34] ajith: going there tomorrw + + [11:35] gdaniels: your chair is all ready for you here Ajith :) + + [11:41] davidillsley has disconnected: Read error: 104 (Connection reset by peer) + + [12:28] Chinthaka has joined + + [12:33] Deepal: hmm + + [12:34] Deepal: we are continue on JIRA fixing + + [12:38] azeez: Guys, I committed my code with the call to replication after invocation of biz logic + + [12:38] azeez: gotta go now + + [12:38] Deepal: cool + + [12:38] Deepal: so is this way , everything working fine for you + + [12:38] Deepal: or do you need any more changes + + [12:39] azeez: yes tits fine + + [12:39] azeez: :D + + [12:39] azeez: sorry I meant "its fine" + + [13:00] azeez has disconnected: Read error: 113 (No route to host) + + [13:09] Chinthaka has disconnected: Read error: 104 (Connection reset by peer) + --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]