reficio / soap-ws

Java library, based on Spring-WS, that enables handling SOAP on a purely XML level
297 stars 145 forks source link

java.lang.StackOverflowError while saving WSDL file from WSDL URL #43

Open ghost opened 8 years ago

ghost commented 8 years ago

image

I have tried saving WSDL file from WSDL url using the below method

Wsdl.saveWsdl(new URL("wsdlurl"), new File("localFilepath"));
The WSDL is importing almost 25 XSDs and each XSD is again a huge file. The api is unable to process that much huge XSDs and going into infinite loop.
ghost commented 8 years ago

I have used SoapUI api to solve above problem