• 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

Attempt to retrieve Sharepoint WSDL fails with “Server redirected too many times”

 
Ranch Hand
Posts: 63
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to connect to a Sharepoint server through Java code. My code works fine with some Sharepoint servers, but fails when I try to connect to my Comcast provided account. The classes `ListsSoap` and `Lists` were generated from a Sharepoint WSDL using wsimport.

I read this may be caused by not using doman\username as the Sharepoint username. I tried prepending different domains to the username parameter, things like "mycompany.comcastbiz.net\\me@mycompany.comcastbiz.net"; but I received a 401 error for all domain names I tried.







javax.xml.ws.WebServiceException: Failed to access the WSDL at:
https://www.po1.comcast.net/sites/mycompany//_vti_bin/Lists.asmx?WSDL.
It failed with:
Server redirected too many times (20).
at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.tryWithMex(RuntimeWSDLParser.java:162)
at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:144)
at com.sun.xml.ws.client.WSServiceDelegate.parseWSDL(WSServiceDelegate.java:265)
at com.sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:228)
at com.sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:176)
at com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:104)


 
reply
    Bookmark Topic Watch Topic
  • New Topic