You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by yulinxp <yu...@gmail.com> on 2008/02/22 19:35:50 UTC

Tcpmon question

It's easy to set up for local server http://localhost:8080/xxxx
But if I want to see soap message between client & amazon service,
 http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl?
How do I know which port the server is running on??


-- 
View this message in context: http://www.nabble.com/Tcpmon-question-tp15640354p15640354.html
Sent from the cxf-user mailing list archive at Nabble.com.


Re: Tcpmon question

Posted by Thiago Bartolomei <th...@gmail.com>.
Hi,

the S in httpS means it is Secure. The soap message is encrypted, so you
won't be able to see it with tcpmon.

[]s
Thiago


On Fri, Feb 22, 2008 at 4:39 PM, yulinxp <yu...@gmail.com> wrote:

>
> 443 for default https port?
> I can make the call, but the soap message displayed in tcpmon is not-plain
> text.
> Don't know how to read it.
>
> --
> View this message in context:
> http://www.nabble.com/Tcpmon-question-tp15640354p15641677.html
> Sent from the cxf-user mailing list archive at Nabble.com.
>
>

Re: Tcpmon question

Posted by yulinxp <yu...@gmail.com>.
443 for default https port?
I can make the call, but the soap message displayed in tcpmon is not-plain
text.
Don't know how to read it.

-- 
View this message in context: http://www.nabble.com/Tcpmon-question-tp15640354p15641677.html
Sent from the cxf-user mailing list archive at Nabble.com.


Re: Tcpmon question

Posted by yulinxp <yu...@gmail.com>.

for https, what would be the default port number?




Glen Mazza-2 wrote:
> 
> 
> Am Freitag, den 22.02.2008, 10:35 -0800 schrieb yulinxp:
>> It's easy to set up for local server http://localhost:8080/xxxx
>> But if I want to see soap message between client & amazon service,
>> 
>> http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl?
>> How do I know which port the server is running on??
>> 
>> 
> 
> I believe that would be 80 by default.  
> 
> http://webservices.amazon.com = http://webservices.amazon.com:80
> 
> (Were it https://, it would be 443).
> 
> Glen
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Tcpmon-question-tp15640354p15641663.html
Sent from the cxf-user mailing list archive at Nabble.com.


Re: Tcpmon question

Posted by Glen Mazza <gl...@verizon.net>.
Am Freitag, den 22.02.2008, 13:19 -0800 schrieb yulinxp:
> Thanks. I was following your web-log 
> http://www.jroller.com/gmazza/entry/sun_s_wsmonitor_tool
> 
> I save the wsdl file, and change <soap:address> from 
> <soap:address
> location="http://soap.amazon.com/onca/soap?Service=AWSECommerceService"/>
> to
> <soap:address
> location="http://localhost:4040/onca/soap?Service=AWSECommerceService"/>
> 
> For tcpmon, I set the followings, and it works for tcpmon!!!
> local port:4040
> Server Name: soap.amazon.com
> Server port:80

> But similiar setting for wsmonitor doesn't work. 
>     <connection
>         name="Amazon debugging"
>         description="4040->Amazon"
>         listenPort="4040"
>         targetHost="soap.amazon.com"
>         targetPort="80"/>
> 
> 

I'm not sure why not.  Wireshark is another option if you are not happy
with tcpmon: http://www.jroller.com/gmazza/entry/wireshark_usage_for_cxf

Glen


Re: Tcpmon question

Posted by yulinxp <yu...@gmail.com>.
Thanks. I was following your web-log 
http://www.jroller.com/gmazza/entry/sun_s_wsmonitor_tool

I save the wsdl file, and change <soap:address> from 
<soap:address
location="http://soap.amazon.com/onca/soap?Service=AWSECommerceService"/>
to
<soap:address
location="http://localhost:4040/onca/soap?Service=AWSECommerceService"/>

For tcpmon, I set the followings, and it works for tcpmon!!!
local port:4040
Server Name: soap.amazon.com
Server port:80

But similiar setting for wsmonitor doesn't work. 
    <connection
        name="Amazon debugging"
        description="4040->Amazon"
        listenPort="4040"
        targetHost="soap.amazon.com"
        targetPort="80"/>


-- 
View this message in context: http://www.nabble.com/Tcpmon-question-tp15640354p15641656.html
Sent from the cxf-user mailing list archive at Nabble.com.


Re: Tcpmon question

Posted by Glen Mazza <gl...@verizon.net>.
Am Freitag, den 22.02.2008, 10:35 -0800 schrieb yulinxp:
> It's easy to set up for local server http://localhost:8080/xxxx
> But if I want to see soap message between client & amazon service,
>  http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl?
> How do I know which port the server is running on??
> 
> 

I believe that would be 80 by default.  

http://webservices.amazon.com = http://webservices.amazon.com:80

(Were it https://, it would be 443).

Glen