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
All Categories
73
General
73
Announcements
66.6K
Microsoft Dynamics NAV
18.7K
NAV Three Tier
38.4K
NAV/Navision Classic Client
3.6K
Navision Attain
2.4K
Navision Financials
116
Navision DOS
851
Navision e-Commerce
1K
NAV Tips & Tricks
772
NAV Dutch speaking only
617
NAV Courses, Exams & Certification
2K
Microsoft Dynamics-Other
1.5K
Dynamics AX
320
Dynamics CRM
111
Dynamics GP
10
Dynamics SL
1.5K
Other
990
SQL General
383
SQL Performance
34
SQL Tips & Tricks
35
Design Patterns (General & Best Practices)
1
Architectural Patterns
10
Design Patterns
5
Implementation Patterns
53
3rd Party Products, Services & Events
1.6K
General
1K
General Chat
1.6K
Website
83
Testing
1.2K
Download section
23
How Tos section
252
Feedback
12
NAV TechDays 2013 Sessions
13
NAV TechDays 2012 Sessions
Options
Mute
Is there any option to import data from html to nav xmlport ?
Rajan123
Member
Posts:
39
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:
515
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,159
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:
39
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