C chinazxy2008 Unregistered / Unconfirmed GUEST, unregistred user! 2009-07-30 #1 我的IIS配置两台机器是一样的,但就是一个是32位的操作系统,一个是64位的操作系统,结果我客户端连接服务器读取数据时报错:Received content of invalid Content-Type setting: text/html - SOAP expects "text/xml"请问怎么解决,谢谢
我的IIS配置两台机器是一样的,但就是一个是32位的操作系统,一个是64位的操作系统,结果我客户端连接服务器读取数据时报错:Received content of invalid Content-Type setting: text/html - SOAP expects "text/xml"请问怎么解决,谢谢
B bx59830 Unregistered / Unconfirmed GUEST, unregistred user! 2009-07-30 #2 将服务器webservice .dpr 文件 ISAPIThreadPool,ISAPIApp,调换一下位置。ISAPIThreadPool和ISAPIApp的次序变一下:ISAPIApp必须在ISAPIThreadPool之前: uses ... ISAPIApp, ISAPIThreadPool
将服务器webservice .dpr 文件 ISAPIThreadPool,ISAPIApp,调换一下位置。ISAPIThreadPool和ISAPIApp的次序变一下:ISAPIApp必须在ISAPIThreadPool之前: uses ... ISAPIApp, ISAPIThreadPool
C chinazxy2008 Unregistered / Unconfirmed GUEST, unregistred user! 2009-07-31 #3 楼上兄台,代码是这样的,我的中间层在服务器上运行两年多了,一切正常,从原服务器移到64位的新服务器后就这情况了,谢指教。
C chinazxy2008 Unregistered / Unconfirmed GUEST, unregistred user! 2009-07-31 #4 代码是像你上面说的写的,就是移到64位服务器上就不正常了,请大家多帮忙
C chinazxy2008 Unregistered / Unconfirmed GUEST, unregistred user! 2009-07-31 #5 64位服务器上大家遇到这个问题没,帮解决一下
M mrduan Unregistered / Unconfirmed GUEST, unregistred user! 2009-08-08 #6 64位CPU使用的指针、整数等都是64位的,是32位系统的一倍。。 所以,重新编译调试吧。。