0

あるアプリケーションから別のアプリケーションにデータを転送するアプリケーションを開発したいと思います。ここでのキックは、私のアプリケーションの1つが.Netフレームワークにあり、もう1つがSpringフレームワーク(Java)に実装されていることです。

この種の環境に最適なプログラミング手法はどれですか?
はい !データはかなり重くなり、BLOBが含まれます。さらに、転送中にネットワークが切断される可能性があるため、トランザクションのようなものである必要があります。私は確かにデータを失いたくないので。

http上のXMLについてどう思いますか?

データを転送するためにどのようなアプリケーションを実装する必要があるかを提案してください。

4

1 に答える 1

1

JMSは、Javaを使用して、データを提供するトランスポート層からアプリケーションを分離する方法を提供します。同じJavaクラスを使用して、目的のプロバイダーのJNDI情報を使用することにより、異なるJMSプロバイダーと通信できます。クラスは最初に接続ファクトリを使用してキューまたはトピックに接続し、次にpopulateを使用してメッセージを送信または公開します。受信側では、クライアントはメッセージを受信またはサブスクライブします。

私はSonicMQメッセージングシステムを使用しましたが、 Javaメッセージサービスは非常に安定しています...ここで私がどのように使用しているかについての小さなサンプルを見ることができ、.Net実装があります

成文化は非常に単純である可能性があります。

/**
 * 
 * This file is part of Jms.publisher sample.
 * 
 *  Jms.publisher is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 * 
 *  Jms.publisher is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 * 
 *  You should have received a copy of the GNU General Public License
 *  along with Jms.publisher.  If not, see <http://www.gnu.org/licenses/>.
 *  
 * 
 * AccessManager.Java 
 * Create by Iván Jaimes on 03/09/2012
 * 
 */
package sonic;

import javax.jms.JMSException;
import javax.jms.Session;
import javax.jms.TextMessage;
import javax.jms.TopicConnection;
import javax.jms.TopicPublisher;
import javax.jms.TopicSession;
import javax.jms.TopicConnectionFactory;

import config.ConnectionInfo;

public class AccessManager 
{
    private TopicConnection connection = null;
    private TopicSession session = null;
    private TopicPublisher topicPublisher = null;    
    private TopicConnectionFactory connectionFactory = null;
    private ConnectionInfo info = null;

    public AccessManager(ConnectionInfo connectionInfo) throws JMSException
    {
        info = connectionInfo;
    }

    public final void connect() throws JMSException
    {
        connectionFactory = new progress.message.jclient.TopicConnectionFactory(info.getSonicAddress());
        connection = connectionFactory.createTopicConnection(info.getUserName(), info.getPassword());
        connection.start();
        session = connection.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
        topicPublisher = session.createPublisher(info.getTopic());
        assert (isConnected());
    }

    public void send(String text) throws JMSException  
    {
        TextMessage message = session.createTextMessage(text); // send method
        topicPublisher.publish(message);
    }
    /**
     * Disconnect.
     * @throws JMSException 
     */
    public final void disconnect() throws JMSException 
    {
        if (topicPublisher != null) 
        {
            topicPublisher.close();
            session.close();
            connection.close();
        }

        connection = null;
        session = null;
    }

    /**
     * Checks if is connected.
     * 
     * @return true, if is connected
     */
    public final boolean isConnected() {
        if (session != null) {
            return true;
        }
        return false;
    }
}

それについてはもっと多くのリソースがあります:

于 2012-10-19T22:31:40.590 に答える