Hi

Could we call from asp to coldfusion page. 
our one server (Java) they are posting one "xmlpacket"
variable info to our cfm page. but it is not
displaying whole information when we displaying in cfm
page. so before that one i thougt to call convert.asp
page before sending xmlpacket variable info to cfm
page.

Here i am giving asp code. This code i need to execute
before cfm. So that one can i call cfm page and pass
the xmlpacket variable info(converted).

<%
        Response.ContentType = "text/xml"

        set ModuleManager =
Application.Value("ModuleManager")
        set SOAPServiceManager =
Application.Value("SOAPServiceManager")
        
        set proxy =
GetObject("java:com.pcorder.services.order.soap.http.PresentationSOAPProxy")
        proxy.setModuleManager(ModuleManager)
        proxy.setSOAPServiceManager(SOAPServiceManager)
        
        methodStr = ""
        byteCount = Request.TotalBytes
        xmlMethodRequest = Request.BinaryRead(byteCount)
        for i = 1 to byteCount
                methodStr = methodStr &
Chr(CStr(AscB(MidB(xmlMethodRequest,i,1))))
        next

        xmlMethodResponse = proxy.doCallFromASP(methodStr)
        Response.Write(xmlMethodResponse)
%>

Other wise can i use any command in coldfusion what
asp exactly does above.


Thanks & regards
Ramesh
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to