CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2013
    Posts
    1

    Servlet plus WebServices

    Hi all.

    I have web-app.One of task of this app is create document in different format(pdf,xml,html and other), from xml-datasource.

    The work schema are:
    client transmit on web-servlet ID of xml document, on servlet i'm connect to DB and get xml document as bytearray, after this servlet connect to web-services on the other server and transmit parameters (conver type and xml-bytearray). web-service respond bytearray of converted document. after this servlet transmit bytearrayof converted document to client.

    when i transmit to web-service big xml document (more 1MB) my app not respond for request.

    what could be the problem?

  2. #2
    Join Date
    Aug 2011
    Location
    West Yorkshire, U.K.
    Posts
    54

    Re: Servlet plus WebServices

    Any number of things could be going wrong. Best to check the log files for the container of your servlet and the server which is doing the conversion.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured