IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.



#Automation


#Applicationintegration
#webMethods
#Integration
 View Only
Expand all | Collapse all

Example EDI Client Java

  • 1.  Example EDI Client Java

    Posted 09/15/05 05:28 PM

    Help me please, somebody have a client example of EDI for fiole transfer???


    #Integration-Server-and-ESB
    #webMethods
    #webmethods-Protocol-and-Transport


  • 2.  RE: Example EDI Client Java

    Posted 09/15/05 06:34 PM

    Are you looking for an example EDI file? If so, for which transaction set and version? A search of the Internet using your favorite search should turn up many, many samples you can use.


    #webMethods
    #Integration-Server-and-ESB
    #webmethods-Protocol-and-Transport


  • 3.  RE: Example EDI Client Java

    Posted 09/15/05 07:17 PM

    Rodrigo,

    You can also get EDI X12 sample from WmEDISamples package flows…extract from edidata from the pipeline of EDIToXML service…or other told option aswell.

    HTH,
    RMG


    #webMethods
    #webmethods-Protocol-and-Transport
    #Integration-Server-and-ESB


  • 4.  RE: Example EDI Client Java

    Posted 09/15/05 07:20 PM

    I need a client to send a EDI file to service…


    #Integration-Server-and-ESB
    #webmethods-Protocol-and-Transport
    #webMethods


  • 5.  RE: Example EDI Client Java

    Posted 09/15/05 07:23 PM

    Hello,
    Are you looking for a front end to actually transfer the files? Your title had “client java” in it but I don’t know if you want a client program to manage the transport began a simple file copy. I would assume you can push it server-side using the ftp service. Good day.

    Yemi Bedu


    #webmethods-Protocol-and-Transport
    #webMethods
    #Integration-Server-and-ESB


  • 6.  RE: Example EDI Client Java

    Posted 09/15/05 07:32 PM

    Hello,
    Can you specify what “serivce” is exactly. Where is the source file located? Is the service a flow service? what requirements surround how the client is made? Your response will need to be more than one line for a decent response on our ends.

    Just to crack at it anyway. I use JSP hosted on our IS to present a front end to creating and sending EDI documents to our internal TN. You may be able to take a similar approach. Again, this is not a POJO type of client but a web client. Good day.

    Yemi Bedu


    #Integration-Server-and-ESB
    #webmethods-Protocol-and-Transport
    #webMethods


  • 7.  RE: Example EDI Client Java

    Posted 09/15/05 08:38 PM

    Rodrigo,

    Point to http://ServerName:port/WmEDI/ and in the navigation panel,click on Submit Test EDI Data.That is what i understood from your post.

    ramesh.


    #Integration-Server-and-ESB
    #webmethods-Protocol-and-Transport
    #webMethods


  • 8.  RE: Example EDI Client Java

    Posted 09/15/05 09:56 PM

    I have a service in webMethods that he has that to receive an archive, that has 5mb-10mb, what this archive happens is text. When I generate the client of the webMethods and read this archive and I submit it as one string I have problems, the service is a connecting webservice and it webMethods is giving dumping of memory.


    #webmethods-Protocol-and-Transport
    #Integration-Server-and-ESB
    #webMethods


  • 9.  RE: Example EDI Client Java

    Posted 09/16/05 04:01 PM

    Rodrigo,

    It seems you may have a LargeDoc issue. Look into the EDI and TN docs at the LargeDoc handling sections. Also lots of threads here on it as well.

    HTH


    #webmethods-Protocol-and-Transport
    #webMethods
    #Integration-Server-and-ESB


  • 10.  RE: Example EDI Client Java

    Posted 09/16/05 09:01 PM

    I have an equal archive below wsdl to the described one, that it uses multipart of message, as I make pra to create a service thus.

    <?xml>
    <definitions
    xmlns=“[url=“http://schemas.xmlsoap.org/wsdl/”]http://schemas.xmlsoap.org/wsdl/[/url]
    xmlns:xsd=“[url=“XML Schema”]http://www.w3.org/2001/XMLSchema[/url]
    xmlns:soap=“[url=“http://schemas.xmlsoap.org/wsdl/soap/”]http://schemas.xmlsoap.org/wsdl/soap/[/url]
    xmlns:mime=“[url=“http://schemas.xmlsoap.org/wsdl/mime/”]http://schemas.xmlsoap.org/wsdl/mime/[/url]
    targetNamespace=“urn:attachment.tip”
    xmlns:tns=“urn:attachment.tip”>
    <message>
    <message>
    <part>
    </message>
    <message>
    <part>
    </message>

    <porttype>
    <operation>
    <input>
    <output>
    </operation>
    <operation>
    <input>
    <output>
    </operation>
    </porttype>

    <binding>
    <soap:binding style=“rpc”
    transport=“[url=“http://schemas.xmlsoap.org/soap/http”]http://schemas.xmlsoap.org/soap/http[/url]”/>
    <operation>
    <soap:operation>
    <input>
    <mime:multipartrelated>
    <mime:part>
    <soap:body>
    </mime:part>
    <mime:part>
    <mime:content>
    </mime:part>
    </mime:multipartrelated>
    </input>
    <output>
    <soap:body>
    </output>
    </operation>
    <operation>
    <soap:operation>
    <input>
    <mime:multipartrelated>
    <mime:part>
    <soap:body>
    </mime:part>
    <mime:part>
    <mime:content>
    </mime:part>
    </mime:multipartrelated>
    </input>
    <output>
    <soap:body>
    </output>
    </operation>
    </binding>

    <service>
    <port>
    <soap:address
    location=“http://localhost:9080/attachment/services/AttachmentTip”/>
    </port>
    </service>

    </definitions>


    #webMethods
    #webmethods-Protocol-and-Transport
    #Integration-Server-and-ESB