• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

@WebService illegal character: \64

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am new to web-service is currently trying to compile and deploy samples application provide with the SDK i.e hello-jaxws when I try to compile & deploy this application using the ant script provided with this application I get an error :

init:
compile-deploy-service:
[echo] C:/Program Files/Java/jdk1.5.0_02
[javac] Compiling 1 source file to C:\Sun\SDK\domains\domain1\autodeploy
[javac] C:\Sun\SDK\samples\javaee5\webservices\hello-jaxws\src\endpoint\Hell
o.java:6: illegal character: \64
[javac] @WebService
[javac] ^
[javac] 1 error

Any Help will be appreciated. Why do I get this error ? I am using jdk1.5

Thanks.
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

C:\Sun\SDK\samples\javaee5\webservices\hello-jaxws\src\endpoint\Hell
o.java:6: illegal character: \64



If this was my problem I would be looking very carefully at line 6 and neighboring lines in the Hello.java source file. What is the character sequence that "\64" appears in?

Bill
 
Manu Garg
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
it is considering @ as a special character i.e '/64'.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic