Discussions
Activity
Best Of...
Sign In
·
Register
Home
›
NAV Three Tier
Howdy, Stranger!
It looks like you're new here. Sign in or register to get started.
Sign In
Register
Quick Links
Categories
Recent Discussions
Activity
Best Of...
Unanswered
Categories
71.4K
All Categories
73
General
73
Announcements
65.7K
Microsoft Dynamics NAV
17.9K
NAV Three Tier
38.3K
NAV/Navision Classic Client
3.6K
Navision Attain
2.4K
Navision Financials
112
Navision DOS
853
Navision e-Commerce
960
NAV Tips & Tricks
769
NAV Dutch speaking only
612
NAV Courses, Exams & Certification
1.9K
Microsoft Dynamics-Other
1.5K
Dynamics AX
227
Dynamics CRM
107
Dynamics GP
10
Dynamics SL
1.5K
Other
987
SQL General
382
SQL Performance
31
SQL Tips & Tricks
30
Design Patterns (General & Best Practices)
Architectural Patterns
9
Design Patterns
3
Implementation Patterns
53
3rd Party Products, Services & Events
1.6K
General
1.1K
General Chat
1.6K
Website
79
Testing
1.2K
Download section
23
How Tos section
257
Feedback
12
NAV TechDays 2013 Sessions
13
NAV TechDays 2012 Sessions
Is there any option to import data from html to nav xmlport ?
Rajan123
Member
Posts:
6
2021-11-30
in
NAV Three Tier
Hi All,
I am new to Navision. I know how to import data from Xml to Xmlport but how to import data from html file to Xmlport ? Please Let me know
Thanks,
Rajan
0
Answers
txeriff
Member
Posts:
480
2021-12-21
edited 2022-01-10
Hi,
You can't import a html file with xml ports.
I can think of reading as a file in a bigtext variable, and then just parse and find whatever you need from it.
0
RockWithNAV
Member
Posts:
1,138
2022-01-07
Directly it wont be possible for sure and parsing needs to be done, may be some DotNet variables OR third party DLL'S can help.
Thanks
Blog -
rockwithnav.wordpress.com/
Twitter -
https://twitter.com/RockwithNav
Facebook -
https://facebook.com/rockwithnav/
0
AlexeyShamin
Member
Posts:
80
2022-01-10
hello. You can use
html agility pack
for parse HTML document from nav
1. get html document by HttpWebRequest to stream
2. Put stream into htmlDoc variable (dotnet html agility Pack)
3. Parse HtmlDoc use html agility Pack
0
Rajan123
Member
Posts:
6
2022-02-09
Thank you
0
Sign In
or
Register
to comment.
Answers
You can't import a html file with xml ports.
I can think of reading as a file in a bigtext variable, and then just parse and find whatever you need from it.
Blog - rockwithnav.wordpress.com/
Twitter - https://twitter.com/RockwithNav
Facebook - https://facebook.com/rockwithnav/
1. get html document by HttpWebRequest to stream
2. Put stream into htmlDoc variable (dotnet html agility Pack)
3. Parse HtmlDoc use html agility Pack