Search the web
Sign In
New User? Sign Up
uddi-technical
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 12 of 12   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#12 From: "hsuddi" <Harald.Schoening@...>
Date: Thu Dec 8, 2005 9:04 am
Subject: mapping UDDI v3 <--> JAXR
hsuddi
Offline Offline
Send Email Send Email
 
Hi all,

the JAXR Spec contains a UDDI V2 <--> JAXR mapping. Is there any
document or draft for a mapping UDDI V3 <--> JAXR?

regards

Harald

#11 From: "gupta_san90" <gupta_san90@...>
Date: Sat Dec 3, 2005 1:00 pm
Subject: Concernig Web Service
gupta_san90
Offline Offline
Send Email Send Email
 
Hi All,
I m new member of this group. I m doing thesis in Web Service
Composition. I want to know how can be check the composability of two
web service, means what are the requirements the web services need to
fulfill in order to be composable. Can anybody help me regarding the
same......

Thanks

Sanjay Gupta

#10 From: "kranthi6580" <kranthi6580@...>
Date: Wed Aug 10, 2005 9:12 am
Subject: uddi
kranthi6580
Offline Offline
Send Email Send Email
 
Hai,

  I am new to EVC++.i need  make application .The details are given
below.



  There is something called UDDI protocol .I need  to make a client .
All it is goiing to do is find ot another computer that is on the
network (they communicate using UDDI).Well, the server in this case
will be a web service.We will be running the server on XP Media
center.But, the pocket pc will have to discover the server.The key is
to write a client that discovers the web service.

so, I need to focus on the UDDI client samples.



So,I need to start doing it..How to  start it?



If u know any information about how to develop it,please give
information

Thanks In Advance.



Bye,

Srikanth dande

#9 From: "Kevin Ancil Weekes" <keyhawk97@...>
Date: Tue May 24, 2005 11:50 pm
Subject: Re: Language Translation
keyhawk97
Offline Offline
Send Email Send Email
 
It's working out well, thanks

>     Try the follwing
> http://www.xmethods.com/sd/2001/BabelFishService.wsdl
>
>
> I am not sure how far it can help you.
>
> Thanks,
> Jebastin Prabaharan.S.
>
>
>
> --- In uddi-technical@yahoogroups.com, "Kevin Ancil Weekes"
> <keyhawk97@h...> wrote:
> > hey does anyone know of any language translation / localization web
> > services? i'd like to use it in a web application

#8 From: "sjpharan" <jpharan@...>
Date: Tue May 24, 2005 9:40 am
Subject: Re: Language Translation
sjpharan
Offline Offline
Send Email Send Email
 
Hi Kevin,

     Try the follwing
http://www.xmethods.com/sd/2001/BabelFishService.wsdl


I am not sure how far it can help you.

Thanks,
Jebastin Prabaharan.S.



--- In uddi-technical@yahoogroups.com, "Kevin Ancil Weekes"
<keyhawk97@h...> wrote:
> hey does anyone know of any language translation / localization web
> services? i'd like to use it in a web application

#7 From: "Kevin Ancil Weekes" <keyhawk97@...>
Date: Tue May 24, 2005 2:04 am
Subject: Language Translation
keyhawk97
Offline Offline
Send Email Send Email
 
hey does anyone know of any language translation / localization web
services? i'd like to use it in a web application

#6 From: "Sapna Bafna" <sapzz@...>
Date: Wed Apr 13, 2005 5:04 am
Subject: UDDI Provisioning
sapu_bafna
Offline Offline
Send Email Send Email
 
Hi,
I am exploring UDDI to provide provisioning on UDDI Server.
Can some help me with it.

Thanks
sapzzzzzz

#5 From: "Pradeep" <ptewari2003@...>
Date: Mon Feb 7, 2005 1:19 pm
Subject: How to make UDDI directory, to get webservices present in LAN
ptewari2003
Offline Offline
Send Email Send Email
 
Hi,
    Friends

Greetings and best regards!!

I am able to add web reference and by specifying the complete URL of
the webservices I am able to fetch them.

But this way I am explicitly providing the complete information but I
want to make use of UDDI search that can locate the WebServices by itself.

In short I  think there should be something like UDDI directory or
some file in which I can LIST my LAN IP's so that it makes a LOCAL
search and tell me what is available.

Waiting for someone encouraging resposne.

best regards
Pradeep

#4 From: "Pradeep" <ptewari2003@...>
Date: Sun Feb 6, 2005 5:45 am
Subject: New problem in my project :-)
ptewari2003
Offline Offline
Send Email Send Email
 
Hi,
    All

I am facing following problem ::

I have declared my web service object in VC++ like this ...

WebReference::Service1* ob = new WebReference::Service1();
cout<<"last name = "<< ob->HelloWorld()<<endl;

Now what is happening .. actually ob->HelloWorld is returning is
printing 1 as its return value, and not the String that I am expecting
from it. The return value is behaving as a True and False value ..

Since When I am comparing it like ....

                   if(!ob->HelloWorld())
                   {
                     Console::WriteLine("Hello If");
                   }
                   else
                   {
                   Console::WriteLine("Hello Else");
                   }

It prints Hello Else .. So Can U suggest me what's the way to fetch
the String value .....instead of Boolean that I am getting here ......

Waiting to read from SomeOne ..

It's a bit urgent

best regards!!
Pradeep

#3 From: "Pradeep" <ptewari2003@...>
Date: Sat Feb 5, 2005 7:05 am
Subject: Accessing VB DLL through VC++
ptewari2003
Offline Offline
Send Email Send Email
 
Hi,
    I have developed a project in VC++ in which I am accessing a VB
DLL. I have created that dll through following command.

wsdl http://10.2.1.44/WebService1/Service1.asmx /l:vb /out:service1.vb

vbc /t:library /r:System.dll,System.web.services.dll,System.xml.dll
Service1.vb

Now I am calling a method called HelloWorld from my main module in
VC++ as follows ::


int _tmain()
{
Service1 *ob = new Service1();
System::Console::WriteLine("LastName:",ob->HelloWorld());
return 0;
}

Well I am able to build the project without any problem ... but the
String that is supposed to be returned ... nothing appears in console.

What to do now .. Since till now I was getting some errors but now its
a normal execution so .. no idea which side I am doing wrong ....

best regards
Pradeep

#2 From: "Pradeep" <ptewari2003@...>
Date: Fri Oct 29, 2004 6:13 am
Subject: About semantics in Web Services
ptewari2003
Offline Offline
Send Email Send Email
 
Hi All .

Well .. I am doing a Project, in which I need to first derive some
solution to a problem then I have to post them through Web Service and
further these solutions could be used by someone else in the Network
depending on the possible matching of some pattern through UDDI.

Well I guess it is a little bit what .NET environment does with UDDI &
Web Services.

Actually I need to add some semantics in the strings returned by a Web
Service.

I'll be happy If Some One could let me know that Can I implement some
semantics aspects in Web Services ?

Waiting for someones encouraging resposne.

May be I am not clear in my Questions but I can discuss my problem in
a much better version if someone out here can take some initiative to
help me out ...

Thanx
Pradeep

#1 From: "sjpharan" <sjpharan@...>
Date: Mon Oct 4, 2004 6:05 am
Subject: Understanding UDDIv3 -- Help??
sjpharan
Offline Offline
Send Email Send Email
 
Hi,
   I am trying to understand UDDI v3. I am using Systinet's UDDI
registry. I tried to access it through JAXR call. I am not able to map
few things.

     1. what exactly "keyName" attribute in KeyedReference(UDDIv3) maps
to(JAXR)?
          - name of the Classification or name of the concept?
     2. Is there any mapping(in JAXR) available for
KeyedReferenceGroup(UDDIv3)?
     3. What exactly tModelKey in TModelInstanceInfo(BindingTemplate)
maps to(JAXR)?
     4. can I add any webservices to my webproject in visualStudio.net
from UDDIv3 registry?


can any of you help me?

regards,
Jebastin Prabaharan.S.

Messages 1 - 12 of 12   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help