[Design of JBoss Web Services] - ws tests in jbossas
by scott.stark@jboss.org
I ported the jbossws org.jboss.test.ws.jaxws.webserviceref.WebServiceRefServletTestCase to the jbossas testsuite to validate the injection integration. Two tests pass, and the testDynamicProxy test fails because of a variable expression that is not getting replaced. I'm just running from within eclipse, and the current testsuite/build.xml is not filtering the ws resources like the jbossws test setup is:
| javax.xml.ws.soap.SOAPFaultException: org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
| ...
| Caused by: java.net.UnknownHostException: jbosstest.host.name@
| at java.net.PlainSocketImpl.connect(Unknown Source)
| at java.net.Socket.connect(Unknown Source)
| at java.net.Socket.connect(Unknown Source)
| at sun.net.NetworkClient.doConnect(Unknown Source)
| at sun.net.www.http.HttpClient.openServer(Unknown Source)
| at sun.net.www.http.HttpClient.openServer(Unknown Source)
| at sun.net.www.http.HttpClient.<init>(Unknown Source)
| at sun.net.www.http.HttpClient.New(Unknown Source)
| at sun.net.www.http.HttpClient.New(Unknown Source)
| at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
| at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
| at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
| at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(Unknown Source)
| at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:192)
| ... 34 more
|
|
|
What are we going to define as an integration testsuite for jbossws?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986679#3986679
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3986679
18 years, 1 month
RE: [jbossws-dev] [Design of JBoss Web Services] - <wsdl-java>brocken in 1.0.4
by Jason T. Greene
Sure, that would help a lot Darran.
Thanks!
> -----Original Message-----
> From: jbossws-dev-bounces(a)lists.jboss.org [mailto:jbossws-dev-
> bounces(a)lists.jboss.org] On Behalf Of Darran Lofthouse
> Sent: Thursday, November 16, 2006 8:45 AM
> To: thomas.diesler(a)jboss.com
> Cc: jbossws-dev(a)lists.jboss.org
> Subject: Re: [jbossws-dev] [Design of JBoss Web Services] - <wsdl-
> java>brocken in 1.0.4
>
> Do you want me to take a look at this? I already have an anonymous
type
> wsdl-java test case and fix to commit now that the release is out, I
can
> add this scenario to my test case.
>
> Regards,
> Darran Lofthouse.
>
>
> On Thu, 2006-11-16 at 08:43 -0500, thomas.diesler(a)jboss.com wrote:
> > Jason,
> >
> > could you please have a look at
http://jira.jboss.org/jira/browse/JBWS-
> 1387
> > and determine to what degree wstools i s brocken in 1.0.4
> >
> > It fails on this anonymous type
> >
> >
> > | <s:element name="ExtractUrlResponse">
> > | <s:complexType>
> > | <s:sequence>
> > | <s:element minOccurs="0" maxOccurs="1"
> name="ExtractUrlResult" type="tns:ArrayOfString" />
> > | </s:sequence>
> > | </s:complexType>
> > | </s:element>
> > | <s:complexType name="ArrayOfString">
> > |
> > | <s:sequence>
> > | <s:element minOccurs="0" maxOccurs="unbounded"
> name="string" nillable="true" type="s:string" />
> > | </s:sequence>
> > | </s:complexType>
> > | /code]
> >
> > View the original post :
>
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986521#3986521
> >
> > Reply to the post :
>
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=398652
1
> > _______________________________________________
> > jbossws-dev mailing list
> > jbossws-dev(a)lists.jboss.org
> > https://lists.jboss.org/mailman/listinfo/jbossws-dev
>
> _______________________________________________
> jbossws-dev mailing list
> jbossws-dev(a)lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/jbossws-dev
18 years, 1 month
Re: [jbossws-dev] [Design of JBoss Web Services] - Re: Tcp Monitor liketool for jboss
by Burr Sutter
I will have to give it a try after we get back from Berlin.
Thanks,
Burr
----- Original Message -----
From: jbossws-dev-bounces(a)lists.jboss.org <jbossws-dev-bounces(a)lists.jboss.org>
To: jbossws-dev(a)lists.jboss.org <jbossws-dev(a)lists.jboss.org>
Sent: Thu Nov 16 07:26:34 2006
Subject: [jbossws-dev] [Design of JBoss Web Services] - Re: Tcp Monitor liketool for jboss
I probably I didn't correctly understand what Burr is saying. I try to answer, just to understand better what are his doubts about:
anonymous wrote :
| I actually demo the use of tcpmon since I think it is such a vital tool
| for "debugging". The basic idea is that you find a consumer and
| producer that are happy with each other and capture the SOAP
| conversation (e.g. .NET to .NET) then run your Java to .NET to see what
| the problem might be.
|
And this is the same idea of Lms. Note that clients have to change the address used to invoke webservice, it isn't a transparent proxy.
anonymous wrote :
| With that said, I don't believe a web-based application will serve me
| properly. I like the really little swing-based tcpmon. I've seen other
| presenters talk about using it for hacking websites. You can intercept
| the flow of track between the browser and the server and figure out if
| they are using any hidden fields to carry important information (e.g.
| the price of an item being placed in a shopping cart).
|
I didn't understand what is the real difference between a swing gui and a web based gui in that. It was realy useful for us to debug service call by remote client that could only send request to our internet exposed machine (dmz) where I haven't X server configured (and I don't want one)
Speaking of security: I think there are more interesting malicious sw around the world than a web based tcp monitor, and I think a malicious use of Lms isn't different than a malicious use of tcp mon.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986510#3986510
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3986510
_______________________________________________
jbossws-dev mailing list
jbossws-dev(a)lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jbossws-dev
18 years, 1 month
[Design of JBoss Web Services] - Re: Tcp Monitor like tool for jboss
by maeste
I probably I didn't correctly understand what Burr is saying. I try to answer, just to understand better what are his doubts about:
anonymous wrote :
| I actually demo the use of tcpmon since I think it is such a vital tool
| for "debugging". The basic idea is that you find a consumer and
| producer that are happy with each other and capture the SOAP
| conversation (e.g. .NET to .NET) then run your Java to .NET to see what
| the problem might be.
|
And this is the same idea of Lms. Note that clients have to change the address used to invoke webservice, it isn't a transparent proxy.
anonymous wrote :
| With that said, I don't believe a web-based application will serve me
| properly. I like the really little swing-based tcpmon. I've seen other
| presenters talk about using it for hacking websites. You can intercept
| the flow of track between the browser and the server and figure out if
| they are using any hidden fields to carry important information (e.g.
| the price of an item being placed in a shopping cart).
|
I didn't understand what is the real difference between a swing gui and a web based gui in that. It was realy useful for us to debug service call by remote client that could only send request to our internet exposed machine (dmz) where I haven't X server configured (and I don't want one)
Speaking of security: I think there are more interesting malicious sw around the world than a web based tcp monitor, and I think a malicious use of Lms isn't different than a malicious use of tcp mon.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986510#3986510
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3986510
18 years, 1 month
RE: [jbossws-dev] [Design of JBoss Web Services] - Tcp Monitor liketool for jboss
by Burr Sutter
I actually demo the use of tcpmon since I think it is such a vital tool
for "debugging". The basic idea is that you find a consumer and
producer that are happy with each other and capture the SOAP
conversation (e.g. .NET to .NET) then run your Java to .NET to see what
the problem might be.
With that said, I don't believe a web-based application will serve me
properly. I like the really little swing-based tcpmon. I've seen other
presenters talk about using it for hacking websites. You can intercept
the flow of track between the browser and the server and figure out if
they are using any hidden fields to carry important information (e.g.
the price of an item being placed in a shopping cart).
-----Original Message-----
From: jbossws-dev-bounces(a)lists.jboss.org
[mailto:jbossws-dev-bounces@lists.jboss.org] On Behalf Of
thomas.diesler(a)jboss.com
Sent: Thursday, November 16, 2006 5:49 AM
To: jbossws-dev(a)lists.jboss.org
Subject: [jbossws-dev] [Design of JBoss Web Services] - Tcp Monitor
liketool for jboss
Folks,
shall we have this in our code base?
anonymous wrote :
| Lms is an acronym for Logging Meta Service; Lms' goal and
| use are very similar to the axis' tcp monitor ones: it logs any tcp
communication
| and gives developers the opportunity to review any request-response
| communications.
| Lms is a JBoss deployable application (an ear) and have a jmx mbean
as application core and a seam user interface to make its use easy.
|
| If you are interested in a deeper description with screenshots or in
download binary and source code take a look here:
|
http://www.javalinux.it/blogs/index.php?title=lms_released&more=1&c=1&tb
=1&pb=1
|
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986460#3986460
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986465#3986465
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=398646
5
_______________________________________________
jbossws-dev mailing list
jbossws-dev(a)lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jbossws-dev
18 years, 1 month