2017-06-27 2 views
0

新しいリリース。 WSO2ESBサーバーの代わりに、WSOEIがリリースされました。良い部品は、DSS機能をインストールするために必要な設定が少なくなりました。これは現在組み込まれています。WSOEIのSOAPトレーサがなくなった?

不良部分がSOAPです。メッセージトレーサがなくなり、メディエーショントレーサはなくなりました。私は彼らがフィーチャー(リポジトリー)に移動し、それらを別々にインストールする必要があると思ったが、リポジトリー(フィーチャー・リンク)も「構成」タブから消えてしまった。

誰かに戻す方法を知っていますか?

答えて

0

soaptracerのインストール方法については、wso2ei-6.1.1を参照してください。あなたは意志とApache Antを、WSO2EI_BASEDIR

<?xml version="1.0" encoding="UTF-8"?> 
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
    <modelVersion>4.0.0</modelVersion> 
    <groupId>org.wso2.mediation.tracer</groupId> 
    <artifactId>mediation-tracer-feature-installation</artifactId> 
    <version>1.0.0</version> 
    <packaging>pom</packaging> 
    <name>Mediation Tracer Feature</name> 
    <url>http://wso2.org</url> 
    <build> 
    <plugins> 
     <plugin> 
    <groupId>org.wso2.maven</groupId> 
    <artifactId>carbon-p2-plugin</artifactId> 
    <version>1.5.4</version> 
    <executions> 
     <execution> 
     <id>feature-install</id> 
     <phase>package</phase> 
     <goals> 
      <goal>p2-profile-gen</goal> 
     </goals> 
     <configuration> 
      <profile>default</profile> 
      <metadataRepository>http://product-dist.wso2.com/p2/carbon/releases/wilkes/</metadataRepository> 
      <artifactRepository>http://product-dist.wso2.com/p2/carbon/releases/wilkes/</artifactRepository> 
      <destination>${WSO_BASEDIR}/wso2/components</destination> 
      <deleteOldProfileFiles>false</deleteOldProfileFiles> 
      <features> 
      <feature> 
       <id>org.wso2.carbon.soaptracer.feature.group</id> 
       <version>4.5.4</version> 
      </feature> 
      </features> 
     </configuration> 
     </execution> 
    </executions> 
     </plugin> 
     <plugin> 
    <groupId>org.apache.maven.plugins</groupId> 
    <artifactId>maven-antrun-plugin</artifactId> 
    <version>1.1</version> 
    <executions> 
     <execution> 
     <phase>package</phase> 
     <configuration> 
      <tasks> 
     <replace token="false" value="true" dir="${WSO_BASEDIR}/wso2/components/default/configuration/org.eclipse.equinox.simpleconfigurator"> 
      <include name="**/bundles.info"/> 
     </replace> 
      </tasks> 
     </configuration> 
     <goals> 
      <goal>run</goal> 
     </goals> 
     </execution> 
    </executions> 
     </plugin> 
    </plugins> 
    </build> 
    <repositories> 
    <repository> 
     <id>wso2-nexus</id> 
     <name>WSO2 internal Repository</name> 
     <url>http://maven.wso2.org/nexus/content/groups/wso2-public/</url> 
     <releases> 
    <enabled>true</enabled> 
    <updatePolicy>daily</updatePolicy> 
    <checksumPolicy>ignore</checksumPolicy> 
     </releases> 
    </repository> 
    </repositories> 
    <pluginRepositories> 
    <pluginRepository> 
     <id>wso2-maven-releases-repository</id> 
     <url>http://maven.wso2.org/nexus/content/repositories/releases/</url> 
    </pluginRepository> 
    <pluginRepository> 
     <id>wso2-maven-snapshots-repository</id> 
     <url>http://maven.wso2.org/nexus/content/repositories/snapshots/</url> 
    </pluginRepository> 
    </pluginRepositories> 
</project> 

への$ PATHでのpom.xml下

コピーであることがMavenの実行後、{WSO_BASEDIR}

export WSO_BASEDIR=/home/path_to_wso2ei-6.1.1_folder 

コマンド

を実行し、環境変数$を設定します
mvn clean install 

コンソールにエラーがなければ、wso2eiを起動して、SoapTracerをca rbonメニュー。

関連する問題