Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. passertm

    xml deserialize

    >Find out what does that serialized document represent and try one of these: http://ws.apache.org/axis/java/apiDocs/org/apache/axis/encoding/class-use/Deserializer.html thanks. but it didn't help me to create a copy of object of this clas.... now i try to make valid quession.. I have XML...
  2. passertm

    xml deserialize

    and what do you advise me????
  3. passertm

    xml deserialize

    i want try deserialize it with "org.apache.axis.encoding.Deserializer" object. but i cant create this class object
  4. passertm

    xml deserialize

    i think it is valid xml. but decoder cant deserialize it because it serialize by soap. i just need to know how i can deserialize xml by AXIS. how i can create a "org.apache.axis.encoding.Deserializer" Object
  5. passertm

    xml deserialize

    can't i just get xml and deserialize it to object self??
  6. passertm

    xml deserialize

    >Which class does example 1 not find ? this exception comes ftom server. but i have not access to edit server side of program. full exception look like [/code] AxisFault faultCode: faultSubcode: faultString: [java.lang.NoClassDefFoundError] faultActor: /crbtprov/Content faultNode...
  7. passertm

    xml deserialize

    OK if i try to use for this something like Options options = new Options(args); String endpoint = "http://server.com/crbtprov/Content"; String proc="getFragmentList"; Service service = new Service(); Call call = (Call) service.createCall()...
  8. passertm

    xml deserialize

    it not work. return exception. i think it becase the xml cenerated by AXIS. the XML looks like <?xml version="1.0" encoding="UTF-8" ?> - <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...
  9. passertm

    xml deserialize

    what method i must use to deserialize xml object
  10. passertm

    how debug servlet

    but when tomcat wirking you dont see System.out.println() results
  11. passertm

    applet + proxy

    i have applet what must connect with servlet. when it try to connect to localhost, it can. but if it try to connect to other server cant find proxy. i can write my proxy to applet but if other client load this applet. it will not work. how applet can define proxy automatic
  12. passertm

    how debug servlet

    how i can debug servlet
  13. passertm

    paste

    <input type="file" name="file1" value="c:%5C01.jpg"/> but it is not working browser create it like <input type="file" name="file1">
  14. passertm

    paste

    but i need file field with initial value. something like: <input type=file name=file1 value='c:\01.jpg'>
  15. passertm

    paste

    I just need a page with the file field(<input type=file) that has a value
  16. passertm

    paste

    <html> <body> <form name=f> <input name=op1> <input type=file name=op2> </form> <script language=javascript> f.op1.value='qwert'; f.op1.focus(); </script> <input type=submit onclick="javascript:f.op1.focus();paste();"> </body> </html> i need creat a new html page with initial value of file...

Part and Inventory Search

Back
Top