Пример #1
0
        private PocketSOAP.ISerializerFactory2 m_sf;            // the serializer factory config, does the core type mappings for us

        public ProxyWriter(string wsdlUrl, wsdlParser.definitions def, wsdlParser.port port, wsdlParser.binding binding, wsdlParser.portType portType, vcProject project)
        {
            m_wsdlUrl    = wsdlUrl;
            m_wsdl       = def;
            m_port       = port;
            m_binding    = binding;
            m_portType   = portType;
            m_project    = project;
            m_factory    = new SerializerFactoryConfig();
            m_sf         = new PocketSOAP.CoSerializerFactoryClass();
            m_typesCache = new Hashtable();
            m_namemap    = new Hashtable();
            Initialize();
        }
Пример #2
0
 public void StartProxy(wsdlParser.port port, wsdlParser.binding binding, wsdlParser.portType portType)
 {
     m_currentproxy = new ProxyWriter(m_wsdlUrl, m_wsdl, port, binding, portType, m_project);
 }