Where is your WSDL coming from? It's kind of pointless to just provide them, if there isn't any webservice attached. Generating the WSDL is usually done by that webservice.
pritaeas
Posting Prodigy
9,293 posts since Jul 2006
Reputation Points: 1,178
Solved Threads: 1,462
Skill Endorsements: 86
What language are you using?
pritaeas
Posting Prodigy
9,293 posts since Jul 2006
Reputation Points: 1,178
Solved Threads: 1,462
Skill Endorsements: 86
LastMitch
Industrious Poster
4,165 posts since Mar 2012
Reputation Points: 132
Solved Threads: 335
Skill Endorsements: 45
That means you do not have a database as specified on line 4, check your control panel, or with your webhost.
pritaeas
Posting Prodigy
9,293 posts since Jul 2006
Reputation Points: 1,178
Solved Threads: 1,462
Skill Endorsements: 86
LastMitch
Industrious Poster
4,165 posts since Mar 2012
Reputation Points: 132
Solved Threads: 335
Skill Endorsements: 45
Anything wrong with this idea?
It's nothing wrong with it but it's alot of work.
My idea is that I learn to make the WEB interface in the appropriate WEB language, and it will send commands to the EXE which will create the images.
I'm not familiar with EXE but here is a link discussed mroe about how to make the changes:
http://msdn.microsoft.com/en-us/library/ms685967%28VS.85%29.aspx
LastMitch
Industrious Poster
4,165 posts since Mar 2012
Reputation Points: 132
Solved Threads: 335
Skill Endorsements: 45
There are a lot of online tools that can help you build your RSS feed. However, if you have a static page and you want to create one manually as suggested by Dani, you can easily to so by generating an XML file and creating the proper structure for an RSS reader to be able to use your file. There are a few different elements that you can use in your structure, but here is an example of a simple one that I have used in the past. You can create it manually, or you can generate this type of output using a server side scripting language such as ASP.NET (ASP.NET Example-Create an RSS Feed) PHP, etc...
Example of XML file for an RSS Feed
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>RSS Title</title>
<description>This is an example of an RSS feed</description>
<link>http://www.domain.com/default.html</link>
<copyright>(c) 2013, All rights reserved.</copyright>
<ttl>1800</ttl>
<item>
<title>Example Entry 2</title>
<description>Here is some text containing a description.</description>
<link>http://www.domain.com/article/2/</link>
<pubDate>Mon, 11 Mar 2013 16:45:00 +0000 </pubDate>
<guid>http://www.domain.com/article/2/</guid>
</item>
<item>
<title>Example Entry 1</title>
<description>Here is some text containing a description.</description>
<link>http://www.domain.com/article/1/</link>
<pubDate>Mon, 11 Mar 2013 16:45:00 +0000 </pubDate>
<guid>http://www.domain.com/article/1/</guid>
</item>
</channel>
</rss>
Validate your RSS feed using this online validator: W3C Feed Validator
JorgeM
Industrious Poster
4,018 posts since Dec 2011
Reputation Points: 297
Solved Threads: 548
Skill Endorsements: 115
I want to do and internet radio and i need someone to point me in the right direction
that is, what technologies to use and also useful links and book. thank you
otengkwaku
Junior Poster in Training
93 posts since Mar 2012
Reputation Points: 23
Solved Threads: 1
Skill Endorsements: 8