TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Parker Don
NA
1
1.2k
Cant read/load more than 256 rule pharse in xml file
Aug 18 2013 7:57 PM
Hi all, i am using a c# application to read/load from a xml file
here are the xml file content, like from this example http://msdn.microsoft.com/en-us/library/ms723634%28v=vs.85%29.aspx
<GRAMMAR>
<DEFINE>
</DEFINE>
<RULE NAME="HelloWorld" TOPLEVEL="ACTIVE"><P>HelloWorld</P></RULE>
<RULE NAME="HelloWorld2" TOPLEVEL="ACTIVE"><P>HelloWorld2</P></RULE>
<RULE NAME="HelloWorld3" TOPLEVEL="ACTIVE"><P>HelloWorld3</P></RULE>
</GRAMMAR>
and so on until rule pharse HelloWorld256, my application still can read/load it, but after add the 257 rule pharse, it cant read/load anything,
is there a way so i can add more than 256 rule pharse in a xml file?
or maybe the alternative way, by open 2 xml files together, that each have 256 rule pharse, this is my c# application part, that load the grammar
// load the grammar
SAPIGrammarFromFile("XMLhelloworld.xml");
i already tried these but no one works
// load the grammar
SAPIGrammarFromFile("XMLhelloworld.xml");
SAPIGrammarFromFile("XMLhelloworld2.xml");
// load the grammar
SAPIGrammarFromFile("XMLhelloworld.xml")
& ("XMLhelloworld2.xml")
;
// load the grammar
SAPIGrammarFromFile("XMLhelloworld.xml"
& "XMLhelloworld2.xml"
);
please help which ever methode that can works
Reply
Answers (
0
)
How to use params instead of method overloading...
write superscript and subscript inside textbox in ASP.Net?