问题标签 [spring-remoting]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
spring - 将 BIRT 与 Spring Remoting 错误集成
我是 BIRT 的新手,我按照以下示例将 BIRT 与 devshare 中的 spring 远程处理示例集成:
https://spring.io/blog/2012/01/30/spring-framework-birt
我收到以下异常:
设计器中的代码:
请让我知道导致此错误的原因。
spring-boot - Spring Boot 和 Spring AMQP RPC - 找不到转换异常的转换器
我有几个通过 RabbitMQ 使用 Spring Boot 和 RPC 的教程。然而,一旦我尝试添加一个 Jackson JSON 消息转换器,它就崩溃了。
服务器成功接收到远程调用,所以我很有信心这不是客户端配置。
但是,会输出以下异常:
因此,在交付时,它知道它应该是一个 dw.dataflow.Dataflow 对象,它只是找不到转换器。但是,我在任何地方都定义了我的转换器。
服务器配置
这是服务接口:
以及具体实现:
对于笑容和傻笑,我还尝试使用以下注释配置服务器实现类,但它具有相同的错误:
客户端配置
是否有任何配置错误?我错过了什么?我在服务导出器和侦听器容器工厂上设置了转换器。
任何帮助和/或想法表示赞赏。
spring - Remoting、Spring Remoting是什么概念?
我正在学习 Spring Framework,并且在很多地方都遇到过“Spring Remoting”。我可以猜到“Spring Remoting”将是 Spring 对Remoting
.
我的疑问是什么Remoting
?并且Spring Remoting
有别于正常Remoting
。
任何简单的解释都会有很大的帮助。
spring - Using HttpInvokerServiceExporter giving 500 error code
I am struggling for last two days to expose a service using HttpInvokerServiceExporter. The error says Did not receive successful HTTP response
The complete stack trace is below for details. The code is checked in Git repo. Link is - Github link
I have followed the documentation properly and have implemented all the steps. Below is the service interface:
Then the service implementation
Then the web.xml
Then the application beans. The application beans are placed in applicationContext.xml
and is inside the /WEB-INF/classes
directory:
Now to invoke the service I have two jsp files and a helper class to load the beans and invoke the function:
index.jsp
process.jsp
Finally the ClientInvoker
class
The applicationContext.xml is placed inside the /WEB-INF/classes
directory.
Please let me know where I am going wrong.
java - JaxWsPortProxyFactoryBean 和线程安全?
我们JaxWsPortProxyFactoryBean
用于轻松访问 SOAP Web 服务。我们有一个使用@Service
Spring 注释的特定服务类,它被注入此服务代理并将在控制器中使用。
如果有并发请求会发生什么?JaxWsPortProxyFactoryBean
线程安全吗?是否有任何性能考虑需要考虑(例如根据 http 连接等)?
我在这里找到了这篇文章: JaxWsPortProxyFactoryBean 的并发使用,但它没有回答我的问题。
这也是Spring论坛中一个非常古老的类似问题,但没有任何答案: ) :http: //forum.spring.io/forum/spring-projects/web-services/114532-jaxwsportproxyfactorybean-what´s-about -线程安全和性能
希望有人可以在这里提供帮助并更详细地解释一下。
谢谢你的支持!
spring - JaxWsPortProxyFactoryBean 绕过 SSL 检查
我有一个 Spring Proxy 作为客户端来访问一些 WS:
由于它在 JBoss 中运行,我知道它使用 CXF,现在我想绕过 SSL 检查,大概使用 HttpConduit,但我无法设置系统变量,也无法影响其余 CXF 客户端的配置。
如果我可以在代码中访问该对象,我将设置 HttpConduit,但 ((Advised) proxy).getTargetSource().getTarget()
返回 null,(也许我在 web.xml 中缺少一些配置)
java - Spring - 无法反序列化来自 HTTP 调用程序远程服务的结果
当我尝试通过 spring 的远程服务调用可供我使用的方法时,会发生此错误。
错误如下:
问题可能是由什么引起的?所有其他方法的结果都可以毫无问题地反序列化。
编辑:我尝试通过以下方式简单地获得此结果:
Result res = remoteService.getResult(param);
java - java.lang.NoClassDefFoundError: org/omg/CORBA/COMM_FAILURE 在客户端同时创建简单的 spring boor rmi 应用程序
我正在使用服务器上的 RmiServiceExporter 和客户端上的 RmiProxyFactoryBean 创建 Spring Boot 应用程序。当我启动服务器时,一切似乎都正常,我得到了
然后我启动我的客户端,它也是 Spring Boot 应用程序,客户端上的服务接口连接到 localhost 上的地址。
但是当我尝试调用这个接口的方法时,我得到了
这是我的服务器和客户端:
服务器应用程序.java
}
客户端应用程序.java
我的服务器服务接口和服务器上的实现:
以下是我的想法:
1)也许是因为我使用的接口在客户端和服务器上完全相同,但是客户端找不到类,因为路径不同?
2)当我调试我的客户端服务->h->advised->targetSource->targetClass 时为空。可以吗?我将在下面的调试中上传我的项目结构和此变量的屏幕截图。
spring-boot - 使用 Kotlin 观察参数类型不匹配的 Spring Amqp Remoting
虽然服务只有 1 个参数,但在将 spring 与 kotlin 组合使用时,我总是遇到参数不匹配。我还调试
org.springframework.remoting.support.RemoteInvocation.invoke
了方法,我可以看到它恰好传递了 1 个参数和正确的 targetObject。但invoke(targetObject, this.arguments);
导致参数不匹配。
源代码:
https://github.com/c-nnooka/RabbitMqRemotingKotlin
例外
接口细节:
服务实施细节:
BeanConfiguration:(注意:为简单起见未指定完整配置)
调用详细信息
java - 在初始化中向 Spring 定义的 FXMLController 注入 Spring 远程代理会引发 NoSuchBeanDefinitionException
正如标题所说,我有一个服务器应用程序,它定义了这样的 RmiServiceExporter:
和一个客户端应用程序,其中我有一个弹簧配置的 loginScene 和 RmiProxyFactoryBean。
这是客户端 Spring 配置:
在 LoginController 中,我有一个初始化方法,它试图从 ApplicationContext 中获取服务 bean,但是却抛出了 NoSuchBeanDefinitionException。
这是登录控制器:
这是异常堆栈跟踪: