<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[De senaste inläggen skrivna i ämnet "SCDJWS 5 Certifiering Förberedelser"]]></title>
		<link>http://www.javaforum.se/jforum/posts/5.page</link>
		<description><![CDATA[De senaste inläggen skrivna i ämnet "SCDJWS 5 Certifiering Förberedelser"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Hej!<br> Nu var det klart!<br> <br> Moving the document to Slideshare:<br> <a href="http://www.slideshare.net/krizsan/scdjws-5-study-notes-3085287" target="_blank" rel="nofollow">http://www.slideshare.net/krizsan/scdjws-5-study-notes-3085287</a><br> ]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3391.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3391.page</link>
				<pubDate><![CDATA[Fri, 28 Nov 2008 14:53:02]]></pubDate>
				<author><![CDATA[ krizsan]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Hej alla vänner av web services, även om ni inte är så många! :-)<br> Jag har noterat att det inte är helt klart vilken version av WSDL som man antas studera. Kanske är det tom. så att man skall studera två versioner, både 1.1 och 2.0.<br> Ta först en titt på punkt 3.1:<br> <table class="quote-table" align="center">
		<tr>
		<td class="quote">3.1 Explain the use of WSDL in Web services, including a description of WSDL's basic elements, binding mechanisms and the basic WSDL operation types as limited by the WS-I Basic Profile 1.1.&nbsp;
		</td>
		</tr>
		</table><br> Här talas det om WSDL i anknytning till WS-I Basic Profile. Som jag sagt tidigare så behandlar BP bara WSDL 1.1 (med några antydningar om att man i framtiden skall ta upp WSDL 2.0).<br> Sedan går vi raskt över till punkt 3.3 och ser följande:<br> <table class="quote-table" align="center">
		<tr>
		<td class="quote">3.3 Describe the Component Model of WSDL including Descriptions, Interfaces, Bindings, Services and Endpoints.&nbsp;
		</td>
		</tr>
		</table><br> Letar man i WSDL 1.1 specifikationen efter en komponent modell så kan man leta länge - det finns ingen. Denna komponent modell introducerades inte förrän i WSDL 2.0.<br> <br> Jag arbetar efter teorin att både WSDL 1.1 och 2.0 skall studeras tills jag hör något annat. Kunskap är ju aldrig tung att bära, så det är väl bara att kämpa på.]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3442.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3442.page</link>
				<pubDate><![CDATA[Sat, 20 Dec 2008 03:24:01]]></pubDate>
				<author><![CDATA[ krizsan]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Websidan för den nya certifieringen är uppe, dock tämligen tom än så länge:<br> [borttagen]<br> <br> Updatering 090211: Nu är sidan uppdaterad med ämnen som certifieringen täcker etc.<br> Updatering 100323: Oracle har en ny ordning, så länken fungerar inte längre.]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3577.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3577.page</link>
				<pubDate><![CDATA[Fri, 6 Feb 2009 04:47:36]]></pubDate>
				<author><![CDATA[ krizsan]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Hej!<br> Har experimenterat lite med JAXR och jUDDI, men får ett felmeddelande när jag försöker söka efter JAXR Concept med följande kod (saxad från en äldre version av JavaEE Tutorial):<br> <table class="code-table-simple" align="center">
		<tr> 
		<td><span class="genmed"><b>Code:</b></span></td>
		</tr>
		</table>
		<table class="code-table" align="center">
		<tr>
		<td class="code">
		<pre>
 String schemeName = "uddi-org:types";
 ClassificationScheme uddiOrgTypes = bqm.findClassificationSchemeByName&#40;null, schemeName&#41;;
 /*
  * Create a classification, specifying the scheme
  *  and the taxonomy name and value defined for WSDL
  *  documents by the UDDI specification.
  */
 Classification wsdlSpecClassification = blcm.createClassification&#40;uddiOrgTypes, "wsdlSpec", "wsdlSpec"&#41;;
 
 Collection classifications = new ArrayList&#40;&#41;;
 classifications.add&#40;wsdlSpecClassification&#41;;
 
 // Find concepts
 BulkResponse br = bqm.findConcepts&#40;null, null, classifications, null, null&#41;;
 Collection specConcepts = br.getCollection&#40;&#41;;
 </pre></td>
		</tr>
		</table><br> <br> När ovanstående kod körs fås följande resultat:<br> <table class="code-table-simple" align="center">
		<tr> 
		<td><span class="genmed"><b>Code:</b></span></td>
		</tr>
		</table>
		<table class="code-table" align="center">
		<tr>
		<td class="code">
		<pre>
 javax.xml.registry.JAXRException: JAXR.UDDI.091: No Concept specified for this Classification
 	at com.sun.xml.registry.uddi.UDDIMapper.classifications2CategoryBag&#40;Unknown Source&#41;
 	at com.sun.xml.registry.uddi.UDDIMapper.findConcepts&#40;Unknown Source&#41;
 	at com.sun.xml.registry.uddi.BusinessQueryManagerImpl.findConcepts&#40;Unknown Source&#41;
 </pre></td>
		</tr>
		</table><br> <br> Det som förundrar mig lite är att koden är tagen från JavaEE Tutorial. Min brist på erfarenhet med JAXR och UDDI register gör att jag inte kan avgöra om detta är ett problem specifikt för jUDDI.<br> Koden är tagen från följande exempel: <a href="http://java.sun.com/j2ee/1.3/docs/tutorial/examples/jaxr/JAXRQueryByWSDLClassification.java" target="_blank" rel="nofollow">http://java.sun.com/j2ee/1.3/docs/tutorial/examples/jaxr/JAXRQueryByWSDLClassification.java</a><br> Har någon några erfarenheter att dela med sig av vore jag mycket tacksam!]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3646.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3646.page</link>
				<pubDate><![CDATA[Wed, 11 Mar 2009 09:18:18]]></pubDate>
				<author><![CDATA[ krizsan]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Halloj Krizsan,<br> <br> jag tänkte precis sätta igång med inläsning till SCDJWS. Har endast jobbat med Axis tidigare, så jag har en rätt lång väg att gå.<br> <br> Har du skrivit certifieringen? Och har du något tips på bra studiematerial? Har sett att det är en bok på gång från McGraw-Hill/Osborne Media, som hade en väldigt bra bok för Programmer-certifieringen, men den är inte utgiven än.<br> <br> Med vänlig hälsning]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3699.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3699.page</link>
				<pubDate><![CDATA[Tue, 24 Mar 2009 10:39:09]]></pubDate>
				<author><![CDATA[ mangomadman]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Hej!<br> Nej, jag har inte skrivit certifieringen än - det är ett otroligt omfattande material och det enda studiematerialet som finns att tillgå är diverse specifikationsdokument, så det kommer att ta ytterligare någon tid innan jag kommer till skott, gissar jag.<br> Den nya versionen av certifieringen kom, som du kanske redan vet, ut i Februari i år, så det finns inga böcker tillägnade den. För att vara uppriktig så verkar det vara ganska magert med böcker om de nyare Java webservice teknologierna som JAX-WS etc.<br> För den äldre versionen av SCDJWS så finns det en bok som heter J2EE Web Services av Richard Monson-Haefel. Dock är boken egentligen inte en certifierings-förberedelse bok, även om den täcker in det mesta (dock inte allt!) av den äldre SCDJWS.<br> Hoppas mitt svar är dig till någon hjälp!]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3700.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3700.page</link>
				<pubDate><![CDATA[Tue, 24 Mar 2009 14:35:03]]></pubDate>
				<author><![CDATA[ krizsan]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Hi krizsan,<br> <br> First of all thanks a ton for your notes. I was so confused and helpless looking around for the material which covers the exam objectives.<br> <br> Your material is really really helpful.<br> <br> I am going to write the exam on this monday (30th Mar 09).<br> I was just wondering if you have any updated notes so that I can cover the rest of the topics from your notes.<br> <br> Thanks again,<br> Deepak]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3714.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3714.page</link>
				<pubDate><![CDATA[Thu, 26 Mar 2009 07:56:59]]></pubDate>
				<author><![CDATA[ deepakjoshi04]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ No, sorry, not at this point in time.]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3715.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3715.page</link>
				<pubDate><![CDATA[Thu, 26 Mar 2009 13:33:59]]></pubDate>
				<author><![CDATA[ krizsan]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Hi krizsan, <br> <br> Thanks alot for you best wishes and your notes.<br> I cleared the SCDJWS 5 exam with 60%.<br> <br> Looks like I am among the first few guys who took this exam. <br> So just FYI,<br> Number of questions is 65<br> The passing score is 42%<br> <br> Thanks,<br> Deepak]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3753.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3753.page</link>
				<pubDate><![CDATA[Thu, 2 Apr 2009 12:45:19]]></pubDate>
				<author><![CDATA[ deepakjoshi04]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Ah, nice to hear that you made it, even though I wasn't able to supply study notes for the last few sections!<br> Well, nothing else for me to do than get back to JSR-109 and JSR-181 so that I hopefully will be able to finish section 9 in a week or two...<br> <br> A couple of questions to you that have seen the certification questions:<br> - Are there questions on both WSDL 1.1 and WSDL 2.0?<br> - Are there questions on both SOAP 1.1 and SOAP 1.2?<br> Thanks in advance for any clarifications on the above subjects!<br> <br> P.S. I am a little impressed that you have managed to get in at this place, which is supposed to be an all-Swedish Java forum...   ]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3755.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3755.page</link>
				<pubDate><![CDATA[Thu, 2 Apr 2009 16:27:30]]></pubDate>
				<author><![CDATA[ krizsan]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ <table class="quote-table-simple" align="center">
		<tr> 
		<td><span class="genmed"><b>krizsan wrote:</b></span></td>
		</tr>
		</table>
		
		<table class="quote-table" align="center">
		<tr>
		<td class="quote">Ah, nice to hear that you made it, even though I wasn't able to supply study notes for the last few sections!<br> Well, nothing else for me to do than get back to JSR-109 and JSR-181 so that I hopefully will be able to finish section 9 in a week or two... :-)<br> <br> A couple of questions to you that have seen the certification questions:<br> - Are there questions on both WSDL 1.1 and WSDL 2.0?<br> - Are there questions on both SOAP 1.1 and SOAP 1.2?<br> Thanks in advance for any clarifications on the above subjects!<br> <br> P.S. I am a little impressed that you have managed to get in at this place, which is supposed to be an all-Swedish Java forum... ;-)&nbsp;
		</td>
		</tr>
		</table><br> <br> Thanks.<br> No questions on WSDL 2.0 and No specific questions on SOAP 1.2<br> Atleast not in my exam. But You need to read both BP1.0 and 1.1 there were some questions from that. <br> <br> 85% of the questions were theoritical but really confusing questions.<br> Details about my exam experience is here :<br> <a href="http://www.coderanch.com/t/439216/Web-Services-Certification-SCDJWS/certification/SCDJWS-PASS-with#1953108" target="_blank" rel="nofollow">http://www.coderanch.com/t/439216/Web-Services-Certification-SCDJWS/certification/SCDJWS-PASS-with#1953108</a><br> <br> Thanks again.  :D ]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3756.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3756.page</link>
				<pubDate><![CDATA[Thu, 2 Apr 2009 16:34:19]]></pubDate>
				<author><![CDATA[ deepakjoshi04]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Hi krizsan,<br> Can you please mention where is the link for your notes.This is a swedish site and only I can find are the sun.java links to the syallabus and tutorials.<br> My email address is :dhawanmayur@yahoo.com<br> <br> thanks in advance<br> dhawanmayur<br> <table class="quote-table-simple" align="center">
		<tr> 
		<td><span class="genmed"><b>deepakjoshi04 wrote:</b></span></td>
		</tr>
		</table>
		
		<table class="quote-table" align="center">
		<tr>
		<td class="quote"><table class="quote-table-simple" align="center">
		<tr> 
		<td><span class="genmed"><b>krizsan wrote:</b></span></td>
		</tr>
		</table>
		
		<table class="quote-table" align="center">
		<tr>
		<td class="quote">Ah, nice to hear that you made it, even though I wasn't able to supply study notes for the last few sections!<br> Well, nothing else for me to do than get back to JSR-109 and JSR-181 so that I hopefully will be able to finish section 9 in a week or two... :-)<br> <br> A couple of questions to you that have seen the certification questions:<br> - Are there questions on both WSDL 1.1 and WSDL 2.0?<br> - Are there questions on both SOAP 1.1 and SOAP 1.2?<br> Thanks in advance for any clarifications on the above subjects!<br> <br> P.S. I am a little impressed that you have managed to get in at this place, which is supposed to be an all-Swedish Java forum... ;-)&nbsp;
		</td>
		</tr>
		</table><br> <br> Thanks.<br> No questions on WSDL 2.0 and No specific questions on SOAP 1.2<br> Atleast not in my exam. But You need to read both BP1.0 and 1.1 there were some questions from that. <br> <br> 85% of the questions were theoritical but really confusing questions.<br> Details about my exam experience is here :<br> <a href="http://www.coderanch.com/t/439216/Web-Services-Certification-SCDJWS/certification/SCDJWS-PASS-with#1953108" target="_blank" rel="nofollow">http://www.coderanch.com/t/439216/Web-Services-Certification-SCDJWS/certification/SCDJWS-PASS-with#1953108</a><br> <br> Thanks again.  :D &nbsp;
		</td>
		</tr>
		</table>]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3784.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3784.page</link>
				<pubDate><![CDATA[Fri, 17 Apr 2009 08:52:08]]></pubDate>
				<author><![CDATA[ dhawanmayur]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Scroll up and check the English instructions!<br> Best wishes!]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#3785.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#3785.page</link>
				<pubDate><![CDATA[Fri, 17 Apr 2009 10:43:57]]></pubDate>
				<author><![CDATA[ krizsan]]></author>
			</item>
			<item>
				<title>Re:SCDJWS 5 Certifiering Förberedelser</title>
				<description><![CDATA[ Update December 18, 2009. Added links in the table of contents.]]></description>
				<guid isPermaLink="true">http://www.javaforum.se/jforum/posts/549#4600.page</guid>
				<link>http://www.javaforum.se/jforum/posts/549#4600.page</link>
				<pubDate><![CDATA[Fri, 18 Dec 2009 14:27:19]]></pubDate>
				<author><![CDATA[ krizsan]]></author>
			</item>
	</channel>
</rss>