Skip to content

Instantly share code, notes, and snippets.

@goldmann
Created November 23, 2012 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goldmann/81ad7a7b3b4d2d510ebf to your computer and use it in GitHub Desktop.
Save goldmann/81ad7a7b3b4d2d510ebf to your computer and use it in GitHub Desktop.
Nov 23, 2012 3:11:55 PM org.apache.cxf.service.factory.ReflectionServiceFactoryBean buildServiceFromClass
INFO: Creating Service {http://ws.as7.goldmann.pl/}CalculatorService from class pl.goldmann.as7.ws.Calculator
Nov 23, 2012 3:11:56 PM org.apache.cxf.services.CalculatorService.CalculatorPort.Calculator
INFO: Outbound Message
---------------------------
ID: 1
Address: http://jboss-as:8080/webservices
Encoding: UTF-8
Content-Type: text/xml
Headers: {Accept=[*/*], SOAPAction=[""]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:add xmlns:ns2="http://ws.as7.goldmann.pl/"><arg0>1.0</arg0><arg1>3.0</arg1></ns2:add></soap:Body></soap:Envelope>
--------------------------------------
Nov 23, 2012 3:11:56 PM org.apache.cxf.services.CalculatorService.CalculatorPort.Calculator
INFO: Inbound Message
----------------------------
ID: 1
Response-Code: 200
Encoding: UTF-8
Content-Type: text/xml;charset=UTF-8
Headers: {Content-Length=[203], content-type=[text/xml;charset=UTF-8], Date=[Fri, 23 Nov 2012 14:11:55 GMT], Server=[Apache-Coyote/1.1]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:addResponse xmlns:ns2="http://ws.as7.goldmann.pl/"><return>4.0</return></ns2:addResponse></soap:Body></soap:Envelope>
--------------------------------------
1 + 3 = 4.0
Nov 23, 2012 3:11:57 PM org.apache.cxf.services.CalculatorService.CalculatorPort.Calculator
INFO: Outbound Message
---------------------------
ID: 2
Address: http://jboss-as:8080/webservices
Encoding: UTF-8
Content-Type: text/xml
Headers: {Accept=[*/*], SOAPAction=[""]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:sub xmlns:ns2="http://ws.as7.goldmann.pl/"><arg0>2.0</arg0><arg1>4.0</arg1></ns2:sub></soap:Body></soap:Envelope>
--------------------------------------
Nov 23, 2012 3:11:57 PM org.apache.cxf.services.CalculatorService.CalculatorPort.Calculator
INFO: Inbound Message
----------------------------
ID: 2
Response-Code: 200
Encoding: UTF-8
Content-Type: text/xml;charset=UTF-8
Headers: {Content-Length=[204], content-type=[text/xml;charset=UTF-8], Date=[Fri, 23 Nov 2012 14:11:55 GMT], Server=[Apache-Coyote/1.1]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:subResponse xmlns:ns2="http://ws.as7.goldmann.pl/"><return>-2.0</return></ns2:subResponse></soap:Body></soap:Envelope>
--------------------------------------
2 - 4 = -2.0
Nov 23, 2012 3:11:57 PM org.apache.cxf.services.CalculatorService.CalculatorPort.Calculator
INFO: Outbound Message
---------------------------
ID: 3
Address: http://jboss-as:8080/webservices
Encoding: UTF-8
Content-Type: text/xml
Headers: {Accept=[*/*], SOAPAction=[""]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:multiply xmlns:ns2="http://ws.as7.goldmann.pl/"><arg0>2.0</arg0><arg1>7.0</arg1></ns2:multiply></soap:Body></soap:Envelope>
--------------------------------------
Nov 23, 2012 3:11:57 PM org.apache.cxf.services.CalculatorService.CalculatorPort.Calculator
INFO: Inbound Message
----------------------------
ID: 3
Response-Code: 200
Encoding: UTF-8
Content-Type: text/xml;charset=UTF-8
Headers: {Content-Length=[214], content-type=[text/xml;charset=UTF-8], Date=[Fri, 23 Nov 2012 14:11:55 GMT], Server=[Apache-Coyote/1.1]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:multiplyResponse xmlns:ns2="http://ws.as7.goldmann.pl/"><return>14.0</return></ns2:multiplyResponse></soap:Body></soap:Envelope>
--------------------------------------
2 * 7 = 14.0
Nov 23, 2012 3:11:57 PM org.apache.cxf.services.CalculatorService.CalculatorPort.Calculator
INFO: Outbound Message
---------------------------
ID: 4
Address: http://jboss-as:8080/webservices
Encoding: UTF-8
Content-Type: text/xml
Headers: {Accept=[*/*], SOAPAction=[""]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:divide xmlns:ns2="http://ws.as7.goldmann.pl/"><arg0>3.0</arg0><arg1>7.0</arg1></ns2:divide></soap:Body></soap:Envelope>
--------------------------------------
Nov 23, 2012 3:11:57 PM org.apache.cxf.services.CalculatorService.CalculatorPort.Calculator
INFO: Inbound Message
----------------------------
ID: 4
Response-Code: 200
Encoding: UTF-8
Content-Type: text/xml;charset=UTF-8
Headers: {Content-Length=[216], content-type=[text/xml;charset=UTF-8], Date=[Fri, 23 Nov 2012 14:11:55 GMT], Server=[Apache-Coyote/1.1]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:divideResponse xmlns:ns2="http://ws.as7.goldmann.pl/"><return>0.42857143</return></ns2:divideResponse></soap:Body></soap:Envelope>
--------------------------------------
3 / 7 = 0.42857143
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment