11G - invoking an asynchronous Web service that is not a BPEL process

Hi all,
Is there an 11G example of implementing and invoking an asynchronous Web service that is not a BPEL process ? . In 10g there is an example for Axis web service (Oracle_Home\integration\orabpel\samples\interop\axis\BPELCallingAsyncAXIS ) but I can't find anything related to 11G so far.
Thanks in advance,
sasha

Hey Chris.
I am just starting to write a jcd that calls an external web service but cannot find any sample code nor instructions on how to do it in the supplied documentation. Could you send me a code sample from your one?
Cheers
Matt

Similar Messages

  • BPEL build error when invoke an extrenal Web Service that returns an Array

    Hello,
    I built with JDeveloper a web service that returns an Array of Java Bean classes and I try to invoke this web service from a BPEL process. The wsdl file is automatically generated by the JDev. When I built the BPEl project I obtained the following error:
    [bpelc] [Error] :-1:-1: src-resolve.4.2: Error resolving component 'SOAP-ENC:Array'. It was detected that 'SOAP-ENC:Array' is in namespace 'http://schemas.xmlsoap.org/soap/encoding/', but components from this namespace are not referenceable from schema document 'http://malangiu-ro:8988/cde-Project-context-root/CdeFactoryWS?WSDL'. If this is the incorrect namespace, perhaps the prefix of 'SOAP-ENC:Array' needs to be changed. If this is the correct namespace, then an appropriate 'import' tag should be added to 'http://malangiu-ro:8988/cde-Project-context-root/CdeFactoryWS?WSDL'.
    [bpelc] [Error] :-1:-1: src-resolve.4.2: Error resolving component 'SOAPENC:Array'. It was detected that 'SOAPENC:Array' is in namespace 'http://schemas.xmlsoap.org/soap/encoding/', but components from this namespace are not referenceable from schema document 'http://malangiu-ro:8988/cde-Project-context-root/Top300FactoryWS?WSDL'. If this is the incorrect namespace, perhaps the prefix of 'SOAPENC:Array' needs to be changed. If this is the correct namespace, then an appropriate 'import' tag should be added to 'http://malangiu-ro:8988/cde-Project-context-root/Top300FactoryWS?WSDL'.
    [bpelc] [Error] :-1:-1: src-resolve.4.2: Error resolving component 'SOAP-ENC:Array'. It was detected that 'SOAP-ENC:Array' is in namespace 'http://schemas.xmlsoap.org/soap/encoding/', but components from this namespace are not referenceable from schema document 'http://malangiu-ro:8988/cde-Project-context-root/CdeFactoryWS?WSDL'. If this is the incorrect namespace, perhaps the prefix of 'SOAP-ENC:Array' needs to be changed. If this is the correct namespace, then an appropriate 'import' tag should be added to 'http://malangiu-ro:8988/cde-Project-context-root/CdeFactoryWS?WSDL'.
    Any hint? Thanks in advance!
    Regards,
    Marinel

    Hi,
    BPEL and BPEL PM do not have a good support for SOAPENC-Array: it would be very difficult to create such an array in BPEL or to receive it and manipulate it.
    The (unfortunately very intrusive) work around is to change the WSDL of the service to use a XML type defined using XML schema. This is all the more painful that JDev 9.0.4 does not have strong support for complex types.
    In general though, I would highly recommend this best practice:
    1) Start by define the WSDL contract first
    2) Then generate the server side skeleton to implement it
    3) Use BPEL as the client to this contract.
    By starting with the contract first, you make sure that 1) your interfaces are clean and coarse grained.
    2) things like java objects, sessions, etc to not leak through the interface (which would be the worst thing that could happen because it would closely link the client and the server.
    Sorry for not being more helpful. This will get radically cleaner in Oracle AS 10.1.3.
    Edwin

  • Invoking Web Service with PKI Authentication from BPEL process

    Hello --
    I am trying to test calling a Web service utilizing PKI-based authentication from BPEL running under the 10.1.2.0.2 Process Manager. When I access the service from a browser I am prompted for Username and Password the first time. When I attempt to access it from BPEL I receive this error:
    javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found
    Is it possible to access this service from BPEL in 10.1.2.0.2? How can I pass the service the required credentials?
    Thank you for your time,
    Paul Camann

    I've gotten past the original error by importing the security certificate of the Web service into my keystore/truststore. I'm also running the process on SOA 10.1.3.1.0. Now when I invoke the Web service from the BPEL process I get this error:
    exception on JaxRpc invoke: HTTP transport error:
    javax.xml.soap.SOAPException: java.security.PrivilegedActionException:
    javax.xml.soap.SOAPException: Bad response: 403 Forbidden
    I've tried passing the credentials every way I can -- partner link properties, Oracle Web Services Manager, whatever -- and still get the same error. I would expect to see a 401 error for problems with credentials, not a 403.
    Any suggestions?
    Thanks for your time.
    Paul Camann

  • Creating a Web Service to handle flow between BPEL process and XML Gateway

    I am new to Web Services. I have never created one, yet I have the task of designing the following for a project.
    Any help as to what steps I need to take would be very very helpful. There is a lot of information on XML, SOA and WSDL out there that it can get very confusing, and sometimes you just need someone to point the way
    What I need to do is create a Custom Send and a Custom Receive Program (both web services) handle the message flow between an Enterprise BPEL processes and a Deployed XML Gateway.
    BPEL compresses this XML business object document (for faster transmission), and sends remotely to this Custom Receive web service, which in turn calls a decompress java program and then send the document to the XML gateway inbound web service.
    The Custom Send web service does just the opposite. It needs to take the business object document from XML gateway, call the compress java program and then send to the Enterprise BPEL.
    In a nutshell...these Custom Send/Receive Web services handle the message flow between the Enterprise BPEL process and the Deployed XML Gateway.
    What I need help on...
    -Creating this in JDeveloper- where do I get started?
    -How does a web service receive a compressed file sent to me via BPEL? Does it just sit there waiting for it?
    -Is this a synchronous or asynchronous design?
    -Will this be 2 web services (Send and Receive) or do I make 1 with 2 functionalities
    -How do I call the java compress/decompress program within the web service? (this java function is already created and ready to be called)
    -Is this decompressed business object file an XML schema and an XML message? Or just a message?
    -I need to send this to the XML Gateway Web Service to load. How does that work?
    -I have a Generic XML Gateway WSDL file...I assume I need to take all the info I get and map it to this template? Is this true? How do I do that?
    Like I said, any help would be appreciated. Links answers to my many questions would be fabulous.
    -Jason

    If you are talking about simple XML transformation of the SOAP payload between the client calling your service and the final destination of the message you are routing, the ESB approach may be a better fit.
    If you have more complex transformation in mind, with major processing and rework of the message in the intermediary, you may be better of with using the POJO approach. Write your service and embed a callout to the other service in your implementation. If the two services share the same Java Model, you may even be able to re-use the same Java Bean.
    To get SOAP Element instead of Java bean, you just need to use the noDataBinding option with either genProxy and topDownAssemble (or assemble). See the WS-Guide [1] for details. Chapter 18 will give you all the details about the different WSA command line parameters.
    Hope this helps,
    -Eric
    [1] http://download-west.oracle.com/docs/cd/B31017_01/web.1013/b28974/toc.htm

  • OWSM 11g: Invoking a secured web service through a java proxy service

    Hi All,
    I am trying to call a secured bpel service which is expecting a username token password. I have created a java proxy service for the same. I now need to add the username token to the same. Can anyone please guide me in this regard.
    Thanks in advance.

    Just to add some pointers,
    I added the following code to the proxy still the soap headers is not getting propagated.
    OrderBookingAndShipment orderBookingAndShipment = orderbookingandshipment_client_ep.getOrderBookingAndShipment_pt();
    String username = "OWSM_11g";
    String password = "password";
    List credProviders = new ArrayList();
    //client side UsernameToken credential provider
    CredentialProvider cp = new ClientUNTCredentialProvider(username.getBytes(),password.getBytes());
    credProviders.add(cp);
    Map<String,Object> context = ((BindingProvider) orderBookingAndShipment).getRequestContext();
    context.put(WSSecurityContext.CREDENTIAL_PROVIDER_LIST,credProviders);

  • Set a custom path for the service endpoint associated to a BPEL process

    Hello,
    I have a BPEL process and I would like to change the endpoint address of the corresponding web service that corresponds to the BPEL process.
    To be more specific, by default, the web service corresponding to a BPEL process "MyProcess" has an endpoint like: http://MyMachine:9700/orabpel/default/MyProcess , supposing that the process is deployed in the default domain.
    What should I do to have an endpoint like
    http://MyMachine:9700/orabpel/default/MyPath/MyProcess ?
    Is it possible?
    Thanks in advance!
    Regards,
    Marinel

    Figured out that the configuration property 'location' for the PartnerLinkBinding Deployment Descriptor can be used for this purpose. Tried it and it is working out perfectly fine.
    Thanks,
    Vijay.

  • Invoke existing DotNet web services via B1IF soap call

    Hi All,
    I have developed my own B1IF web services and invoked them with dot net.
    I now want to invoke existing hosted web services via B1IF (Not B1IF Web Services).
    Can someone guide me using the Web Service Call (soap call).
    Can I invoke any web service via B1IF scenarios (Web Service Call) ?
    Kind Regards,
    Brenden Draper

    Hi Bastian,
    I read about it for some reason I get the following error when loading the wsdl:
    Can you maybe tell me why I get this ?
    I can access the wsdl via my browser perfectly.
    Kind Regards,
    Brenden Draper

  • Invoke Asynchronous Web Services

    I used to work with Axis1.4 Web Services and now transfer to
    Axis2 which supports asynchronous web services. I would like to try
    to invoke asynchronous web services in Flex/FDS. Does Flex support
    it? Does anyone have experience in this? Please give some
    suggestions. Thanks.

    That's pitty. But I tested a simple helloWorld service, it
    works. However, not work with the other one.

  • Invoking a web service that returns binary

    Hi,
    Is it possible to invoke a web service that returns a binary object?
    Its similar the following example but I need to return a binary object :
    declare
    v_url:='http://www.somesite.com/function_name?invoke=placeOrder&par1=val1'
    v_output varchar2(4000);
    begin
    select utl_http.request(v_url)
    into v_output from dual;
    end;
    Thanks in advance

    No "advantage" as there are two very different tools.
    UTL_HTTP is basically an Oracle PL/SQL web browser. It uses the HTTP application protocol. It is just like your ordinary browser (IE, Firefox, Opera), but as it is server-side and display-less, it comes without a rendering engine.
    UTL_DBWS is to interact with web services using the SOAP application protocol.

  • Invoking Asynchronous Web Service from BPEL Process

    Hi,
    I have been working on the BPEL Process Manager for some time and now facing problem in invoking asynchronous web service from a BPEL Process. I have implemented a web service in Java using Axis but wasn't able to invoke it.
    I have gone through all the meterial available on this site but couldn't get any great help.
    Can some one help me in resolving this issue. A pointer to any example or sample material/tutorial will be appreciated.
    thanks
    Farooq

    I do the same thing.
    Take wsdl from axis and save it somewhere.
    Then you can create a standard project in Oracle BPEL PM. Create partnerlink, give a name and click on first icon to take your wsdl. It will add some needed code, you answer always yes. Then you can create receive, assign, invoke, assign and callback or similar and deploy it.
    Try it through BPEL Console...
    Ema

  • How to create asynchronous web services in OSB 11g?

    Hi,
    Using the workbench, when I try to create a web service from an existing WSDL, the workbench automatically uses JAX-WS.
    JAX-WS does not offer support for asynchronous web services, since it supports only HTTP ports (@WLJmsTransport does not work).
    Request your help in resolving this issue. One way is to use JAX-RPC but I do not know how to configure the workbench to use JAX-RPC instead of JAX-WS.
    Thanking you in advance.
    Regards
    Shyam.V

    Hi,
    see <a href="http://help.sap.com/saphelp_nw70/helpdata/en/d7/951b42f828df2ce10000000a1550b0/frameset.htm">this</a> and also carry out a search in this forum, this has been asked before.
    Regards, Heidi

  • Invoke External HTTPS Web Service from OSB 11G

    Hi,
    We have a requirement to invoke a HTTPS web service hosted by third-party and we have to send HTTP basic authentication detials also.
    Third party given us the HTTP basic authentication details and only certificate nothing else.
    After some research service account can be used for basic authentication and service key provider for https requirement.
    But before service key provider creation there are steps to import the certificate into weblogic server and do some config steps (PKI cred mapping and all )I have gone through the forums but i am new to OSB and SSL i could not understand.
    Can some one help with detailed steps.
    Thanks in Advance
    Srikanth

    You can simply use "Execute Script" operation in Workbench and make use of java.net.URL. Below links should help :
    http://www.mkyong.com/webservices/jax-rs/restfull-java-client-with-java-net-url/
    http://www.adobe.com/devnet/livecycle/articles/building-xml.html
    http://help.adobe.com/en_US/livecycle/9.0/workbenchHelp/help.htm?content=000581.html
    Hope this helps.
    -Wasil

  • Asynchronous Web Service Request-Reply Invocation from Service Control

    Hi all
    I need to invoke a reliable web service call using a Service Control. when trying to make that invocation for an operation that returns data. It gives the following exception. For the methods that marked with @Oneway() annotation in the service implementation, it works.
    javax.xml.rpc.JAXRPCException: Reliable messaging will only work with one way messages or asynchronous request/response messages.
    </bea_fault:stacktrace></detail>]; nested exception is:
    weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: Reliable messaging will only work with one way messages or asynchronous request/response messages.
    Caused by: java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoap.org/soap/envelope/}Server] FaultString [Reliable messaging will only work with one way messages or asynchronous request/response messages.
    ] FaultActor [null] Detail [<detail><bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webservice/fault/1.0.0">javax.xml.rpc.JAXRPCException: Reliable messaging will only work with one way messages or asynchronous request/response messages.
    </bea_fault:stacktrace></detail>]; nested exception is:
    weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: Reliable messaging will only work with one way messages or asynchronous request/response messages.
    So I need to make Asynchronous Request-Reply Invocation from Service Control, which is apparently doesn't happen in this case.
    Thanks

    Hi HP,
    I included the following snippet in job source:
    //Set completion strategy to external
    jcsJobContext.setCompletionStrategy(CompletionStrategyType.External);
    I get the following error when compiled:
    JCS-102183: Compile failed for Job Definition SOAP_GlobalWeatherSoap_GetCitiesByCountry (Latest Version): SOAP_GlobalWeatherSoap_GetCitiesByCountry.java:user code 24:40:cannot find symbol symbol : variable CompletionStrategyType location: class com.redwood.scheduler.custom.SOAP_GlobalWeatherSoap_GetCitiesByCountry jcsJobContext.setCompletionStrategy(CompletionStrategyType.External);
    I am not able to find any information from the API documentation on the method setCompletionStrategy, so I'm not able to figure what type of variable am i passing, so that i can initialize it. Please shed some light on it.
    Also there is no path called Scripting > Built-In Web Services
    I have only Scripting>Published Web Services
    Thanks
    Nanda

  • Asynchronous Web Service

    I am looking for an approach to decouple my sytem. Traditional approach I have done before is to construct custom xml message, send the message to JMS queue. Another process (MDB) retrieve the message from the queue, parse the message and invoke the corresponding services.
    This approach is working, however, it involves a lot of work (to construct and parse the xml message).
    I am looking for the new approach based on asynchronous Web Service.
    Read through the document:
    http://e-docs.bea.com/wls/docs81/webserv/jmstransport.html#1054482
    In weblogic 8.1, you can use JMS transport to invoke a webLogic web service. Also, you can create asynchronous client to invoke web service. Have some questions here:
    1. the document did not emphasize the advantage to use JMS based web service. It sounds like it's just an alternative approach comparing the traditional http based approach. does JMS based web service mean more reliable?
    2. for me, to use JMS base web service with RPC (synchronous) type of client sounds funky. Is there a way to specify that the JMS based web service is for aynchronous client only?
    3. the way asynchronous client work is to create a temp response queue to receive the web service response. Is there any performance penalty? For my case, I never expect any result to come back - all actions return void (why? cause all the services interact with the same database).
    4. continue to question 3. Is there a way to specify that the asynchronous client never expect any result and don't create a temp response queue? Also, if the return result is void, whether or not the response queue is still created?
    Ok, here's the short question - what I am looking for is an alternative approach to replace the traditional approach. Sounds for me, it should be a combination of JMS based web service and asynchronous client. Weblogic seperate them into two seperate features. How to efficiently use them together?
    thanks.

    1. the document did not emphasize the advantage to
    use JMS based web service. It sounds like it's just
    an alternative approach comparing the traditional
    http based approach. does JMS based web service mean
    more reliable? JMS transport is not emphaized because it is not a
    standard. You can not use JMS transport and interop
    with other vendors.
    >
    2. for me, to use JMS base web service with RPC
    (synchronous) type of client sounds funky. Is there a
    way to specify that the JMS based web service is for
    aynchronous client only? Sorry, no.
    >
    3. the way asynchronous client work is to create a
    temp response queue to receive the web service
    response. Is there any performance penalty? For my
    case, I never expect any result to come back - all
    actions return void (why? cause all the services
    interact with the same database).
    4. continue to question 3. Is there a way to specify
    that the asynchronous client never expect any result
    and don't create a temp response queue? Also, if the
    return result is void, whether or not the response
    queue is still created?The response queue is created when the JMS connection is
    created. Hence the temp queue is created always. I agree
    that it is nice to have an option to turn it off. Will try
    to add it in 9.0
    >
    Ok, here's the short question - what I am looking for
    is an alternative approach to replace the traditional
    approach. Sounds for me, it should be a combination
    of JMS based web service and asynchronous client.
    Weblogic seperate them into two seperate features.
    How to efficiently use them together? You are right, JMS transport and async client can be
    combined to form a scalable system. It is not
    optimized for this use case in 8.1, because the focus
    was on portability (async client is WLS specific) and
    interop.
    An alternate approach will be to expose a POJO as
    web service. POJO can drop the incoming data to a
    JMS queue. Then use an MDB to drain the queue to
    do the actual work. This way, the client will have
    a typed interface (in WSDL) to work with and it can
    use the normal HTTP transport. Since the POJO is
    just doing an enqueue, I think it can scale well too.
    Regards,
    http://manojc.com

  • Asynchronous Web Services in BEA

    I need to build an asynchronous web services SOAP message reciever and an asynchronous
    web services SOAP message sender. Over HTTPS.
    I know how I would do it with JAXM and the Sun RI, but can not seem to find any
    implementation or equivelent in WebLogic (though many of the interfaces and abstract
    classes are in the BEA jar files). We are on WebLogic 7.

    I don't understand what you mean in step 5 that the client does not change. I
    want the client to send a SOAP message instead of call a remote process.
    Steve
    "manoj cheenath" <[email protected]> wrote:
    7.0 supports one-way and it is same as in 8.1.
    You got the steps to write a one-way service right.
    Here is it again:
    1. write the backend component. The method
    that you want to make one-way should return void.
    2. Either run servicegen or autotype+source2wsdd
    to generate the XML codecs and web-services.xml
    DD file.
    3. edit the DD file to change invocation-style as
    shown below.
    <operation name="helloOnewayWorld"
    invocation-style="one-way"...
    4. package and deploy.
    5. There is no change required on the client side. Client
    will knows that an operation is one-way by looking at
    the WSDL.
    -manoj.
    "Steve Watson" <[email protected]> wrote in message
    news:[email protected]...
    Can you send me the WL 8.1 example? How has support for one way messagingchanged
    in 8.1? Would there be any advantage for us to move to 8.1?
    Thanks everyones help so far. I am trying to assemble the rules oncreating one
    way messages - from this thread and bits and peices in the documentationI
    have
    found:
    "a document-oriented Weblogic Web Service operation can have only oneparameter,
    of any supported data type"
    "The backend component that implements the operation must explicitlyreturn void."
    "You specify this type of behavior with the invocation-style attributeof
    the
    <operation> element in web-services.xml"
    Have I missed anything?
    Steve Watson
    "manoj cheenath" <[email protected]> wrote:
    You need to set invocation-style="one-way" in the
    operation element of the web-services.xml dd file [1]
    You can use source2wsdd ant task to generate this DD [2].
    I dont have an example that runs on 7.0. But here is an
    example that works with 8.1.
    -manoj
    [1] http://edocs.bea.com/wls/docs70/webserv/wsp.html#1001373
    [2] http://edocs.bea.com/wls/docs70/webserv/anttasks.html#1080421
    "Steve Watson" <[email protected]> wrote in message
    news:[email protected]...
    I can find very little in the documentation on how to do this -
    is
    there a
    cook
    book?
    Steve Watson
    "manoj cheenath" <[email protected]> wrote:
    WLS only supports JAX-RPC. One can do one-way invokes
    using JAX-RPC. So, you can implement your receiver as a
    web service that accept one way invokes.
    Will this fit your use case?
    -manoj
    "Steve Watson" <[email protected]> wrote in message
    news:[email protected]...
    I need to build an asynchronous web services SOAP message recieverand an
    asynchronous
    web services SOAP message sender. Over HTTPS.
    I know how I would do it with JAXM and the Sun RI, but can not
    seem
    to
    find any
    implementation or equivelent in WebLogic (though many of the
    interfaces
    and abstract
    classes are in the BEA jar files). We are on WebLogic 7.
    begin 666 sample3.zip
    M4$L#!!0`" `(`/>!@BX````````````````)``0`345402U)3D8O_LH```,`
    M4$L'" `````"`````````%!+`P04``@`" #W@8(N````````````````% ``
    M`$U%5$$M24Y&+TU!3DE&15-4+DU&\TW,RTQ++2[1#4LM*L[,S[-2,-0SX.5R
    M+DI-+$E-T76J! F8Z!G&&QCIIB8J: 27YBGX9B87Y1=7%I>DYA8K>.8EZVGR
    M<O%R`0!02P<(V@!HADH```!*````4$L#!!0`" `(`$!U@BX`````````````
    M```.````<')O<&5R=&EE<RYT>'2%4$UKPS ,O0?R'P3==5-W&@1Z&AD4!BL[
    M]1;<1&T]',O(RMHR]M]G)RNL'6PZV4_O0]+L]L\JBQF,%80#B5J*"?I/DRA*
    M?8#."K7*<@)EX$'#H+ C3V*4.MA:E]TRLTG,!6H?<!2;$)QMC5KV,9L`;T'W
    M!)'DG>3NDC%JNPHW9'!(C":-^I9B(^J0LJUQ^-.O+*ZU8^[!'2*V[+=VA_VI
    MX]Y8?Z5+L1L3"09QOP::'DUJ+?:JH4)TW!JWYZC5PWQ^/^V5L6QVEF^$#TD)
    M=*2R^/XL'BM<">_$]/"4+X1+KR2>%.IC<"PDN*S7J^>7U_JN7M?9>#KMN,S-
    MQ_F>GSC!9=$Z2UZ;UID8*5Y0+EME\0502P<(3D:RZ!$!```/`@``4$L#! H`
    M`````.R!@BX````````````````(````<V%M<&QE,R]02P,$% `(``@`VX&"
    M+@```````````````!<```!S86UP;&4S+V)U:6QD+7=E8G-S+GAM;*U6VV[;
    M, Q]+]!_((R]Q@;V[ SH+@4R8$6P"_:L2'2B5K8,24X6#/GW49;MV$F<2]<W
    M2SJ'I,@CTFEI]#-R!P7+<1IM<&%M! (S5BDWC1:55"+Z<']W?P>0.F:6.(#&
    M`0`-@C"L<)PI!0';PO@*^4L$LEBAD>Y!J6GD3(41)#UFY;3;E@AA#?#,UNR3
    MSDM=8.'L-'KW-QBS:-:28UPR_L*6N(L/#WR NZ@U(]"ZS]+L^;IR9>5B(<TN
    M^?WEXV3V])APQ:Q%NGK+:HP_U7<=\^PS$^!I;:!D;M5MT:9?H\*<X@>E.7-2
    M%U?&D?R?'2479VSX;\_W&8YKE['?VO4I:7)XI31I2]06+;6Z,AS?;ZP0;>8H
    MW=S(,H3(#3*'0'%"D[ON7!M@A0"B*LB,SB'8@DPJ;&OGX_M1;Q_7(,!W7<6$
    M>"3F^:S0R:3AV_A/KEH__DYV5F3ZJN(D-;S/;VS^^CX[CK,R:A^DO^UXF"=U
    M''M._<)&A?9&.GL#F=VJLB.1I4E/4IW,N))D<(G%.9&Q@<P")2B+0JHSWY8K
    MG'UE(SWA9!DF@10_,Q/UBGES(1ONR?;2N.BZ2T^=\QOPE<6Y-LYC'^PW="LM
    M`F_0<M,DM.AF=:*W-TV[JP*-BA*-VPY :(PV$:R9JF@/"NW ELAE)E'$\',E
    M+72\O+(.%N@WUE*@H.],&ZH5#0Q9+E.A8!T@R/&.8*F44PN):X@2TIHSZN
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
    ML&0'A::+]G-98H\F;6_0SI'(.[.["14O*L\!A]8Q%<+4+"H_3=9^KA-NKIS
    M]]XX#CU"M/.[1DO0FOKUW-Q5(LL\AMFI!IJ=IK]5CMZCTI0"&Y"6D D:.HXK
    MZV_.JPB>=:!D6>;WF_%?:@TGT;^_`%!+!PA5MM$EK@$``-\#``!02P,$% `(
    M``@`VX&"+@```````````````!X```!S86UP;&4S+TAE;&QO5V]R;&1397)V
    M:6-E+FIA=F%]4LMJPS 0O!O\#XM/3DJ<0V\)@4(IY-#'P8?VNK&71%26A"3'
    M<4/_O=:C=@)M0""8G9G=64EA]8E[`MM:J1GRPF"C.-VOTR1-EO-YFL <'CK>
    MF55'.T/ZR"H");5]Q88VV:/&K_Y=:EYGCKI,$]7N.*N@XF@,;(ESZ<MED)Z=
    M+T!PAM%;H;9P(*Q)>S9P6:%E4FRR@&:!OG17[!"(!]=A.RGS$9_,9K$KQ-I.
    MUF%FV("@+J#Y;!TX8[4PY%/FEV;%/H(S^!5HLJT6D\[#WW\'E8JT#P9,'&/&
    MA;$]'W8I!2TZ[/^(>I0L)GT;YL4^)BVM9F(/#1GCWM#%=/.4O;'4%+*UA1H(
    MEHL<L@LA&.S-"C*XFZ2W9J93Q=N:_AFKEL(^G90TPTK.-US\$Y\:7KJP;H,@
    M_ \:H+" >N& F^D_7IZOHU_YC>V'\P-02P<(4'P0;$H!``#8`@``4$L#!!0`
    M" `(`-N!@BX````````````````2````<V%M<&QE,R]7;W)L9"YJ879A=9 ]
    M#X(P$(9W$O[#A4D7!B"!A#BY&F/BX%RAP<;2-OU $^-_MQ1$JI)TZMW[W',G
    M4'5%#09M-)<$T5BA5E"<EF$0!L*<*:F@HD@I.'%)ZT<8``A).J0Q'+4DK &&
    M6ES._RFWOX(+0Y$FG#F4K0XPAUFM'0A<%C80;7D_]0ZWOAJ50_&#L"U)FN5)
    MD>5%DA8[U_#TN*-,@_7>,J<!$FLC&>@+4?$DZB<[3FI08VZ^%+PA4]IZ+$#<
    MSG;X87+^J^!=94EDQOB^I:_D'>@7;=\+4$L'"(@-B!+/````WP$``%!+`0(4
    M`!0`" `(`/>!@BX``````@`````````)``0```````````````````!-151!
    M+4E.1B_^R@``4$L!`A0`% `(``@`]X&"+MH`:(9*````2@```!0`````````
    M````````/0```$U%5$$M24Y&+TU!3DE&15-4+DU&4$L!`A0`% `(``@`0'6"
    M+DY&LN@1`0``#P(```X`````````````````R0```'!R;W!E<G1I97,N='AT
    M4$L!`@H`"@``````[(&"+@````````````````@`````````````````%@(`
    M`'-A;7!L93,O4$L!`A0`% `(``@`VX&"+H9Q71=\`@``, D``!<`````````
    M````````/ (``'-A;7!L93,O8G5I;&0M=V5B<W,N>&UL4$L!`A0`% `(``@`
    MVX&"+F$3A>,H`P``30L``!$`````````````````_00``'-A;7!L93,O8G5I
    M;&0N>&UL4$L!`@H`"@``````VX&"+@````````````````\`````````````
    M````9 @``'-A;7!L93,O8VQI96YT+U!+`0(4`!0`" `(`-N!@BY5MM$EK@$`
    M`-\#```8`````````````````)$(``!S86UP;&4S+V-L:65N="]-86EN+FIA
    M=F%02P$"% `4``@`" #;@8(N4'P0;$H!``#8`@``'@````````````````"%
    M"@``<V%M<&QE,R](96QL;U=O<FQD4V5R=FEC92YJ879A4$L!`A0`% `(``@`
    MVX&"+H@-B!+/````WP$``!(`````````````````&PP``'-A;7!L93,O5V]R
    =;&0N:F%V85!+!08`````"@`*`(("```J#0``````
    `
    end

Maybe you are looking for

  • InDesign CS4- esport interactive to PDF not working

    HI friends After going thru the tutorials on this I created a test doc in ID to export. I added buttons, transition effects and hyperlink. none of it showed up in the PDF (and yes, I selected the interactive button upon export). The swf file only wor

  • How do i copy images from the web?

    How do I copy images on the web for use in a powerpoint presentation?

  • List of Queries/Workbooks in old version (3.5)

    Dear experts, I'd like to get a list of all queries and workbooks still beeing used in the old version (3.5). I'm looking for information like: ID, Name, Version, LastUsed, Creator, User ... Is there a way to enable the old frontend tools ( BeX, Quer

  • Cisco ASA ( Adaptiv Security Algorithm )?

    Hello, Im french so sorry for my english , i will do my best to explain my question. Im actually working on Cisco PIX 501 ( for school ). I have to do some test on it , search what is able to do and how to proove it... My question is about Cisco ASA

  • Migration path 10.6 to 10.10?

    What would be the right/possible migration (upgrade) path from Mac OS 10.6 (Snow Leopard) to 10.10 (Yosemite)? Thanks Andre Peternell Frankfurt Germany