Maven does not load all classes of Webservice wsdl mails

Asked

Viewed 83 times

1

Good afternoon!

Personal,

I am tempted to use a web service of the post office wsdl to be able to search the address from the zip code, and to download the classes I am making use of the Maven, which seems to me that works well it brings me the classes but are missing some.

follows the part of code I’m using in my pom.xml to accomplish this task.

 <!-- Começo Plugin dos Correios Buscar Endereço pelo Cep -->
    <plugin>
        <groupId>org.jvnet.jaxb2.maven2</groupId>  
        <artifactId>maven-jaxb2-plugin</artifactId>  
        <version>0.8.3</version>  
        <executions>  
          <execution>  
            <goals>  
              <goal>generate</goal>  
            </goals>  
         </execution>  
        </executions>  
     <configuration>  
        <generatePackage>br.com.correios.app</generatePackage>  
        <verbose>true</verbose>  
        <schemaLanguage>WSDL</schemaLanguage>  
        <!-- <generateDirectory>src/main/java</generateDirectory>  -->  
       <schemas>  
        <schema>  
         <url>https://apps.correios.com.br/SigepMasterJPA/AtendeClienteService/AtendeCliente?wsdl</url>  
        </schema>  
       </schemas>  
     </configuration>  
    </plugin>
   <!-- Final Plugin dos Correios Buscar Endereço pelo Cep -->

how can I resolve this grateful to all

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.