M
Metin
I submit my form to a web service.
public void submitStudentInfo(XmlElement studentInfo){
XmlNamespaceManager xns = new XmlNamespaceManager(new NameTable());
xns.AddNamespace("my",
http://schemas.microsoft.com/office/infopath/2003/myXSD/2005-03-19T21:30:06");
}
Currently namespace is defined in the web method statically like above. But
i want to extract this information from submitted XmlElemet. What should i
do? How can i extract this information from XmlElement?
Thanks?
public void submitStudentInfo(XmlElement studentInfo){
XmlNamespaceManager xns = new XmlNamespaceManager(new NameTable());
xns.AddNamespace("my",
http://schemas.microsoft.com/office/infopath/2003/myXSD/2005-03-19T21:30:06");
}
Currently namespace is defined in the web method statically like above. But
i want to extract this information from submitted XmlElemet. What should i
do? How can i extract this information from XmlElement?
Thanks?