[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-10 Thread richard_opalka
http://jira.jboss.org/jira/browse/JBWS-1843 Richard View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4093314#4093314 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4093314 ___

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-10 Thread richard_opalka
rocken7 wrote : yep good one oskar, I should've noticed this with my log statements. maybe i'll just merge the two xml-schemas together into 1 xsd file, lots of work tho, and if jbossws was a bit better it wouldn't require this workaround. | | case closed. | Sorry for that. We've

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-10 Thread rocken7
oh sweet, jboss rox ;] View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4093612#4093612 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4093612 ___ jboss-user mailing list

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-09 Thread oskar.carlstedt
Hi! The WSDL file imports two XML-schemas that create a circular reference. A good point would be to ask them to change their design. The wsdl file at https://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl imports two xml-schemas: | import namespace=urn:ebay:apis:CoreComponentTypes

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-09 Thread richard_opalka
rocken7 wrote : If anyone cares to check out the wsdl, here it is: | | https://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl Hi, I used JBossWS 2.0.1 and everything works fine for me. Here's my commandline: | ./wsconsume.sh -k -o classes -s sources

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-09 Thread rocken7
As mentioned above: jboss-4.0.5.GA (with jbossws 2.0.1.GA). Well I have generated the sources from the wsdl with no trouble already and used the same calls as you, but try to roll and deploy a webservice which conforms to the same wsdl: a paypal simulator for example. As I've said above,

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-09 Thread oskar.carlstedt
Hello! As I said before, this is probably due to the circular schema imports. JBoss will try to load the first schema (CoreComponentTypes.xsd). While scanning this schema JBoss will find the schema import for the 2:nd schema (eBLBaseComponents.xsd). While scanning this 2:nd schema JBoss will

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-09 Thread rocken7
yep good one oskar, I should've noticed this with my log statements. maybe i'll just merge the two xml-schemas together into 1 xsd file, lots of work tho, and if jbossws was a bit better it wouldn't require this workaround. case closed. View the original post :

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-08 Thread rocken7
Yep same result, with -Xmx1024m I get a java.lang.OutOfMemory error: Java heap space . Here is what I did (just to confirm): @Local | @Stateless | @WebServiceProvider( | serviceName = PayPalAPIInterfaceService, | portName = PayPalAPIAA, | targetNamespace =

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-08 Thread rocken7
It fails exactly like the example before, with hundreds of the repeating XMLSchema import lines in the log, followed by a heap space error. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4092766#4092766 Reply to the post :

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-08 Thread rocken7
If anyone cares to check out the wsdl, here it is: https://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4092781#4092781 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4092781

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-03 Thread rocken7
what distro, which example? I can't find it ... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4091180#4091180 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4091180 ___

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-03 Thread rocken7
Ok still confused, the docs just don't help. Again from the top with some changes. The ejb3 stateless bean as a webservice: @WebService(name = PayPalAPIAAInterface, portName = PayPalAPIAA, serviceName = PayPalAPIInterfaceService, targetNamespace = urn:ebay:api:PayPalAPI,

[jboss-user] [JBossWS] - Re: wsdl based web-service (like a paypal simulator)?

2007-10-03 Thread oskar.carlstedt
Hi! I'm not sure if you are doing this, but I have had som troubles with JBossWS and nested schema imports. I tried to have relative urls between schemas using .. syntax for traversal of parent directory. JBossWS failed when doing this and told me to use something like getParent() instead of