我想开发一个将数据从一个应用程序传输到另一个应用程序的应用程序。现在,我的一个应用程序是在.Net框架中,而另一个是在Spring框架(Java)中实现的。
哪种编程技术最适合这种环境?
是的!数据将非常繁重,它将包括BLOB。此外,在转移过程中存在网络中断的可能性,因此,它必须类似于交易;因为我当然不想丢失数据。
您如何看待XML over http?
请建议我应该采用哪种应用来传输数据。
答案 0 :(得分:1)
使用Java,JMS提供了一种将应用程序与提供数据的传输层分离的方法。通过使用所需提供程序的JNDI信息,可以使用相同的Java类与不同的JMS提供程序进行通信。这些类首先使用连接工厂连接到队列或主题,然后使用填充并发送或发布消息。在接收方,客户端接收或订阅消息。
我使用了SonicMQ messaging system而他们Java Message Services非常稳定......你可以查看一些关于我如何使用here的示例,并且有{{3} }}
编纂可能非常简单:
/**
*
* 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;
}
}
有更多资源: