How consume web site content?

Hello everybody!
I have a requirement that concern in do a HTTPS request to a Web site and read the response to populate some fields in a page. The problem is that the response will come in a big string separeted by comma, like a csv file.
For Exemple:
Request: https://consulta.algumacoisa.com/webservice/consultanova.php?&cpfcnpj=0123456789
Response: 0; 1;41;9999999;00009999999;MARCO RUAS;;RUA PEDRO ROLIM DE MOURA;20;;ALTO DA GLORIA;80030250;CURITIBA;PR; 4;
This action must be placed in a FieldChange event and i have no idea in how to do something like that. Any ideas?
We are using PeopleTools 8.51.14 here.
Thanks in advance!

Hello everybody!
I have a requirement that concern in do a HTTPS request to a Web site and read the response to populate some fields in a page. The problem is that the response will come in a big string separeted by comma, like a csv file.
For Exemple:
Request: https://consulta.algumacoisa.com/webservice/consultanova.php?&cpfcnpj=0123456789
Response: 0; 1;41;9999999;00009999999;MARCO RUAS;;RUA PEDRO ROLIM DE MOURA;20;;ALTO DA GLORIA;80030250;CURITIBA;PR; 4;
This action must be placed in a FieldChange event and i have no idea in how to do something like that. Any ideas?
We are using PeopleTools 8.51.14 here.
Thanks in advance!

Similar Messages

  • USB to VGA? or how view web sites greater than 800x600?

    My young children have a couple of hand-me-down iBook G3 clamshells. They're loaded with the newest version of OS X that they can handle (can't remember what that is off the top of my head - 10.3?) They're working great for how they're needed with one exception. Some modern web sites are configured to display a page that is larger than 800x600 AND are configured to disable the browser's scroll bars, so it's impossible to navigate to the parts of the web page that are not visible within the 800x600 resolution native to these laptops.
    My first thought was to override the web site and show the scroll bars, but I haven't been able to figure out how to do that. That may be the best way to approach my problem if anyone can tell me how to do that.
    My second approach was to look at USB-to-VGA adapters and attach an external monitor (I have an unused one collecting dust). But every such adapter I've looked at lists various versions of the Windows OS as a requirement. Are there any USB-to-VGA adapters out there that have been tested and proven to be compatible with Macs?

    You can try Opera Webbrowser (Minimum OSX 10.3)
    http://www.opera.com/download/index.dml?platform=mac
    Opera allows to set the global Zoom to 80% which looks like 1024x768
    Just an idea for VGA output: You will need a firewire Clamshell which allows you to hook the iBook to a TV with a special cable
    http://support.apple.com/kb/TA27234?viewlocale=en_US
    Buy a composite-to-vga converter. But i don't know if it will work and the result will be worth the money.

  • Firefox shows its own menus and web site content as black

    For no reason, as far as I am aware as I have not changed any other components / configuration. Firefox now shows all of the content of any web site, typically I use www.bbc.co.uk as a test site as black, although if I randomly click around bits of content are exposed in there true form / colour. I cannot use Firefox as I cannot see the menu's etc.
    I have uninstalled / reinstalled / moved to the latest version and started it in safe mode, cleared all of the caches, etc but it still remains black

    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Retrieve Web site content into iview without coding

    Hi ,
    We are currently using EP6 SP2 Patch 5 and we want to add an iview with dynamic content .
    This content will be part of a web site like news or jobs posting. We know that with EP5 that should be possible with iview catching but is it possible with EP6 .
    Does somebody knows something about it .
    Regards.
    Bertrand DESSERTENNE.

    Hi Bertrand,
    the feature is available from EP6 SP4 on.
    See "It's baaaaaack" - The Feature Formerly Known As iViewCatcher Makes a Most Welcome Return in EP 6.0 SP Stack 04
    Hope it helps
    Detlev

  • How make web site in dreamweaver

    hello dear,
    i am new in site making, so i wanna know how u make site in
    dreamweaver.
    tell me the site from where i can get all info regarding
    this...
    nancy

    http://www.adobe.com
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "nancy234" <[email protected]> wrote in
    message
    news:fp5jbn$e9b$[email protected]..
    >
    > hello dear,
    >
    > i am new in site making, so i wanna know how u make site
    in dreamweaver.
    >
    > tell me the site from where i can get all info regarding
    this...
    >
    > nancy

  • Error consuming Web service - content type text/xml;charset=utf-8 of the response message does not match the content type of the binding

    Hi all,
    We are trying to interact with Documentum server through DFS exposed WCF which communicates through port 9443 and we are provided with documentum issued Public Key certificates. We have successfully imported the certificates in client machine and configured
    the bindings as below in our .Net web application config file.
    <system.serviceModel>
    <bindings>
    <wsHttpBinding>       
    <binding
    name="ObjectServicePortBinding1">
    <security
    mode="Transport">
    <transport
    clientCredentialType="None"
    proxyCredentialType="None"
    realm=""
    />
    <message
    clientCredentialType="Certificate"
    algorithmSuite="Default"
    />
    </security>
    </binding>
    <binding
    name="QueryServicePortBinding">
    <security
    mode="Transport">
    <transport
    clientCredentialType="None"
    proxyCredentialType="None"
    realm=""
    />
    <message
    clientCredentialType="Certificate"
    algorithmSuite="Default"
    />
    </security>
    </binding>
    </wsHttpBinding>
    </bindings>
    Also, we set the message encoding as MTOM and the wcf client object initialization code snippet is as below,
    ObjectServicePortClient
    serviceClient = new
    ObjectServicePortClient(new
    WSHttpBinding("ObjectServicePortBinding1"),
    new
    EndpointAddress(UriUtil.ObjectServiceUri));
    if (serviceClient.Endpoint.Binding
    is
    WSHttpBinding)
       WSHttpBinding
    wsBinding = serviceClient.Endpoint.Binding as
    WSHttpBinding;
    wsBinding.MessageEncoding =
    "MTOM".Equals(transferMode) ?
    WSMessageEncoding.Mtom :
    WSMessageEncoding.Text;
    serviceClient.Endpoint.Behaviors.Add(new
    ServiceContextBehavior(Config.RepositoryName,
    Config.DocumentumUserName,
    Config.DocumentumPassword));
    When we execute the above code, we are getting error message as below,
    Exception: The content type text/xml;charset=utf-8 of the response message does not match the content type of the binding (multipart/related; type="application/xop+xml"). If using a custom encoder, be sure that the IsContentTypeSupported
    method is implemented properly. The first 407 bytes of the response were: '<?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><S:Fault xmlns:ns4="http://www.w3.org/2003/05/soap-envelope"><faultcode>S:VersionMismatch</faultcode><faultstring>Couldn't
    create SOAP message. Expecting Envelope in namespace http://schemas.xmlsoap.org/soap/envelope/, but got http://www.w3.org/2003/05/soap-envelope </faultstring></S:Fault></S:Body></S:Envelope>'
    Then, we changed the bindings as below
    <system.serviceModel>
    <bindings>
    <wsHttpBinding>       
    <binding
    name="ObjectServicePortBinding1">
    <security
    mode="Transport">
    <transport
    clientCredentialType="Certificate"
    proxyCredentialType="None"
    realm=""
    />
    <message
    clientCredentialType="Certificate"
    algorithmSuite="Default"
    />
    </security>
    </binding>
    <binding
    name="QueryServicePortBinding">
    <security
    mode="Transport">
    <transport
    clientCredentialType="
    Certificate"
    proxyCredentialType="None"
    realm=""
    />
    <message
    clientCredentialType="Certificate"
    algorithmSuite="Default"
    />
    </security>
    </binding>
    </wsHttpBinding>
    </bindings>
    We are getting another error message,
    Exception: The client certificate is not provided. Specify a client certificate in ClientCredentials.
    Any pointers on resolving this issue would be highly helpful.
    Thanks

    Hi Dhanasegaran,
      As per your case, the corresponding details which may guide you to resolve this issue:
    1. First of all, you can try to call the wcf service directly from the browser & check where it will point out the correct location.
    2. In config file ,Set IncludeExceptionDetailInFaults to true to enable exception information to flow to clients for debugging purposes .
    Set this to true only during development to troubleshoot a service like below :
    <serviceBehaviors>
      <behavior name="metadataAndDebugEnabled">
        <serviceDebug
          includeExceptionDetailInFaults="true"   
    />
        <serviceMetadata
          httpGetEnabled="true"
          httpGetUrl=""   
    />
      </behavior>
    </serviceBehaviors>
    3. I suggest you to change that <security mode ="TransportWithMessageCredential"> instead of <security mode ="Transport">
     for more information, refer the following link :
    https://msdn.microsoft.com/en-us/library/aa354508(v=vs.110).aspx

  • How do web site created with After Effect differ from that created with dream weaver or Flash?

    As I have some experiance not much in After Effect..I have created my website in After Effect., I  have no  knowledge of Dream weaver or Flash..  My web pages take too much time to open., due to it loads SHOCK WAVE and it take much longer time., were as I see many a website created in other software opens prety fast. As such I want to know whether creating website in After effect is right or not.,   and how to speed up

    You do not create websites in AE, you can create at best animations and that is what you ahev done - produce a fat SWF file. You are really using the wrong tool and should better spend your time on learning HTML and CSS proper and do your website in Dreamweaver or otehr web design tools. And no, Flash is not a website design tool, either.
    Mylenium

  • Web site content management

    Hi
    Does anyone know of a CMS system that would allow client
    updates with
    specific access
    thanks
    Ian
    [email protected]
    http://www.edwards-micros.co.uk

    Yes, FatWire Spark product is perfect for your needs.
    And it comes with 5 free licenses with Sun ONE portal 6.0
    Check http://www.fatwire.com/products/sunspark.html
    for more details.
    Cheers,
    Alex :-)

  • How can I copy, paste, and email a web site page?

    Hello.  Basic Safari question: How can I Copy, then paste, web site content from Safari, into a document (ie. Powerpoint Presentation)?  I am interested in copying / pasting so that the content in the document looks (formatted) identical to the content on the web site?
    Thanks!
    KD
    ps.  R.I.P. S.J.

    This one kills me as well - editing phone numbers in the keypad/dialer is a pretty basic function, I could never fathom why it didn't exist.  We need to be able to place a cursor, and copy/paste part-numbers!  I'm constantly trying to paste just an area code, or an extension, or insert the country code, and I should not need to create a new number in the contact directory to do it!
    Currently I do the copy/paste editing in Notes, and then paste the corrected number into the dialer - pointless and inefficient, and contrary to the Apple philosophy of making the user experience easy and seamless...

  • When I click on "RESORE PREVIOUS SESSION" it always brings up the same first web site I opened on this computer.

    "Restore previous session" always opens the first web site I opened on this new computer. It never changes no matter how many web sites I have opened over the past month.
    It also opens the site which normally requires my user name and password to open.

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the sessionstore.js [2] file and possible sessionstore-##.js [3] files with a number and sessionstore.bak in the Firefox Profile Folder.
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    *[1] http://kb.mozillazine.org/Session_Restore
    *[2] http://kb.mozillazine.org/sessionstore.js
    *[3] http://kb.mozillazine.org/Multiple_profile_files_created

  • SES and Web Sites

    Hi there,
    Is it possible for SES to crawl and index web site content ootb or do we have to write a custom adaptor to enable this type of functionality ? Our use case is that we are proposing WebCenter Spaces as our front-end application which will have SES enabled to allow us to natively crawl all the WebCenter assets like blog, wikis, users etc. But we also have an additional requirement that the customer also wants to search legacy web sites.
    I could not see in the list of SES adaptors any that would facilitate crawling of a web site which is what we need to do.
    If anyone has any information on this I would be grateful if you could share it with me.
    Regards,
    Sanjay

    Yes, of course. This is core functionality rather than a connector, hence why you wouldn't see it on a list of connectors.

  • Remove Site Contents link

    Hi..
    How to remove Site Contents link only for read users.
    Ravindranath

    Hi Ravindranath,
    You will have to update the master page and update the permissionString to hide it for users who just have read permissions
     <SharePoint:MenuItemTemplate runat="server" id="MenuItem_ViewAllSiteContents"
             Text="<%$Resources:wss,quiklnch_allcontent_15%>"
             Description="<%$Resources:wss,siteactions_allcontentdescription%>"
             ImageUrl="/_layouts/15/images/allcontent32.png?rev=38"
             MenuGroupId="200"
             Sequence="240"
             UseShortId="true"
             ClientOnClickNavigateUrl="~siteLayouts/viewlsts.aspx"
             PermissionsString="ViewFormPages"
             PermissionMode="Any" />
    Regards, Partha Avepoint Please mark the response as "Answer" if it answers your response If this response takes you closer to your solution mark it as a "helpful post"

  • Getting site contents twice in treeview-sharepoint2013

    While selecting tree view getting “site content” and “site contents” in left side navigation. How to remove site contents from treeview.if I hide tag in master page it will effect to quick lunch also. Please advise how to remove or hide "site contents"
    in treeview-sharepoint2013

    Hi,
    According to your description, there are two “Site Contents” in the tree view.
    What if disable the tree and then enable again?
    As I can’t reproduce your issue in my environment, a suggestion is that you can use CSS code to hide one of them if there is a “Site Contents” always stays in a fixed position
    in the tree view.
    About how to use CSS selectors to find the specific element on a page:
    http://www.w3schools.com/cssref/css_selectors.asp
    http://css.maxdesign.com.au/selectutorial/
    Feel free to reply if there are still any questions.
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • How to rename content type on web site level and underneath all the document libraries using powershell?

    Hello
    I wantto rename content type on web site level and underneath all the document libraries using powershell, please let me know how can do this?
    I saw this url
    http://suryapulipati.blogspot.in/2011/08/rename-content-type-name-in-list-using.html, but I want to change everything from Web Site, subsite and underneath document libraries. Because if you try to change on any on document library, it will be applicable
    for that document library, if you change on web level then underneath document libraries content type names not updated automatically.
    Please advise
    Avi

    Not sure with powershell.
    I could help you out with Server Side or Web Services though.
    Brandon James SharePoint Developer/Administrator

  • How to Synchronize 2010 content database of my site (Web Application port 8080) to Sharepoint 2013 content database

    Hello,
    I am migrating Sharepoint 2010 my site content database to SharePoint 2013. First I have to create My site web application  in SharePoint 2013. How can I synchronize 2010 content database with 2013.

    Hi ghsajith,
    According to your description, my understanding is that you want to upgrade your SharePoint 2010 to SharePoint 2013.
    There is an article for your reference:
    http://blogs.msdn.com/b/alimaz/archive/2012/07/17/upgrading-from-sharepoint-2010-to-sharepoint-2013-step-by-step.aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for

  • Where is Open Sales Order Value coming in Credit Master sheet?

    We have a customer whose credit exposure is below credit limit. I'm in Customer Credit Management overview screen and I ran Credit Master sheet report (for this CMR) under Environment -> Reporting -> Credit Master Sheet. I see value in Receivables an

  • Where I can get OC4J as a component of Oracle Application Server

    Hi all ! I installed Oracle Application Server 10g release 2 (10.1.2) and updated Oracle AS Portal to 10.1.4. I want download the Oracle Container for J2EE (OC4J) 10g release 3 (10.1.3.4) as a component of Oracle Application Server (not a Standalone

  • Delition flag in maintenance plan

    All, Please clear me  what is the diffrence between delition & deactive & active in maintenance plan. Raghav

  • Time Machine stopped backup of FileVault account at logout

    Suddenly TM stopped backup of my FileVault account. Usually the backup was initiated after logout, but for a couple of weeks nothing like that has happened. It could be a little bit correlated to the time of upgrade to 10.5.6, which I did... Has anyb

  • Adobe Reader for SPARC

    So, Adobe Reader 8.1.7 for SPARC development is dead.  There will be no new updates to this code. Is Reader 8.1.7 vulnerable to the latest issue and not updated because of end of life?  Or am I lucky, and I am okay until the next vulnerability is fou