从相应的 WSDL 创建 JDBC 函数
我正在致力于使用 JDBC for postgreSQL 从头开始构建一个 Web 服务。问题是 wsdl 文件中给出的操作没有显示相应的数据库关系(Schema 由客户端提供)。 这样的消息
即像消息名称=“登录请求”>
部件名称=“in0”类型=“xsd:字符串”/>
部件名称=“in1”类型=“xsd:字符串”/>
/message>
我找不到相应的列或参数映射到的内容。
有什么解决办法吗?
PSI 必须删除“<”
I am working on building a web service from scratch with JDBC for postgreSQL. thing is that the operations
given in the wsdl file do not show the corresponding database relation (Schema was provided by the client). i.e. for a message
like
message name="loginRequest">
part name="in0" type="xsd:string"/>
part name="in1" type="xsd:string"/>
/message>
I cannot find out the corresponding column or what the parameters map on to.
Any solution?
P.S.I had to remove "<"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JDBC 是数据库的接口。它可用于 WebService 服务器和客户端,但不能用于解析 WebService 查询等。您将不得不使用其他库/技术,例如 axis2.
在 axis2 中有 wsdl2java 实用程序,可以创建服务器或客户端代码“骨骼”。在这些源中,您可以使用 JDBC 库进行数据库查询。
JDBC is an interface for databases. It can be used for both WebService server and client, but it cannot be used to parse WebService queries etc. You will have to use other library/technology like axis2.
In axis2 there is wsdl2java utility which can create server or client code "skeleton". In those sources you can use JDBC libraries to make database queries.