Jump to content

ashvini

Members
  • Posts

    54
  • Joined

  • Last visited

About ashvini

  • Birthday 03/10/1982

Previous Fields

  • Languages
    XML, Web-Application Architecture

Contact Methods

  • MSN
    ashv@live.in
  • Website URL
    http://www.genset-warehouse.com
  • ICQ
    0
  • Yahoo
    sharma.ashvini@yahoo.co.in

Profile Information

  • Location
    Gurgaon
  • Interests
    Share and Discuss about Technology...

ashvini's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hi, As far as I get your question.No, you can specify WSDL in place of XSD, if your message is define in WSDL. yes, you can declare a namespace for WSDL.But when you talked about XML instance that becomes completely different thing. which nor related to web-services, in exact meaning.
  2. hi, nice to hear from you.. hope I will get chance to learn from you about rational rose..Well, I can try to solve your problem... but I am not getting what exactly you want to know.. please explain me clearly..regards,ashvini
  3. ashvini

    XQuery parser

    Hi, Didn't get you...Actually XQuery it self parse the XML file and shows you output and you asking to parse XQuery it self.if this is, than directly you are asking to create the XQuery Editor.is this you are asking or I m getting you wrong ???
  4. hi, Ya its normal.. generally happens, when you run tomcat using dump (not installed).(make sure tomcat on direct drive like C:/tomcat_home or d:/tomcat_home not inside any other folder)Now go to your %tomcat HOME%/conf/tomcat-user.xml Edit this file in any text or xml editor- erase all contents- and copy paste these contents-<?xml version='1.0' encoding='utf-8'?><tomcat-users> <role rolename="tomcat"/> <role rolename="role1"/> <role rolename="manager"/> <user username="tomcat" password="tomcat" roles="manager"/> <user username="both" password="tomcat" roles="tomcat,role1"/> <user username="role1" password="tomcat" roles="role1"/> <user username="manager" password="manager" roles="manager"/></tomcat-users>Now close file - run tomcat - open local host page - tomcat manager - enter id and password both as managerit will work...
  5. Hi, Ya.. you can do this... I am sending you a link... The page on this link, use web-services... so you will get idea how is it....http://www.soahub.com/Solutions/Enterprise..._Providers.aspxThis web-site provide... web-service via web-page.. just go through this...Now, question is from where you can get info to implement this.First you have understand the web-service properly. than you can use any server which deploys web-service on invocation...the way you will call web-service from you java script page called invocation of web-service... which can be achieve using any way-Several ways to create and deploy web-service:1. Using Apache Axis (http://ws.apache.org/axis2/1_1_1/adv-userguide.html)2. Bea Weblogic (http://edocs.bea.com/wls/docs70/webserv/index.html)3. NB 5.0 and Java Web-server 7.0 (http://developers.sun.com/prodtech/webserver/reference/techart/websvcs_n b.html)4. Using Oracle JDeveloper and Oracle App Server (http://www.oracle.com/technology/obe/obe1013jdev/ws/wsandascontrol.htm)But.. I m telling you, you must be aware about web-service and to invoke them... using above servers... than it will be same as calling servlet using java script..."I JUST TOLD YOU WHAT I KNOW, it may help full to you, Rest you can search on Google"
  6. Hi, There is no need to specify any kind of data type in XML. As boen_robot told, XML is a structured data that's it.what data you deal whether int /float / char / string doesn't matter...So, if you want to access int value only, at the time of parsing XML file you can apply a simple filter to find whether fetched value is int of string.Better refer Google to find some sample program using DOM/SAX to access/fetch value from XML file.
  7. Hi, can you elaborate more what exactly what you want to do using DOM....??May I able to help you... than...
  8. Thanx.... Boen... Thanks a lot..Regards,Ashvini
  9. Hi, Nice to hear you are interested in WebService. Well... I hardly find people for help in web-service as this is new tech..Any way, I know some little stuff about Web-services means a kind of whole structure but only in respect of java.And its so huge concept so can't depict right now here.If you have any query regarding web-service particularly post, I will try to make clear your concept about web-service.
  10. Well.. I hope you are looking for simple solution, as your main concern is developing web-page.You prob is how to get data from XML file- So you can put as string in your tool tip tag to display in web-page...If I m right, read the solution-You simply have to write a parser in JAVA which return string.flow will look like-XML <-> Java <-> Web-page tag (or wherever you want to store value)don't go to create model it will be complex.in Java, there are two parsers- DOM and SAX.for use SAX only-If u feel easy with this solution, reply I will write a sample program for you- till than you can go for link-http://www.javacommerce.com/displaypage.js...ql&id=18232
  11. <definitions name="HelloService" targetNamespace="http://www.ecerami.com/wsdl/HelloService.wsdl" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.ecerami.com/wsdl/HelloService.wsdl" xmlns:xsd="http://www.w3.org/2001/XMLSchema">these are the usual line of any WSDL file- can anybody tell why we use the lines- xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.ecerami.com/wsdl/HelloService.wsdl" xmlns:xsd="http://www.w3.org/2001/XMLSchema"I didn't find even in w3c school tutorial. can anybody help in to find the reason why we ware using these- line by line can anybody tell what the significance of using these line-Please Before ans read This- don't repeat this answer- I got ans in many tutorial like this- The use of namespaces is important for differentiating elements, and it enables the document to reference multiple external specifications, including the WSDL specification, the SOAP specification, and the XML Schema specification.So - My question is what kind of differentiate example ?? What do you mean by multiple external specification - while WSDL have single one standard format ?? What exactly this specification does, is there any sense to use them ??Can any body -
  12. Hi, why you are writing a script in XML, Better you write a template in VTL (Velocity Template Language) its just like any script and very simple even a child can use and more flexible for operation like you have asked. Output of template file will be XML file which u require. VTL is project of Apache Tomcat you can go through web-site.you have to do-A java(class) file to manipulate with file permissions -> template -> XML (output)Advantage it will dynamic and platform independent, while if you use Xquery it depends which providers u r using, as little deviation in Xquery vendors.
  13. Hi, I get to know WSDL 1.1 support more than one <portType>, but WSDL 2.0 didn't support, only one <portType> per WSDL document Allowed.Can anybody tell, it's true and if yes or if No, can send me link where I can find the proof, Actually I m working on project and without sure confirmation we can't state any comment to customer. So I need proof like Standard web-site link where it mentioned or any kind of online proof. I tried for both WSDL1.1 and WSDL 2.0 schema, but I not able to get, means how to check what's the correct.I need urgent can anybody help in in this regard.
×
×
  • Create New...