Click here to Skip to main content
15,798,111 members
Home / Discussions / XML / XSL
   

XML / XSL

 
QuestionHow to access xml file simultaneously at runtime Pin
Raghu_M21-May-10 6:12
Raghu_M21-May-10 6:12 
QuestionUsing SAX and PHP Pin
vho12318-May-10 21:22
vho12318-May-10 21:22 
QuestionXSLT and asp.NET mixture Pin
ceviz16-May-10 14:02
ceviz16-May-10 14:02 
AnswerRe: XSLT and asp.NET mixture Pin
Not Active16-May-10 18:08
mentorNot Active16-May-10 18:08 
AnswerRe: XSLT and asp.NET mixture Pin
Atwind28-Jun-10 0:42
Atwind28-Jun-10 0:42 
Questionlanguage localization using XML in VC++ (MFC) Pin
punyah20108-May-10 10:03
punyah20108-May-10 10:03 
QuestionSuppress Xmlns in InnerXML / Rename an XML node in DOM Pin
Ger Hayden6-May-10 12:37
Ger Hayden6-May-10 12:37 
AnswerRe: Suppress Xmlns in InnerXML / Rename an XML node in DOM Pin
Ger Hayden8-May-10 8:24
Ger Hayden8-May-10 8:24 
... I avoided the need to do either by using OuterXML:

XmlNode ^TmpNode;
XmlNode ^IE315_Node;
XmlNode ^IE313_Node;
String^ tmpstr;


switch (current_message)
{
case (MessageType::IE315):
{
if (!namespace_found)
try
{
IE315_Node = doc->SelectSingleNode("//EntrySummaryDeclaration");
}
catch (Exception ^e)
{
MessageString = "Error finding EntrySummaryDeclaration: " + e->Message;
MessageBox::Show(MessageString);
}
else
try
{
IE315_Node = doc->SelectSingleNode("//ie:EntrySummaryDeclaration",nsmgr);
}
catch (Exception ^e)
{
MessageString = "Error finding EntrySummaryDeclaration: " + e->Message;
MessageBox::Show(MessageString);
}

tmpstr = IE315_Node->OuterXml->ToString();

tmpstr = tmpstr->Replace("EntrySummaryDeclaration", "EntrySummaryDeclarationAmendment");
tmpstr = tmpstr->Replace("IE315", "IE313");

doc->RemoveChild(IE315_Node);
doc->LoadXml(tmpstr);

current_message = MessageType::IE313;
Convert->Text = "Con&vert to IE315";
ReferenceNumber->Text = "";
ReferenceNumber->Enabled = true;
break;
}
Ger

QuestionParsing RSS Pin
Aljaz1116-May-10 4:37
Aljaz1116-May-10 4:37 
AnswerRe: Parsing RSS Pin
Stuart Dootson7-May-10 0:24
professionalStuart Dootson7-May-10 0:24 
QuestionXSLT to HTML Pin
vho12329-Apr-10 22:46
vho12329-Apr-10 22:46 
AnswerRe: XSLT to HTML Pin
Stuart Dootson6-May-10 2:00
professionalStuart Dootson6-May-10 2:00 
QuestionCan anyone give me a hand with this? Pin
ajweber27-Apr-10 20:20
ajweber27-Apr-10 20:20 
AnswerRe: Can anyone give me a hand with this? Pin
Not Active28-Apr-10 1:54
mentorNot Active28-Apr-10 1:54 
GeneralRe: Can anyone give me a hand with this? Pin
ajweber28-Apr-10 6:59
ajweber28-Apr-10 6:59 
GeneralRe: Can anyone give me a hand with this? Pin
Not Active28-Apr-10 7:10
mentorNot Active28-Apr-10 7:10 
GeneralRe: Can anyone give me a hand with this? Pin
ajweber28-Apr-10 7:17
ajweber28-Apr-10 7:17 
GeneralRe: Can anyone give me a hand with this? Pin
Not Active28-Apr-10 7:31
mentorNot Active28-Apr-10 7:31 
GeneralRe: Can anyone give me a hand with this? Pin
ajweber28-Apr-10 7:52
ajweber28-Apr-10 7:52 
QuestionDesperate seeking answer to simple problem Pin
Axiom70m27-Apr-10 6:45
Axiom70m27-Apr-10 6:45 
AnswerRe: Desperate seeking answer to simple problem Pin
Not Active27-Apr-10 7:57
mentorNot Active27-Apr-10 7:57 
GeneralRe: Desperate seeking answer to simple problem [modified] Pin
Axiom70m27-Apr-10 8:47
Axiom70m27-Apr-10 8:47 
GeneralRe: Desperate seeking answer to simple problem Pin
Not Active27-Apr-10 10:41
mentorNot Active27-Apr-10 10:41 
GeneralRe: Desperate seeking answer to simple problem [modified] Pin
Axiom70m27-Apr-10 22:52
Axiom70m27-Apr-10 22:52 
GeneralRe: Desperate seeking answer to simple problem Pin
Not Active28-Apr-10 1:52
mentorNot Active28-Apr-10 1:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.