0

mule で cxf サービスを使用して wsdl を起動しました。XMLミュール構成のJavaクラスに変数としてクライアントIPアドレスを渡しました。IPアドレスを取得し、データベースにIPを挿入するための呼び出し可能なクラスを実装しました。テスト用に、mule の wsdl を使用して Web サービスを作成しました。この手順の実行中に、wsdl のクラスを作成したときに、クライアント Ip がデータベースに挿入されました。残念ながら、Web サービスを使用してリクエストを送信すると、データベースに IP が挿入されませんでした。私の目標: リクエストごとにクライアント IP をデータベースに挿入したいと考えています。

Mule 3.3.0 CE を使用しています。私のコードは次のとおりです。

<mule xmlns:http="http://www.mulesoft.org/schema/mule/http"
xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns:scripting="http://www.mulesoft.org/schema/mule/scripting"
xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:mule-ss="http://www.mulesoft.org/schema/mule/spring-security"
xmlns:ss="http://www.springframework.org/schema/security"
xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.3.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd 
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd 
http://www.mulesoft.org/schema/mule/spring-security http://www.mulesoft.org/schema/mule/spring-security/3.3/mule-spring-security.xsd 
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd 
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd 
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd 
http://www.mulesoft.org/schema/mule/scripting http://www.mulesoft.org/schema/mule/scripting/current/mule-scripting.xsd ">

<global-property name="allowed" value="192.168.3.76,192.168.3.74,192.168.3.75" />

<configuration>
    <expression-language>
        <global-functions>
            def parseIp(fullIp) {
            return fullIp.substring(fullIp.indexOf('/') + 1, fullIp.indexOf(':'))
            }
        </global-functions>
    </expression-language>
</configuration>

<http:connector name="httpConnector" doc:name="HTTP\HTTPS">
    <service-overrides sessionHandler="org.mule.session.NullSessionHandler" />
</http:connector>

<mule-ss:security-manager>
    <mule-ss:delegate-security-provider
        name="memory-dao" delegate-ref="authenticationManager" />
</mule-ss:security-manager>
<spring:beans>
    <ss:authentication-manager
        xmlns:ss="http://www.springframework.org/schema/security" alias="authenticationManager">
        <ss:authentication-provider>
            <ss:user-service id="userService">
                <ss:user name="weather" password="weather" authorities="ROLE_ADMIN" />
            </ss:user-service>
        </ss:authentication-provider>
    </ss:authentication-manager>
</spring:beans>

<flow name="Weather" doc:name="Weather">
    <http:inbound-endpoint host="localhost" port="9091"
        path="/web-service/weather" exchange-pattern="request-response" doc:name="HTTP">
    <mule-ss:http-security-filter realm="mule-realm" />
    </http:inbound-endpoint>
    <expression-filter
        expression="#['${allowed}'.contains(parseIp(message.inboundProperties['MULE_REMOTE_CLIENT_ADDRESS']))]"
        doc:name="Expression" />

    <set-variable variableName="remoteClientAddress"
        value="#[parseIp(message.inboundProperties['MULE_REMOTE_CLIENT_ADDRESS'])]" />
    <message-properties-transformer doc:name="myproperty"
        scope="session">
        <add-message-property key="message.payload.remoteClientAddress"
            value="#[parseIp(message.inboundProperties['MULE_REMOTE_CLIENT_ADDRESS'])]" />
    </message-properties-transformer>

    <component doc:name="classTest" class="org.mule.example.scripting.IpClient" />      

    <cxf:proxy-service 
        service="Weather"
        wsdlLocation="http://wsf.cdyne.com/WeatherWS/Weather.asmx?wsdl"
        namespace="http://ws.cdyne.com/WeatherWS/"
        validationEnabled="true" doc:name="SOAP">
    </cxf:proxy-service>

    <copy-properties propertyName="SOAPAction" doc:name="Property" />

    <cxf:proxy-client doc:name="SOAP" />

    <outbound-endpoint 
        address="http://wsf.cdyne.com/WeatherWS/Weather.asmx"
        exchange-pattern="request-response" doc:name="Generic">
    </outbound-endpoint>

</flow>

そして私のJavaクラス:

public class IpClient  implements Callable {

  @Override
  public Object onCall(MuleEventContext eventContext) throws Exception {

  MuleMessage msg = eventContext.getMessage();

String remClient = msg.getProperty("remoteClientAddress", PropertyScope.INVOCATION);

DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date date = new Date();

ConnectDB c = new ConnectDB("localhost:3306", "report", "root", "123456");

String sql = " INSERT INTO oml_news (ip, date) VALUES (?,?) ";

PreparedStatement ps = c.getConnnection().prepareStatement(sql);

ps.setString(1, remClient);

ps.setString(2, dateFormat.format(date).toString());

  ps.executeUpdate();

  c.close();

  return true;

  }
4

1 に答える 1

2

あなたの問題は、SOAP リクエストを Mule サービスに送信していないことが原因であることが最も確実です。

SOAPui でエンドポイント URL がどのようになっているのかを確認します。

于 2013-03-14T23:37:24.590 に答える