UCNUG gets a new URL
I am vice-president of the Utah County .NET User’s Group (UCNUG). Enjoying the role I play there. The UCNUG site has been revamped and replaced. So long to MSN Groups!…
Read up on .NET news, tips, cautions... and other areas of technological interest.
I am vice-president of the Utah County .NET User’s Group (UCNUG). Enjoying the role I play there. The UCNUG site has been revamped and replaced. So long to MSN Groups!…
Microsoft has been working hard on the next generation of development tools and database technologies. Visual Studio 2005 and SQL Server 2005 are two of the most anticipated technologies to…
I recently became the vice-president of the Utah County .NET Users Group .I’ve come home with the new Visual Studio 2005 Beta software, and manynew ideas for projects or implementing…
I disagree with the idea that great minds think alike. But when they do, you can be pretty sure it’s a great idea.
It turns out that the change to RPC style was exactly what made the difference. Now the Java client can call into my .NET web service without a problem. Specifically,…
I have switched from “message” style to “RPC” style encoding of the WSDL in response to advice on the MSDN web site: http://msdn.microsoft.com/library/en-us/dnservice/html/service12052001.asp. Apparently Java uses RPC more frequently. Maybe…
I tried this: <?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <StartEvaluation xmlns="http://ottawa.byu.edu/Emar" href="#id0" > </StartEvaluation> <multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="" xsi:type="ns1:StartEvaluation" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://ottawa.byu.edu/Emar"> <PIN xsi:type="xsd:string">TESTPIN</PIN> <QuestionnaireName xsi:type="xsd:string">READY</QuestionnaireName> </multiRef> </soapenv:Body> </soapenv:Envelope>…
I came across a very handy, easy to compile Java application that makes it easy to just paste in and modify SOAP requests and analyze the web service responses. It…
I got it to work, with modification. Here’s a snippet of what the client was trying: <StartEvaluation xmlns="http://ottawa.byu.edu/Emar"> <parameters href="#id0" xmlns=""/> </StartEvaluation> <multiRef id="id0" ...> <PIN xsi:type="xsd:string">TESTPIN</PIN> <QuestionnaireName xsi:type="xsd:string">READY</QuestionnaireName> </multiRef>…
Tried to get a Java client using webMethods to communicate with my .NET web service. I was not on the Java end. A 3rd party client was. We had an…