Re: TcpTunnelGui arguments

2002-04-02 Thread Glen Carl - CSC
The listenport and tunnelport will need to be unique java org.apache.soap.util.net.TcpTunnelGui 8070 server 8080 Change SOAP client to localhost 8070 Otherwise, you will get a java.net.BindException: Address already in use. Mark Childerson wrote: > Those are the correct arguments. It will the

Re: TcpTunnelGui arguments

2002-04-02 Thread Mark Childerson
Those are the correct arguments. It will then take any connections to listenport on the machine running TcpTunnelGUI, and tunnel them through to tunnelport on the tunnelhost machine. For example, if you are running a SOAP Server at server:8080, you can run java TcpTunnelGui 8080 server 8080 T

Re: TcpTunnelGui parameters

2002-01-10 Thread Simon Fell
Prout" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 10, 2002 4:13 PM Subject: RE: TcpTunnelGui parameters > > When I send the following command , all is well and works. > > java SOAPClient http://development:85/Manager.WSDL > <http://develop

RE: TcpTunnelGui parameters

2002-01-10 Thread John Prout
When I send the following command , all is well and works. java SOAPClient http://development:85/Manager.WSDL However , when I want to monitor the traffic using TcpTunnelGui as follows : java SOAPClient http://localhost:8001 java or

Re: TcpTunnelGui

2001-10-15 Thread Aczél Csilla
OK, thanks, it's working now! Csilla - Original Message - From: "Darren Morris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 15, 2001 2:17 PM Subject: RE: TcpTunnelGui Hi Csilla, The TcpTunnelGui works by intercepting the packets and

RE: TcpTunnelGui

2001-10-15 Thread Darren Morris
Hi Csilla, The TcpTunnelGui works by intercepting the packets and then forwarding them on to the end destination you specify. So for your localhost example you would probably do something like ... org.apache.soap.util.net.TcpTunnelGui 8090 localhost 8080 Then change your tests to go to port 80

Re: TcpTunnelGui

2001-09-21 Thread Paramdeep Singh
hi, To see what is going on in the TcpTunnel use this to invole the service: resp = call.invoke(new URL("http://myhost:1234/soap/servlet/rpcrouter";), ""); Regards, Paramdeep - Original Message - From: "Simone Badoer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, September

RE: TcpTunnelGui

2001-09-21 Thread Paul Rogers
Did you change your call.invoke to point to port 1234 instead of 8080?   Paul -Original Message-From: Simone Badoer [mailto:[EMAIL PROTECTED]]Sent: Friday, September 21, 2001 10:27 AMTo: [EMAIL PROTECTED]Subject: TcpTunnelGui Hi.   My application works correctly. It si

Re: TcpTunnelGui to the FAQs

2001-08-23 Thread Jonathan Chawke
This has been in the SOAP-user faq for quite a while now: http://xml.apache.org/soap/faq/faq_chawke.html#Q2_10 It contains links to what IMHO are good, clear explanations of how to use the tcp tunnel gui. Thanks, Jonathan. >From: Eduardo Yánez <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >

RE: TcpTunnelGui in Apache SOAp.2

2001-08-14 Thread mario . heiss
It's not necessary to run TCPTunnel at Linux, you can configure TCPTunnel in this way, that it is connecting against your web Server. That means you run your sources at your local PC also TCPTunnel which is connecting against your Linux WebServer. Just make a File with the extension .cmd and co

RE: TcpTunnelGui program

2001-07-27 Thread Eduardo Yánez
Title: RE: TcpTunnelGui program Hi Jody, With the command line: java org.apache.soap.util.net.TcpTunnelGui 8082 localhost 8080 the TcpTunnelGui listen for HTTP resquests on 8082 port (showing the SOAP request on the left scrolled window of the TcpTunnelGUI) and redirects the request from

RE: TcpTunnelGui program

2001-07-27 Thread gregg . leichtman
rdman, Jody" <[EMAIL PROTECTED]> on 07/27/2001 09:24:28 AM Please respond to [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> cc: Subject: RE: TcpTunnelGui program Thanks to Gregg and Sri for your help but I am still confused about the open port.

RE: TcpTunnelGui program

2001-07-27 Thread Bardman, Jody
Title: RE: TcpTunnelGui program Thanks to Gregg and Sri for your help but I am still confused about the open port. Gregg: in your example of the open port of 8091, TcpTunnelGui is listening on port 8091 but what is telling SOAP to send data to that port? Putting an unused port in the command

Re: TcpTunnelGui program

2001-07-27 Thread gregg . leichtman
You are trying to talk into and send out of the same port number. This ties up the port for either the input or output and then the attempt to use it for output or input respectively gives a Bind exception because the port is already in use. Any time you try and use any port that is already in us

RE: TcpTunnelGui program

2001-07-27 Thread Sri Sankaran
Title: TcpTunnelGui program Jody:   Try   java org.apache.soap.util.net.TcpTunnelGui  9898 CorePortal10 8100       where 9898 is some random port -- hopefully not in use.  The idea is that you route your request to the TunnelGui which then forwards it to your SOAP servlet.       Hope that

Re: TcpTunnelGui.

2001-06-28 Thread oh
ROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 8:12 PM Subject: Re: TcpTunnelGui. > Yes, I am behind a proxy. > I've tried this other tool you suggested. Even that one doesn't work with a > proxy. > Can you suggest what should I do to make it work from b

Re: TcpTunnelGui.

2001-06-28 Thread Tarun Garg
This is the correct url. This gives the "can respond to post request only" error as expected with a browser. - Original Message - From: "venkat reddy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, June 28,

Re: TcpTunnelGui.

2001-06-28 Thread Tarun Garg
L PROTECTED]> Sent: Wednesday, June 27, 2001 5:44 PM Subject: Re: TcpTunnelGui. > Yes, you can. > But maybe you are behind a firewall or a proxy and/or you cannot resolve > the Domain Name. > > There is another good tool you can try, which I use for Debugging. Have > a look a

Re: TcpTunnelGui.

2001-06-27 Thread Gopinath M.R.
Hi, When you are using TcpTunnelGui, the format is The second parameter has to be only remote host IP address and not complete URL, I guess the following command should work. java org.apache.soap.util.net.TcpTunnelGui 8070 www-3.ibm.com 80 The relative URL part ("serv

RE: TcpTunnelGui.

2001-06-27 Thread venkat reddy
]] Sent: Wednesday, June 27, 2001 5:14 AM To: [EMAIL PROTECTED] Subject: Re: TcpTunnelGui. Yes, you can. But maybe you are behind a firewall or a proxy and/or you cannot resolve the Domain Name. There is another good tool you can try, which I use for Debugging. Have a look at http://www.pocketsoap.com

Re: TcpTunnelGui.

2001-06-27 Thread Chiranjeevi Paruchur
Hi ! All, I am new to SOAP and XML but we are trying to use SOAP in our latest project. While reading the Documentation for Apache Soap I found there are some APIs. Can some one throw light on how to use them and where to use them. Sorry for this nonsense question. Thanks in advance Chiran

Re: TcpTunnelGui.

2001-06-27 Thread Hartmut Bernecker
Yes, you can. But maybe you are behind a firewall or a proxy and/or you cannot resolve the Domain Name. There is another good tool you can try, which I use for Debugging. Have a look at http://www.pocketsoap.com/tcptrace/. Tarun Garg schrieb: > > Can I use TcpTunnelgui to tunnel my soap reques

RE: TcpTunnelGui

2001-06-25 Thread Hansen, Richard
Did you send the message to the TCPTunnel? You need to call SOAP on port 7007. > -Original Message- > From: Eva Flora [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 22, 2001 6:45 PM > To: [EMAIL PROTECTED] > Subject: TcpTunnelGui > > > My weblogic server is running on port 7005 and I i

Re: TcpTunnelGui tool port question

2001-06-19 Thread sachin chaudhari
Dim Thanks a lot for the exaplinnation. So you are saying my soap server listens on a port different than weblogic server. Is there a way to find out what port the soap is listening on?? Unfortunately the following did not work: java org.apache.soap.util.net.TcpTunnelGui 8088 localhost 8080 ---

Re: TcpTunnelGui tool port question

2001-06-19 Thread Nirmal Mukhi
Hello Sachin, You need to modify either the client or the server so that you can put TcpTunnelGui between them. For example, you could leave your client as it is but run weblogic at port 7002. Then run TcpTunnelGui with your tunnelport as 7002 and listenport as 7001. Nirmal.

Re: TcpTunnelGui tool port question

2001-06-19 Thread Dmitri Colebatch
what is wl listening for on 7001? isn't that its T3 port? to use the tunnel gui have the client send requests to a different port (in this example 7002) and the tunnel gui will display them and forward them to a different port (7001). use the following: java org.apache.soap.util.net.TcpTunne