Examples of readServiceArchive()


Examples of org.apache.axis2.deployment.repository.util.ArchiveReader.readServiceArchive()

                switch (type) {
                    case SERVICE:
                        try {
                           // ServiceDescription service = archiveReader.createService(currentArchiveFile.getAbsolutePath());
                            ServiceDescription service = archiveReader.createService(currentArchiveFile);
                            archiveReader.readServiceArchive(currentArchiveFile.getAbsolutePath(), this, service);
                            addnewService(service);
                            log.info("Deployement WS Name  " + currentArchiveFile.getName());
                        } catch (DeploymentException de) {
                            log.info("Invalid service" + currentArchiveFile.getName());
                            log.info("DeploymentException  " + de);
View Full Code Here

Examples of org.apache.axis2.deployment.repository.util.ArchiveReader.readServiceArchive()

                    switch (type) {
                        case SERVICE:
                            try {
                                // ServiceDescription service = archiveReader.createService(currentArchiveFile.getAbsolutePath());
                                ServiceDescription service = archiveReader.createService(currentArchiveFile);
                                archiveReader.readServiceArchive(currentArchiveFile.getAbsolutePath(),
                                        this,
                                        service);
                                addnewService(service);
                                log.info(Messages.getMessage(DeploymentErrorMsgs.DEPLOYING_WS, currentArchiveFile.getName()));
                            } catch (DeploymentException de) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.