1,076,140 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?

Latest Posts in RSS, Web Services and SOAP

HI this is the WSDL that I have
http://www.holidaywebservice.com/HolidayService_v2/HolidayService2.asmx?WSDL

how do i write java classes, operations from the WSDL

appreciate a reply
thanks

anisha.silva
Posting Whiz in Training
227 posts since May 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

Hi I have a WSDL file. from that file how do create a java clinet application.
apprecate if someone could reference me to some links

appreciate it
thanks

anisha.silva
Posting Whiz in Training
227 posts since May 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

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
Moderator
9,293 posts since Jul 2006
Reputation Points: 1,178
Solved Threads: 1,462
Skill Endorsements: 86
yy886
Light Poster
37 posts since Apr 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

xsd:schema xsd:element xsd:complexType xsd:enumeration

soap wsdl:operation wsdl:output

kind of thing...

as I said, I am new to this area so not too sure what they called properly.

the reason for learning it is because of I see quite a bit of serices proivder is using that kind of infrastructure for their web services...I think I need some knowledge about this area...

yy886
Light Poster
37 posts since Apr 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0
pritaeas
Posting Prodigy
Moderator
9,293 posts since Jul 2006
Reputation Points: 1,178
Solved Threads: 1,462
Skill Endorsements: 86

Hello all,

I am new to WSDL, I have access to 2 pages of WSDL code and trying to figure out how to get them to output on the webpage...

Can someone show me an example or point me a direction to look to?

As for now theres tons of search reuslt on google...I dont know where to begin with.

yy886
Light Poster
37 posts since Apr 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

Its a Requiredment, i have a asmx service that returns a list<dataset> and the schema defination keeps on repeating foreach dataset in the List.

What requirement?

Your question is very vague.

You can split WSDL into component pieces based on the XML namespace.

You can read this:

http://msdn.microsoft.com/en-us/library/aa480511.aspx

and this:

http://www.ibm.com/developerworks/xml/library/ws-soa-xmlwsdl/index.html

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
Moderator
9,293 posts since Jul 2006
Reputation Points: 1,178
Solved Threads: 1,462
Skill Endorsements: 86

Hi
would you please help my how to know my ( mysql host server)???? i used greengeeks to upload my website , i tried "local host" but it shows "couldn't find data base"...thanks

<?php

mysql_connect("localhost","ahmedhay_ahmed","Password") or die("couldnt connect to data base");
mysql_select_db("ahmedhay_hayman") or die ("couldnt find data base");
?>
ahmed.hayman
Newbie Poster
3 posts since Mar 2013
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

how to Convert .TS(Truststore) file into .crt file

I don't think you can but you can used this website that convert .crt file:

https://www.sslshopper.com/ssl-converter.html

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

*********RSS is abrivation of "Real simple syndication" also some time call Rich site summary.RSS is basically xml formate for the contents distribution.Webmaster create RSS containing the hinding and discriptions of new and specific information .it is best source to spread the site contents in all over the world .
if you have little skills in php and xml then you surely create RSS.According to my point of view.Thanks*********

asifalizaman
Junior Poster
Banned
104 posts since Mar 2013
Reputation Points: -6
Solved Threads: 2
Skill Endorsements: 0
Infraction Points: 10
alex007
Newbie Poster
15 posts since Mar 2013
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

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
 
© 2013 DaniWeb® LLC
Page rendered in 0.1145 seconds using 2.58MB