DII unexpected encoding style with SharePoint Web Service

I am trying to call a dynamic sharepoint web service in Java using DII (Dynamic Invocation Interface)
but I kept getting error:unexpected encoding style: after the invoke expected=http://schemas.xmlsoap.org/soap/encoding/, actual=
I am trying to call web service - GetWebCollection()
String endPoint="http://%SPSERVER/_vti_bin/Webs.asmx";
String nameSpaceUri = "xmlns:xsi";
String serviceName = "Webs";
String porttype="WebsSoap";
String NS_XSD = "http://www.w3.org/2001/XMLSchema";
ServiceFactory factory =
ServiceFactory.newInstance();
Service service =factory.createService(new QName(serviceName));
QName qport = new QName(porttype);
hpsharepoint.Webs webs = new hpsharepoint.Webs_Impl();
Call call = (Call) webs.createCall(qport);
call.setProperty(call.USERNAME_PROPERTY,kuser);
call.setProperty(call.PASSWORD_PROPERTY,password);
call.setProperty(Call.ENCODINGSTYLE_URI_PROPERTY, "http://schemas.xmlsoap.org/soap/encoding/");
call.setProperty(Call.SOAPACTION_USE_PROPERTY,
new Boolean(true));
call.setProperty(Call.SOAPACTION_URI_PROPERTY,"http://schemas.microsoft.com/sharepoint/soap/GetWebCollection");
call.setTargetEndpointAddress(endPoint);
call.setOperationName(
new QName(nameSpaceUri,"GetWebCollection"));
String[] params = {};
NodeList list=(NodeList)call.invoke(params);
==========================
This is the soap 1.1
==========================
POST /_vti_bin/Webs.asmx HTTP/1.1 Host: <server> Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://schemas.microsoft.com/sharepoint/soap/GetWebCollection" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetWebCollection xmlns="http://schemas.microsoft.com/sharepoint/soap/" /> </soap:Body> </soap:Envelope>

Jose,
When you work with Web Services, the common development flow is as follow:
1) develop your service endpoint. You can start from JAVA code or PL/SQL package (bottom-up) or from a WSDL (top-down). In your case, you need to start from the Store Procedures.
2) deploy your service endpoint. As the result of the deployment step, you will have a WSDL available on your application server, that advertise the service interface.
3) generate the static client proxy from the WSDL (service contract).
4) invoke the service using the proxy from step 3 or use dynamic invocation APIs to make direct call, without to use a static proxy.
Bypassing step 3) usually requires a dipper understanding of SOAP linguana, so it's not the easiest way to get started.
Based on the statement you made, it looks like you are starting from step 3)
From the error message, it seams that you are trying to invoke a Web service that was deployed using 'literal' encoding (either document/literal or RPC/literal) with a client generated for RPC-encoded message format. In the JDeveloper Wizard, you have an option to change the message format to RPC/Encoded.
Hope this helps,
eric

Similar Messages

  • How to pass credentials/saml token access sharepoint web service ex:lists.asmx when sharepoint has single sign on with claims based authentication

    How to pass credentials/saml token exchange to the sharepoint web service ex:lists.asmx when sharepoint has single sign on with claims based authentication 
    Identity provider here is Oracle identity provider 
    harika kakkireni

    Hi,
    The following materials for your reference:
    Consuming List.asmx on a claims based sharepoint site
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/f965c1ee-4017-4066-ad0f-a4f56cd0e8da/consuming-listasmx-on-a-claims-based-sharepoint-site?forum=sharepointcustomizationprevious
    Sharepoint Claims based authentication and Single Sign on
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/2dfc1fdc-abc0-4fad-a414-302f52c1178b/sharepoint-claims-based-authentication-and-single-sign-on?forum=sharepointadminprevious
    Sharepoint Claim Based Authentication Web Service issuehttp://social.msdn.microsoft.com/Forums/office/en-US/dd4cc581-863c-439f-938f-948809dd18db/sharepoint-claim-based-authentication-web-service-issue?forum=sharepointgeneralprevious
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Anyone Tried Using Sharepoint Web Services with BPEL?

    I've tried using SharePoint Web Services with BPEL, I'm able set it to use the sharepoint web service as a partner link in orchestration, but when I try to compile the bpel file, I get a "error: null" on the compiler log for the *.bpel file.
    Anyone have any success with using Sharepoint Web Services with BPEL?

    Hi,
    Please refer the below article and browse code.
    http://code.msdn.microsoft.com/Remote-Authentication-in-b7b6f43c
    Thanks,
    Srikanth

  • Re: SOAP Fault: unexpected encoding style

    Hi Oliver,
    Have you tried using the Test XML tab in the test harness to test the
    external web service. By using that, you can check the SOAP request sent to
    the service.
    Could you please send us the WSDL file and a sample SOAP request sent to the
    external web service. Will it be possible for us to connect to the service
    from here?
    I look forward to your response.
    Regards,
    Anurag
    Workshop Support
    "Oliver Strassberger" <[email protected]> wrote in
    message news:3d7e0abf$[email protected]..
    >
    Hello,
    I added a service control in my project from the wsdl file of a webservice. If
    try to invoke this external web service, I get a soap response with thefollowing
    fault message:
    Internal Server Error (unexpected encoding style:expected=http://schemas.xmlsoap.org/soap/encoding/,
    actual=)
    But the soap header of the request contains the following lines:
    <SOAP-ENV:Envelopexmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    The external service runs in Tomcat 4 Servlet Container from SunMicrosystems
    WSDP.
    What could be wrong? Is it possible to edit the request header withWorkshop?

    I'm having the same problem and was wondering if/how it was resolved. I'm using
    BEA 8.1 and Apache tomcat 4.1
    "Oliver Strassberger" <[email protected]> wrote:
    >
    >
    >
    Hello,
    the "external" Web Service also runs on my local machine, but on a apache
    tomcat
    server. It is not possible for you to connect to it.
    I have attached a .zip file, containing the SOAP request/response message
    from
    two tests and the wsdl of the externel web service.
    First, I invoked the externel service from a client running with apache
    axis -
    it works.
    Then I tried to invoke the same service from Weblogic Workshop, without
    success.
    With best regards,
    Oliver

  • Unexpected encoding style

    Hi all. I'm new to Oracle and Web Services in general, so do pardon me in advance.
    I followed the example here: http://www.oracle.com/technology/obe/obe1013jdev/ws/wsandascontrol.htm and deployed the web service to the external OC4J server.
    Subsequently, I tried calling the web service using the OmniPortlet in OracleAS but it gives this error:
    Call to Web Service Failed. [env:Client : caught exception while handling request: unexpected encoding style: expected=, actual=http://xml.apache.org/xml-soap/literalxml]
    Any help is appreciated.

    Jose,
    When you work with Web Services, the common development flow is as follow:
    1) develop your service endpoint. You can start from JAVA code or PL/SQL package (bottom-up) or from a WSDL (top-down). In your case, you need to start from the Store Procedures.
    2) deploy your service endpoint. As the result of the deployment step, you will have a WSDL available on your application server, that advertise the service interface.
    3) generate the static client proxy from the WSDL (service contract).
    4) invoke the service using the proxy from step 3 or use dynamic invocation APIs to make direct call, without to use a static proxy.
    Bypassing step 3) usually requires a dipper understanding of SOAP linguana, so it's not the easiest way to get started.
    Based on the statement you made, it looks like you are starting from step 3)
    From the error message, it seams that you are trying to invoke a Web service that was deployed using 'literal' encoding (either document/literal or RPC/literal) with a client generated for RPC-encoded message format. In the JDeveloper Wizard, you have an option to change the message format to RPC/Encoded.
    Hope this helps,
    eric

  • SOAP Fault: unexpected encoding style

    Hello,
    I added a service control in my project from the wsdl file of a web service. If
    try to invoke this external web service, I get a soap response with the following
    fault message:
    Internal Server Error (unexpected encoding style: expected=http://schemas.xmlsoap.org/soap/encoding/,
    actual=)
    But the soap header of the request contains the following lines:
    <SOAP-ENV:Envelope xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    The external service runs in Tomcat 4 Servlet Container from Sun Microsystems
    WSDP.
    What could be wrong? Is it possible to edit the request header with Workshop?

    I'm having the same problem and was wondering if/how it was resolved. I'm using
    BEA 8.1 and Apache tomcat 4.1
    "Oliver Strassberger" <[email protected]> wrote:
    >
    >
    >
    Hello,
    the "external" Web Service also runs on my local machine, but on a apache
    tomcat
    server. It is not possible for you to connect to it.
    I have attached a .zip file, containing the SOAP request/response message
    from
    two tests and the wsdl of the externel web service.
    First, I invoked the externel service from a client running with apache
    axis -
    it works.
    Then I tried to invoke the same service from Weblogic Workshop, without
    success.
    With best regards,
    Oliver

  • How to execute XML batch commands using SharePoint Web services or Client Object Model

    Hi,
    I have a requirement to execute some batch commands to update SharePoint View Style, how can i do it using SharePoint webservices or SharePoint Client Object model.
          I need to execute the following Batch command over a particular web.
    <Method ID="UpdateView">
      <SetVar Name="Cmd">UpdateView</SetVar>
      <SetList Scope="Request">{GUID of List}</SetList>
      <SetVar Name="View">{GUID of View}</SetVar>  
      <SetVar Name="ViewStyle">6</SetVar>
      <SetVar Name="RowLimit">100</SetVar>
      <SetVar Name="Paged">TRUE</SetVar>
    </Method>

    Hi
    I tried it already... But UpdateView Method in the Views.asmx and Lists.asmx, both are not supporting for updating the style of the view (like Boxed, Newsletter...).
    If you have any code sample which will do this job with any of the SharePoint web services, please share it..

  • Visual Studio 2012: Can't access Sharepoint Web Services because of Discovery Credentials Prompt

     
    Hi.
    I've exactly the same problem that is descripted
    here, so I'll add its description here.
    My SharePoint is 2010
    I am trying to access the web services that are located in this url:
    http://<part_of_th_url_omitted>/_vti_bin/Lists.asmx. I have no problem accessing
    this URL using my broswer, that is, when I type the URL and my browser's address bar and press enter, I can see the list of the services that are available. I encounter no problem by accessing this site through my browser at all.
    However, when I try to access the services from that URL (http://<part_of_the_url_omitted>/_vti_bin/Lists.asmx),
    a Discovery Credential Dialog box prompts me for my username and password. SO what I do is I enter my username and password that I used to access the sharepoint using my browser, the problem is, the dialog box doesn't seem to accept the username and password
    that I enter as the dialog box is keep on appearing.
    Below are the detailed steps on how I go about in adding the Web Services.
    1. From the Solution Explorer, I right click on the "Service References" folder.
    2. From the context menu that appears, I Click on "Add Service Reference...". The "Add Service Reference" Dialog box will appear.
    3. From the "Add Service Reference" dialog box, I click on the "Advanced,,," button which can be seen at the bottom-left of the dialog
    box. The "Service Reference Settings" Dialog box will appear.
    4. From the "Service Reference Settings" dialog box, I click on the "Add Web Reference..." dialog box. The "Add Web Reference"
    Dialog box will appear. This is the dialog box where I can type the URL of the service that I want to access. So I type "http://<part_of_the_url_omitted>/_vti_bin/Lists.asmx".
    AFter typing that, I click on the Go button (which is the green arrow button at the right of the address bar of this dialog box).
    5. After doing that, a prompt dialog box will appear which has the title "Windows Security" and it is aking for my username and password. SO
    what I do is I enter the Username and the Password that I use in accessing the sharepoint site (http://<part_of_the_url_omitted>/_vti_bin/Lists.asmx)
    6. The prompt seems to accept the Username and Password, but after that, a new dialog box appeared with the title "Discovery Credential" and
    it says "The Service 'http://<part_of_the_url_omitted>/_vti_bin/Lists.asmx' requires a username and
    password". SO what I do is I enter again the un and pw that I use to access the sharepoint site, the one that I used inm the previous dialog box.
    7 After entering the username and the password and clicking the OK button. The dialog box reappears still asking for a username and a password, but this
    time, it shows a different message. It says "The Service 'http://<part_of_the_url_omitted>/_vti_bin/Lists.asmx/$metadata'
    requires a username and password". SO it really, what oonly changed is the URL, it has now the $metadata at the end. What do I do? I eneter the username and password again.
    8. After clicking Ok again, the dialog box reappears, now it says "The Service 'http://<part_of_the_url_omitted>/_layouts/1033/error.aspx'
    requires a username and password." Now it shows a very different username. Of ocurse, I still type in the username and password and click Ok.
    9. after doing that, the dialog box reappears again and it shows the same message as in step 6. So I do steps 6, 7 and 8 in a loop.
    10. When I finally get tired of entering the username and password, I click on cancel. The message box reappears again. So I click on cancel again. After
    doing that, I can then, surprisingly, see the list of the web services. However, not surprisingly, I still can't use it because the "Add Reference" button which I need to click in order to use the Web services is disabled. So I can only see the list
    of the services but I can't use it.

    Hi Gaston,
    I would suggest you the following thread, check whether it meet your scenario, it shows that if you have set IE options to remember the username and password, and you have enter wrong password before, this issue may happen:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/a7f466a5-0e4a-4f75-ad29-9591e2357e10/sharepoint-web-services-visual-studio
    Thanks,
    Qiao Wei
    TechNet Community Support

  • Calling SharePoint Web Services from PL/SQL

    We are trying to call SharePoint Web Services with UTL_DBWS or UTL_HTTP. We are able to call some test web services, but when it comes to using SharePoint services, we keep getting 401 errors..even when we use set_authorization.
    Has anyone been able to use UTL_DBWS or UTL_HTTP to call SharePoint web services? If so, can you point us in the right direction?
    Thanks

    AB,
    I didn't realize you cannot attach documents to your post. You will have to provide me with an email address that I can send the documents to. They are a little rough (ie not commented etc) but they do illustrate the point. The basic idea is to build up the payload of the soap envelope using pl/sql. Meaning as I loop through the cursor I use each record in the cursor to build an xml string. This string of xml becomes the payload of the soap message. This could also be done using xml functionality provided by the db meaning xmlelement, xmlforest etc. The issue I ran into was the size of the message. That is why I elected to build the xml message by string concatenation as I moved through the cursor.
    Ryan

  • Loading Sharepoint Web Services XML List into WPF DataGrid

     trying to populate my DataGrid with the returned list from a Sharepoint Web Services, all of the tutorials/guides I've found go about doing this with a XAML file.
    This is the code I'm using to pull the XML,
    private String GetListNode()
    webService.Lists siteClient = new webService.Lists();
    System.Net.NetworkCredential passCredentials = new System.Net.NetworkCredential("username", "password", "domain");
    siteClient.Credentials = passCredentials;
    XmlNode getNode = siteClient.GetListItems("Tasks", string.Empty, null, null, string.Empty, null, null);
    return getNode.OuterXml;
    This returns the pages XML, within this page I'd like to grab these Items,
    ows_ID, ows_Client, ows_AssignedTo, ows_LinkTitle, ows_Status, ows_Priority, ows_DueDate
    I'd like to make these items Columns for the DataGrid, then having the data populate. All help will be appreciated, thank you in advanced.
    This is not the full XML, this is a small piece,
    <listitems
    xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"
    xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
    xmlns:rs="urn:schemas-microsoft-com:rowset"
    xmlns:z="#RowsetSchema"
    xmlns="http://schemas.microsoft.com/sharepoint/soap/">
    <rs:data ItemCount="691">
    <z:row ows_Attachments="0" ows_ID="2108" ows_Task_x0020_Type="Issue" ows_Client="City University of New York" ows_Area="2.0 Updates" ows_AssignedTo="31;#Heidy Valdes" ows_LinkTitle="QSNY Portal v2.0" ows_Status="Testing" ows_Priority="1" ows_DueDate="2014-04-21 00:00:00" ows_Created="2014-01-15 16:51:38" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="2108;#{1A24305B-DD42-4552-92D6-476C8A2E4583}" ows_FSObjType="2108;#0" ows_Created_x0020_Date="2108;#2014-01-15 16:51:38" ows_Body="I think we can close this task." ows_FileLeafRef="2108;#2108_.000" ows_Group_x0020_Task="Portal" ows_FileRef="2108;#apps/mwels/Lists/Tasks/2108_.000" ows_Title="QSNY Portal v2.0" ows_Owner="Carlos M Valdes" ows_owshiddenversion="5" />
    <z:row ows_Attachments="0" ows_ID="2786" ows_Task_x0020_Type="Time Reporting" ows_Client="WELS Systems Foundation" ows_Area="Time Reporting" ows_AssignedTo="30;#Eric Bonneman" ows_LinkTitle="WELS University" ows_Status="Active" ows_Priority="On Going" ows_DueDate="2099-01-01 00:00:00" ows_Created="2014-08-04 11:13:21" ows_WELS_x0020_Version="N/A" ows_Client_x0020_Issue="0" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="2786;#{3640CD6F-BE02-41C2-B174-9EB36EDDA27C}" ows_FSObjType="2786;#0" ows_Created_x0020_Date="2786;#2014-08-04 11:13:21" ows_Body="&lt;div&gt;Task requested by Eric&lt;/div&gt;" ows_FileLeafRef="2786;#2786_.000" ows_Group_x0020_Task="WELS" ows_FileRef="2786;#apps/mwels/Lists/Tasks/2786_.000" ows_Title="WELS University" ows_Owner="Ana Sejeck" ows_owshiddenversion="1" />
    <z:row ows_Attachments="0" ows_ID="2792" ows_Task_x0020_Type="Time Reporting" ows_Client="CSC of Palm Beach County" ows_Area="Time Reporting" ows_AssignedTo="34;#Ana Sejeck" ows_LinkTitle="WELS Support for CSC of Palm Beach" ows_Status="Assigned" ows_Priority="On Going" ows_DueDate="2099-08-05 00:00:00" ows_Created="2014-08-05 14:42:01" ows_WELS_x0020_Version="N/A" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="2792;#{E8EB676C-D124-4D4F-890A-4AE8B4E2B135}" ows_FSObjType="2792;#0" ows_Created_x0020_Date="2792;#2014-08-05 14:42:01" ows_Body="&lt;div&gt;support task for PB&lt;/div&gt;" ows_FileLeafRef="2792;#2792_.000" ows_Group_x0020_Task="WELS" ows_FileRef="2792;#apps/mwels/Lists/Tasks/2792_.000" ows_Title="WELS Support for CSC of Palm Beach" ows_Owner="WELS Team" ows_owshiddenversion="1" />
    <z:row ows_Attachments="0" ows_ID="2937" ows_Task_x0020_Type="Time Reporting" ows_Client="Orange County" ows_Area="Time Reporting" ows_AssignedTo="34;#Ana Sejeck" ows_LinkTitle="Orange County WELS Support" ows_Status="Active" ows_Priority="On Going" ows_DueDate="2099-12-31 00:00:00" ows_Created="2014-09-10 16:55:58" ows_WELS_x0020_Version="N/A" ows_Client_x0020_Issue="0" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="2937;#{5788B8F0-BE12-40E1-BEDE-3A5D026CC973}" ows_FSObjType="2937;#0" ows_Created_x0020_Date="2937;#2014-09-10 16:55:58" ows_Body="updated title" ows_FileLeafRef="2937;#2937_.000" ows_Group_x0020_Task="WELS" ows_FileRef="2937;#apps/mwels/Lists/Tasks/2937_.000" ows_Title="Orange County WELS Support" ows_Owner="Muriel Wong" ows_owshiddenversion="2" />
    <z:row ows_Attachments="0" ows_ID="1385" ows_Task_x0020_Type="Support" ows_Client="WELS Systems Foundation" ows_Area="Training" ows_AssignedTo="35;#Bobbi Silber" ows_LinkTitle="Training" ows_Status="Active" ows_Priority="On Going" ows_DueDate="2099-12-31 00:00:00" ows_Created="2013-06-11 12:30:18" ows_WELS_x0020_Version="N/A" ows_Client_x0020_Issue="support" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="1385;#{7B0C9B91-BDE2-435E-8F57-F08AC44A4BCF}" ows_FSObjType="1385;#0" ows_Created_x0020_Date="1385;#2013-06-11 12:30:18" ows_Body="&lt;div&gt;updated priority to &amp;quot;on going&amp;quot;&lt;/div&gt;" ows_FileLeafRef="1385;#1385_.000" ows_Group_x0020_Task="WELS" ows_FileRef="1385;#apps/mwels/Lists/Tasks/1385_.000" ows_Title="Training" ows_Owner="Bobbi SIlber" ows_owshiddenversion="5" />
    <z:row ows_Attachments="0" ows_ID="1925" ows_Task_x0020_Type="Support" ows_Client="WELS Systems Foundation" ows_Area="Training" ows_AssignedTo="44;#Axel Camacho" ows_LinkTitle="Training " ows_Status="Active" ows_Priority="On Going" ows_DueDate="2099-12-31 00:00:00" ows_Created="2013-11-14 17:13:29" ows_WELS_x0020_Version="N/A" ows_Client_x0020_Issue="support" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="1925;#{37669445-7AA8-430F-AA17-925B778E435D}" ows_FSObjType="1925;#0" ows_Created_x0020_Date="1925;#2013-11-14 17:13:29" ows_Body="&lt;div&gt;updated priority&lt;/div&gt;" ows_FileLeafRef="1925;#1925_.000" ows_Group_x0020_Task="WELS" ows_FileRef="1925;#apps/mwels/Lists/Tasks/1925_.000" ows_Title="Training " ows_Owner="Carlos" ows_owshiddenversion="2" />
    <z:row ows_Attachments="1" ows_ID="1615" ows_Task_x0020_Type="Deliverable" ows_Client="Mississippi Department of Human Services" ows_Area="Wireframes" ows_AssignedTo="54;#Alejandro Mulet" ows_LinkTitle="Director Self Assessment Form " ows_Status="Assigned" ows_Priority="1" ows_DueDate="2013-08-31 00:00:00" ows_Created="2013-08-15 20:49:25" ows_WELS_x0020_Version="N/A" ows_Client_x0020_Issue="deliverable" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="1615;#{E377332A-6C82-4CF0-A156-D0C69C69084B}" ows_FSObjType="1615;#0" ows_Created_x0020_Date="1615;#2013-08-15 20:49:25" ows_Body="Alejandro incase you do not have this for the Mississippi portal." ows_FileLeafRef="1615;#1615_.000" ows_Group_x0020_Task="WELS" ows_FileRef="1615;#apps/mwels/Lists/Tasks/1615_.000" ows_Title="Director Self Assessment Form " ows_Owner="carlos valdes" ows_owshiddenversion="7" />
    <z:row ows_Attachments="0" ows_ID="1617" ows_Task_x0020_Type="Deliverable" ows_Client="Mississippi Department of Human Services" ows_Area="Wireframes" ows_AssignedTo="31;#Heidy Valdes" ows_LinkTitle="Practitioner Profile " ows_Status="Assigned" ows_Priority="1" ows_DueDate="2013-09-15 00:00:00" ows_Created="2013-08-15 20:52:29" ows_WELS_x0020_Version="2.9 (future development)" ows_Client_x0020_Issue="deliverable" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="1617;#{321B08EF-CE10-4EF6-B19E-C8E9DD16852E}" ows_FSObjType="1617;#0" ows_Created_x0020_Date="1617;#2013-08-15 20:52:29" ows_Body="What do we need for this? Is this still relevant?" ows_FileLeafRef="1617;#1617_.000" ows_Group_x0020_Task="WELS" ows_FileRef="1617;#apps/mwels/Lists/Tasks/1617_.000" ows_Title="Practitioner Profile " ows_Owner="carlos valdes" ows_owshiddenversion="4" />
    <z:row ows_Attachments="0" ows_ID="1619" ows_Task_x0020_Type="Deliverable" ows_Client="Mississippi Department of Human Services" ows_Area="Wireframes" ows_AssignedTo="31;#Heidy Valdes" ows_LinkTitle="Checklist verification checkboxes " ows_Status="Assigned" ows_Priority="1" ows_DueDate="2013-10-15 00:00:00" ows_Created="2013-08-15 20:56:25" ows_WELS_x0020_Version="2.9 (future development)" ows_Client_x0020_Issue="deliverable" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="1619;#{3C4C89E0-B2C5-4BAF-BBA0-8EB9735F53C9}" ows_FSObjType="1619;#0" ows_Created_x0020_Date="1619;#2013-08-15 20:56:25" ows_Body="&lt;div&gt;changing to wireframes&lt;/div&gt;" ows_FileLeafRef="1619;#1619_.000" ows_Group_x0020_Task="WELS" ows_FileRef="1619;#apps/mwels/Lists/Tasks/1619_.000" ows_Title="Checklist verification checkboxes " ows_Owner="carlos valdes" ows_owshiddenversion="4" />
    <z:row ows_Attachments="1" ows_ID="1710" ows_Task_x0020_Type="Deliverable" ows_Client="Bay Area" ows_Area="Wireframes" ows_AssignedTo="24;#Mike Cullen" ows_LinkTitle="Bay and Mississippi Wireframe for children w/ disabilties" ows_Status="Testing" ows_Priority="1" ows_DueDate="2013-10-04 00:00:00" ows_Created="2013-09-25 16:30:08" ows_WELS_x0020_Version="2.9.7" ows_Client_x0020_Issue="0" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="1710;#{FDDF3E62-501D-489E-A1FD-6265F3FB4757}" ows_FSObjType="1710;#0" ows_Created_x0020_Date="1710;#2013-09-25 16:30:08" ows_Body="Modified the wels project (RoomMaint user control and the RoomMaintSave webservice, also modified the db project to add a new table and the stored procedure to modified this table and get the data)." ows_FileLeafRef="1710;#1710_.000" ows_Group_x0020_Task="WELS" ows_FileRef="1710;#apps/mwels/Lists/Tasks/1710_.000" ows_Title="Bay and Mississippi Wireframe for children w/ disabilties" ows_Owner="Bobbi" ows_owshiddenversion="12" />
    <z:row ows_Attachments="1" ows_ID="2369" ows_Task_x0020_Type="Deliverable" ows_Client="WELS Systems Foundation" ows_Area="Wireframes" ows_AssignedTo="43;#James Minkler" ows_LinkTitle="New Dashboard Menus" ows_Status="Assigned" ows_Priority="10" ows_DueDate="2014-05-30 00:00:00" ows_Created="2014-03-21 14:27:52" ows_WELS_x0020_Version="2.9.7" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="2369;#{48D64DF5-9E9D-46F6-AF50-936761C87AA9}" ows_FSObjType="2369;#0" ows_Created_x0020_Date="2369;#2014-03-21 14:27:52" ows_Body="Updating priority." ows_FileLeafRef="2369;#2369_.000" ows_Group_x0020_Task="WELS" ows_FileRef="2369;#apps/mwels/Lists/Tasks/2369_.000" ows_Title="New Dashboard Menus" ows_Owner="Carlos" ows_owshiddenversion="3" />
    <z:row ows_Attachments="0" ows_ID="1307" ows_Task_x0020_Type="Deliverable" ows_Client="Miami Coalition of Partners" ows_Area="Wireframes" ows_AssignedTo="31;#Heidy Valdes" ows_LinkTitle="Design Wireframes for upgraded interface of Site tabs" ows_Status="Assigned" ows_Priority="2" ows_DueDate="2013-07-31 00:00:00" ows_Created="2013-05-03 15:49:30" ows_WELS_x0020_Version="3.0 (next release)" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="1307;#{49E1699C-25B5-4D67-B48F-BA2F13687CE3}" ows_FSObjType="1307;#0" ows_Created_x0020_Date="1307;#2013-05-03 15:49:30" ows_Body="&lt;div&gt;changing status&lt;/div&gt;" ows_FileLeafRef="1307;#1307_.000" ows_Group_x0020_Task="WELS" ows_FileRef="1307;#apps/mwels/Lists/Tasks/1307_.000" ows_Title="Design Wireframes for upgraded interface of Site tabs" ows_Owner="heidy" ows_owshiddenversion="5" />
    <z:row ows_Attachments="0" ows_ID="2136" ows_Task_x0020_Type="Deliverable" ows_Client="Miami Coalition of Partners" ows_Area="Wireframes" ows_AssignedTo="31;#Heidy Valdes" ows_LinkTitle="Document Viewer" ows_Status="Assigned" ows_Priority="2" ows_DueDate="2014-03-28 00:00:00" ows_Created="2014-01-23 13:29:36" ows_WELS_x0020_Version="2.9 (future development)" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="2136;#{DCE4F91B-C794-457B-BA97-F1874054D55D}" ows_FSObjType="2136;#0" ows_Created_x0020_Date="2136;#2014-01-23 13:29:36" ows_Body="&lt;div&gt;Create wireframes for a document viewer that is used in conjunction with the document library. This viewer would be used with pdf, docs, or image files&lt;/div&gt;" ows_FileLeafRef="2136;#2136_.000" ows_Group_x0020_Task="WELS" ows_FileRef="2136;#apps/mwels/Lists/Tasks/2136_.000" ows_Title="Document Viewer" ows_Owner="heidy" ows_owshiddenversion="1" />
    <z:row ows_Attachments="0" ows_ID="2699" ows_Task_x0020_Type="Deliverable" ows_Client="New Mexico FOCUS" ows_Area="Wireframes" ows_AssignedTo="31;#Heidy Valdes" ows_LinkTitle="Admin Portal Wireframes" ows_Status="On Hold" ows_Priority="2" ows_DueDate="2014-07-31 00:00:00" ows_Created="2014-07-14 10:38:02" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="2699;#{C43EBA38-1517-4026-AF12-33B56530EAF9}" ows_FSObjType="2699;#0" ows_Created_x0020_Date="2699;#2014-07-14 10:38:02" ows_Body="&lt;div&gt;I was told to put this on hold by Carlos&lt;/div&gt;" ows_FileLeafRef="2699;#2699_.000" ows_Group_x0020_Task="Portal" ows_FileRef="2699;#apps/mwels/Lists/Tasks/2699_.000" ows_Title="Admin Portal Wireframes" ows_Owner="James Minkler" ows_owshiddenversion="2" />
    <z:row ows_Attachments="1" ows_ID="1462" ows_Task_x0020_Type="Deliverable" ows_Client="City University of New York" ows_Area="Wireframes" ows_AssignedTo="54;#Alejandro Mulet" ows_LinkTitle="Funding Tab Request " ows_Status="Assigned" ows_Priority="5" ows_DueDate="2013-07-31 00:00:00" ows_Created="2013-07-17 16:08:13" ows_Client_x0020_Issue="deliverable" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="1462;#{DFD3D4D3-C37C-4C8A-9074-8DA8D0B149C9}" ows_FSObjType="1462;#0" ows_Created_x0020_Date="1462;#2013-07-17 16:08:13" ows_Body="Make the purpose dropdown a multi-selection, if too many items are selected us a tooltip to show the full list on the table." ows_FileLeafRef="1462;#1462_.000" ows_Group_x0020_Task="WELS" ows_FileRef="1462;#apps/mwels/Lists/Tasks/1462_.000" ows_Title="Funding Tab Request " ows_Owner="ariel davis" ows_owshiddenversion="13" />
    <z:row ows_Attachments="1" ows_ID="1955" ows_Task_x0020_Type="Issue" ows_Client="City University of New York" ows_Area="Wireframes" ows_AssignedTo="53;#Julio Garcia" ows_LinkTitle="Icon Set: New York" ows_Status="Active" ows_Priority="8" ows_DueDate="2014-01-03 00:00:00" ows_Created="2013-12-02 14:11:54" ows_WELS_x0020_Version="2.9.7" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="1955;#{0EE49957-9903-4E67-AC9A-C305D9A8972F}" ows_FSObjType="1955;#0" ows_Created_x0020_Date="1955;#2013-12-02 14:11:54" ows_Body="updated status field" ows_FileLeafRef="1955;#1955_.000" ows_Group_x0020_Task="WELS" ows_FileRef="1955;#apps/mwels/Lists/Tasks/1955_.000" ows_Title="Icon Set: New York" ows_Owner="heidy valdes" ows_owshiddenversion="6" />
    <z:row ows_Attachments="1" ows_ID="2500" ows_Task_x0020_Type="Issue" ows_Client="Miami Coalition of Partners" ows_Area="Wireframes" ows_AssignedTo="31;#Heidy Valdes" ows_LinkTitle="update the site tab’s re-design wireframes" ows_Status="Assigned" ows_Priority="Not Prioritized" ows_DueDate="2014-05-20 00:00:00" ows_Created="2014-05-06 11:27:45" ows_WELS_x0020_Version="2.9 (future development)" ows_Client_x0020_Issue="Deliverable" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="2500;#{1D043527-A1A2-438A-846F-29FFC844D444}" ows_FSObjType="2500;#0" ows_Created_x0020_Date="2500;#2014-05-06 11:27:45" ows_Body=" Heidy will update the site tab’s re-design wireframes to include this new field" ows_FileLeafRef="2500;#2500_.000" ows_Group_x0020_Task="WELS" ows_FileRef="2500;#apps/mwels/Lists/Tasks/2500_.000" ows_Title="update the site tab’s re-design wireframes" ows_Owner="Lisa Pittman" ows_owshiddenversion="1" />
    <z:row ows_Attachments="0" ows_ID="3343" ows_Task_x0020_Type="Issue" ows_Client="New Mexico FOCUS" ows_Area="Wireframes" ows_AssignedTo="53;#Julio Garcia" ows_LinkTitle="On Start Now Screen: Update the text" ows_Status="Assigned" ows_Priority="Not Prioritized" ows_DueDate="2014-12-31 00:00:00" ows_Created="2014-12-08 21:00:05" ows_WELS_x0020_Version="N/A" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="3343;#{BAC06875-8B2E-4D86-BAAE-A76C8F4EA650}" ows_FSObjType="3343;#0" ows_Created_x0020_Date="3343;#2014-12-08 21:00:05" ows_Body="Update the 2nd sentence to say, &amp;quot;If you would like to begin entering information, click the Start Now button.&amp;quot; " ows_FileLeafRef="3343;#3343_.000" ows_Group_x0020_Task="Portal" ows_FileRef="3343;#apps/mwels/Lists/Tasks/3343_.000" ows_Title="On Start Now Screen: Update the text" ows_Owner="Jame" ows_owshiddenversion="1" />
    <z:row ows_Attachments="1" ows_ID="1078" ows_Task_x0020_Type="Support" ows_Client="WELS Systems Foundation" ows_Area="Wireframes" ows_AssignedTo="31;#Heidy Valdes" ows_LinkTitle="WELS User Standard Wireframes" ows_Status="Active" ows_Priority="On Going" ows_DueDate="2099-12-31 00:00:00" ows_Created="2013-01-29 09:43:09" ows_WELS_x0020_Version="N/A" ows_Client_x0020_Issue="support" ows__ModerationStatus="0" ows__Level="1" ows_UniqueId="1078;#{B9391C51-0D82-4EC8-BA79-74C0AC2D39EB}" ows_FSObjType="1078;#0" ows_Created_x0020_Date="1078;#2013-01-29 09:43:09" ows_Body="&lt;div&gt;updated client issue field&lt;/div&gt;" ows_FileLeafRef="1078;#1078_.000" ows_Group_x0020_Task="WELS" ows_FileRef="1078;#apps/mwels/Lists/Tasks/1078_.000" ows_Title="WELS User Standard Wireframes" ows_Owner="Heidy Valdes" ows_owshiddenversion="8" />
    </rs:data>

    The XML is in a friendly format to read into a DataSet, which can then be bound to your data grid control.
    You will need to clean up some of the data. Data from dropdowns, people pickers, etc. will have an "id" prefix. (31;#Heidy Valdes) You could cleanup the XML first, clean the data in the column of the data table or write an event handler on
    the load event of the grid.
    Load the XML to the grid something like:
    XmlTextReader reader = new XmlTextReader(yourXMLnode.OuterXml, XmlNodeType.Element, null);
    DataSet ds = new DataSet();
    ds.ReadXml(reader);
    yourGrid.DataSource = ds.Tables[1];
    Note: ds.Tables[0] contains the record count.
    Mike Smith TechTrainingNotes.blogspot.com
    Books:
    SharePoint 2007 2010 Customization for the Site Owner,
    SharePoint 2010 Security for the Site Owner

  • Problem with RESTful web service

    I am running into a problem with Flex Web Services (REST) in trying to get the proper format returned. I can see that the HTTP header is set to
    Accept: */*;
    rather than
    Accept: application/xml
    when sending the request. The web service was generated via the web services HTTP data services wizard. I edited it to set the resultFormat to xml
        // Constructor
        public function _Super_UsersService()
            // initialize service control
            _serviceControl = new mx.rpc.http.HTTPMultiService();
             var operations:Array = new Array();
             var operation:mx.rpc.http.Operation;
             var argsArray:Array;
             operation = new mx.rpc.http.Operation(null, "getUsers");
             operation.url = "http://localhost:8888/users";
             operation.contentType = "";
             operation.method = "GET";
             operation.resultFormat = "xml";
             //operation.serializationFilter = serializer0;
             operation.properties = new Object();
             operation.properties["xPath"] = "/";
             operation.resultType = valueObjects.Users;
             operations.push(operation);
             _serviceControl.operationList = operations; 
             model_internal::initialize();
    How does one configure the accept header?

    Hi,
    I have posted a simple application with the RESTful reference:
    http://apex.oracle.com/pls/apex/f?p=13758
    I can give you full privileges on this so you can look at the WEB service reference. Shall I send to you separately for login user?
    It is using the RESTful service: http://apex.oracle.com/pls/apex/nd_pat_miller/demo/employee/{deptno}
    This RESTful service tests fine when I test from within the RESTful web service module of the Workspace.
    I based this on the Video demo tutorial for RESTful web service that Oracle published for 4.2 release. The video seemed to exclude the {deptno} in the URL but when I try that, it doesn't work either.
    This is the error I am getting when I run this on my Apex environment: (it, of course, will not run the web service in the apex.oracle.com environment)
    class="statusMessage">Bad Request</span>                                         
    </h3>                                         
    </div>                                         
    </div>                                         
    <div id="xWhiteContentContainer" class="xContentWide">                                         
    <div class="xWhiteContent">                                         
    <div class="errorPage">                                         
    <p>                                         
    <ul class="reasons"><li class="badRequestReason"><span class="target" style="display:none;">uri</span><span class="reason">Request path contains unbound parameters: deptno</span></li>                                    
    </ul>Thanks,
    Pat
    Edited by: patfmnd on May 8, 2013 3:33 AM

  • How to consume Sharepoint web services in SMP 2.3?

    Hi,
    I want to create jQuery Mobile application in which i want to call Sharepoint (SOAP) web services like (getListCollection, getListItems etc) through
    SMP 2.3 Can any one tell me in detail how to consume Sharepoint web services in SMP 2.3 so that i can use data in my jQuery Mobile Application?
    For example my web service is http://xxxxx:xx/___/Lists.asmx?op=GetListItems

    Hi Harshada,
    Any good reasons to integrate Share point Jquery mobile application with SMP ?
    because Share point web services can be consumed directly in the Jquery mobile applications.
    Please look at the below examples to achieve it.
    Sample Codes :
    Read List Items using Sharepoint Web Services and jQuery | Robert Kuzma on SharePoint,  HTML, CSS &amp;amp; JavaScript, …
    Pro-Grammar: Calling the SharePoint 2010 GetListItems web services with Jquery
    javascript - Getting list data from SharePoint 2010 site using Jquery - Stack Overflow
    -Virinchy

  • Cannot connect Service Manager with Orchestrator Web Service URL

    Dear TechNet User,
    i cannot connect my service manager console with my Orchestrator Webservice. i try to connect to "http://AMSCO01:81/Orchestrator.svc" ... the user i´ve choose is local admin on the orchestrator Machine.
    Thats the Logfile:
    Date: 07.10.2013 15:23:16
    Application: System Center Service Manager
    Application Version: 7.5.2905.0
    Severity: Error
    Message: Could not connect to the Orchestrator web service.
    System.Data.Services.Client.DataServiceQueryException: An error occurred while processing this request. ---> System.Data.Services.Client.DataServiceClientException: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <title>404 - File or directory not found.</title>
    <style type="text/css">
    <!--
    body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
    fieldset{padding:0 15px 10px 15px;}
    h1{font-size:2.4em;margin:0;color:#FFF;}
    h2{font-size:1.7em;margin:0;color:#CC0000;}
    h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;}
    #header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
    background-color:#555555;}
    #content{margin:0 0 0 2%;;}
    .content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;;}
    -->
    </style>
    </head>
    <body>
    <div id="header"><h1>Server Error</h1></div>
    <div id="content">
     <div class="content-container"><fieldset>
      <h2>404 - File or directory not found.</h2>
      <h3>The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.</h3>
     </fieldset></div>
    </div>
    </body>
    </html>
       at System.Data.Services.Client.QueryResult.Execute()
       at System.Data.Services.Client.DataServiceRequest.Execute[TElement](DataServiceContext context, QueryComponents queryComponents)
       --- End of inner exception stack trace ---
       at System.Data.Services.Client.DataServiceRequest.Execute[TElement](DataServiceContext context, QueryComponents queryComponents)
       at System.Data.Services.Client.DataServiceQuery`1.Execute()
       at System.Data.Services.Client.DataServiceQuery`1.GetEnumerator()
       at Microsoft.EnterpriseManagement.ServiceManager.Sdk.Connectors.OrchestratorRunbookConnector.GetRunbookFolders(OrchestratorContext scoContext, Folder parentFolder)
       at Microsoft.EnterpriseManagement.ServiceManager.UI.Administration.Connectors.Orchestrator.OrchestratorConnectorHelper.ValidateServerConnection(Boolean found)
    System.Data.Services.Client.DataServiceClientException: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <title>404 - File or directory not found.</title>
    <style type="text/css">
    <!--
    body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
    fieldset{padding:0 15px 10px 15px;}
    h1{font-size:2.4em;margin:0;color:#FFF;}
    h2{font-size:1.7em;margin:0;color:#CC0000;}
    h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;}
    #header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
    background-color:#555555;}
    #content{margin:0 0 0 2%;;}
    .content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;;}
    -->
    </style>
    </head>
    <body>
    <div id="header"><h1>Server Error</h1></div>
    <div id="content">
     <div class="content-container"><fieldset>
      <h2>404 - File or directory not found.</h2>
      <h3>The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.</h3>
     </fieldset></div>
    </div>
    </body>
    </html>
       at System.Data.Services.Client.QueryResult.Execute()
       at System.Data.Services.Client.DataServiceRequest.Execute[TElement](DataServiceContext context, QueryComponents queryComponents)
    any ideas? Thank you very much!

    Hi,
    I am unable to connect to
    http://hostname:81/Orchestrator2012/Orchestrator.svc/ in IE and am getting the same error while creating the connector.
    I can connect to orchestrator via http://hostname:81/ but it still gives me the same error when I create the connector (Cannot connect Service Manager with Orchestrator Web Service).
    anyone seen it before?

  • Mixing document & rpc style in one web service

    Hi all!
    Can two different styles of webservies (i.e. document & rpc) be contained in one web service?
    I looked around and only thing i found out was that WebLogic does not support mixing styles in one web service. I hope there is no limitation from Webservice specification nor any constraint by WS-I either. What about tomcat/jboss etc. ??
    Any help/clue/links are appreciated.
    Have a nice day!

    Thanks Eric for your valuable input.
    I created a Web Service Proxy in Jdev 10 and it did create all the Class that I need to Call the Web Service.
    When I wanted to Import these Classes into my Oracle 9iDS (Forms Builder) I started having Java version incompatibility issues such as Unsupported major.minor version 48.0 / Unsupported major.minor version 49.0 Import Errors.
    So I had to change the LIBRARY of the JDEV Project into J2SE 1.3.1_02 version and rebuild the Project and Redoply in order to IMPORT into Oracle Forms 9i (which I think FORMS 9i JAVA version is 1.3.1_02 an earlier version than JDEV 10 with is 1.5.0_06!!! NOT sure please confirm)
    By doing this I was able to Import most of the Class (but NOT all) except for ONE class that I tested the Web Service from Jdev "Service1SoapClient" and is working perfectly fine from JDEV calling Webservice and returning proper values, which Imports the following class:
    import oracle.webservices.transport.ClientTransport;
    import oracle.webservices.OracleStub;
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.rpc.Stub;
    I also had to Add to CLASSPATH the following Jar:
    ..webservices\lib\wsclient.jar;
    Still I was getting the "Unsupported major.minor version 48.0 " as below:
    Exception occurred: java.lang.UnsupportedClassVersionError: oracle/webservices/transport/ClientTransport (Unsupported major.minor version 48.0)
    Can you please tell me what is it that I am going Wrong? Can I resolve this issue?
    Kindly can you tell me what does Axis do? Where can I get it? Is it downloadable?
    Thanks for all the support.
    Regards,
    Baz

  • How To Consume SharePoint Web Services?

    I am having problems with integrating SharePoint web services into a BEA web application. I want to consume the SharePoint Web Services (for example, http://<sitename>/_vti_bin/Search.asmx). I've generated a service control out of the WSDL, but when I execute any method, it responds with
    <faultcode>soap:Server</faultcode>
    <faultstring>Server was unable to process request. --> Object reference not set to an instance of an object.</faultstring>
    I've found tons of examples for consuming these from .NET and C#, but not from BEA. It sounds like I need to instantiate the SharePoint object and pass in some Windows credentials. I am using BEA 8.1.6 and WSS 2.0 / SPS 2003. I watched the BEA online demo at http://dev2dev.bea.com/downloads/ExcelServer/workshop_vista.html but this is for much newer BEA and WSS/SPS versions. Can it be done with my versions and if so how?

    <html>
    <body>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <script type="text/javascript" src="jquery.SPServices-0.7.2.js"></script>
    <script type="text/javascript">
    var url = "[site Url]";
    $(document).ready(function() {
    $().SPServices({
    operation: "GetWebCollection",
    webURL: url,
    completefunc: function(xData, status) {
    $(xData.responseXML).find("Web").each(function() {
    // var weburlvar = $(this).attr("Url");
    //alert(weburlvar);
    $('#urlOptions').append($('<option></option>').val($(this).attr("Url")).html($(this).attr("Title")));
    alert(url);
    url = $(this).attr("Url");
    $().SPServices({
    operation: "GetWebCollection",
    webURL: url,
    completefunc: function(xData, status) {
    $(xData.responseXML).find("Web").each(function() {
    // var weburlvar = $(this).attr("Url");
    //alert(weburlvar);
    $('#urlOptions').append($('<option></option>').val($(this).attr("Url")).html($(this).attr("Title")));
    </script>
    <select id="urlOptions" onchange="window.open(this.options[this.selectedIndex].value,'_top')">
    <option value="">Select Site...</option>
    </select>
    </body>
    </html>
    Try to use above code in html file in IE browser which lists down all the subsites available in current site (not only the top level). You can make the code more cleaner by making it as a recursive function. Give the exact link for spservice reference. Replace
    [Site url] with your site url
    Thanks

Maybe you are looking for