Web Services Not Working because wwv_flow_collections view is empty

Hello,
I followed this example to try and get a web service running in my Application:
http://apex.oracle.com/i/doc/advnc_rest_web_eg_2.htm
When I run the page and enter the zip code 43221 they recommend with a radius of 5, I get no results. When debugging and throwing the query into SQL Dev, I have no records in my wwv_flow_collections view. Looking at the tables that comprise the view, wwv_flow_collections$ and wwv_flow_collection_members$, these two tables would join on c.id = m.collection_id alone, but there are additional in-line selects involving the DUAL table that make the query return 0 records and therefore the view is empty. I've never messed with these views/tables, are these auto-populated by APEX? Can they be updated? Right now I cannot get any web services to work because of this. Here is the from clause for the wwv_flow_collections view:
FROM
wwv_flow_collections$ c,
wwv_flow_collection_members$ m
WHERE
c.session_id =
SELECT
v('SESSION')
FROM
dual
AND c.security_group_id =
SELECT
wwv_flow.get_sgid
FROM
dual
AND c.id = m.collection_id
AND c.flow_id =
SELECT
nv('FLOW_ID')
FROM
dual
Can anyone help? Thanks in advance!
John

John,
I have been working this week to set up the exact same thing and got the same empty result set that you have. In this case I believe it has nothing to do with APEX. I downloaded soapUI 4.0.1 which tests web services and used the WSDL described in the APEX Webservices tutorial for http://www.ignyte.com/webservices/ignyte.whatsshowing.webservice/moviefunctions.asmx?wsdl to create the same sample requests. It also returns no results.
So, I decided to use a different public WSDL and try to get it working. Here are my steps taken below:
BACKGROUND:
- I am using APEX 4.0 on an 11gR2 database, with ACLS set up for the APEX schema this app is using.
- First off, the site I used I just found through google. It is a currency conversion rate webservice. It is explained here: http://www.webservicex.net/CurrencyConvertor.asmx
- The WSDL is found here: http://www.webservicex.net/CurrencyConvertor.asmx?WSDL
SETTING UP THE WEBSERVICE:
1. In a new APEX application I went to "*Shared Components*" -> "*Web Service References*" -> "*Create*" to create a new web service reference
2. Selected manual
3. Called the webservice CURRENCY_TEST
4. Set the URL to http://www.webservicex.net/CurrencyConvertor.asmx
5. Set the Action to http://www.webserviceX.NET/ConversionRate (Action can be found in the WSDL - showing a few lines below)
<pre class="jive-pre">
<wsdl:binding name="CurrencyConvertorSoap" type="tns:CurrencyConvertorSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="ConversionRate">
<soap:operation soapAction="*http://www.webserviceX.NET/ConversionRate*" style="document"/>
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
</pre>
6. WSDL explains that the version is *1.1* in this case. (However, this same WSDL has the same operation for 1.2 so it probably would work)
7. No Authentication
8. soapUI 4.0.1 gave me the soap request which in this case is the following:
<pre class="jive-pre">
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://www.webserviceX.NET/">
<soapenv:Header/>
<soapenv:Body>
<web:ConversionRate>
<web:FromCurrency>#FROM_CURRENCY#</web:FromCurrency>
<web:ToCurrency>#TO_CURRENCY#</web:ToCurrency>
</web:ConversionRate>
</soapenv:Body>
</soapenv:Envelope>
</pre>
9. Stored response in collection CURRENCY_COLLECTION
10. Saved my web service reference
11. Test the web service reference (you have to be on the web service references page and instead of the icon view of the report, use the list view. Click on the test icon to test the web service)
12. On the test page, change #FROM_CURRENCY# to USD (for US dollars) and #TO_CURRENCY# to EUR (Euros)
13. Click the test button and you should see a valid soap response with a currency rate within the ConversionRateResult tags
USING THE WEBSERVICE AND GETTING RESULTS:
1. Went back to the application and hit "*Create Page*" -> "*Form*" -> "*Form and Report on Web Service*"
2. Selected my CURRENCY_TEST web service reference
3. Next on the next page
4. For input parameters, left the defaults to create 2 inputs, From_Currency and To_Currency
5. Soap Style for this is Document (found in the WSDL as an attribute just after the soapAction attribute in the WSDL snippet above)
6. Message Format is Literal (Also found above in the wsdl:output for this operation under the use attribute)
7. XPATH is a bit complicated. In this case put */ConversionRateResponse* (I used the soapUI 4.0.1 to send the request and get back the soap response to see what the response tags would include and which path I'm going to)
8. Message Namespace is http://www.webserviceX.NET/ (which is also found in the response soap message - I'd really recommend a tool to test this outside of APEX)
9. For Parameter Names there is only one and it is ConversionRateResult (also found in the response soap message)
10. Finish and run the report.
OTHER GOTCHAS:
So I finally got this to work, but in my case I was querying a remedy webservice and the xml tags I get back are all xmlns:ns0 and all response tags prefaced with ns0:
In this case I had to after using the wizard go back and edit my query to change xmlns to xmlns:ns0 since the builder only assumes xmlns.
<pre class="jive-pre">
select extractValue(value(t),'/*/ns0:Assigned_Group','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Assigned_Group"
, extractValue(value(t),'/*/ns0:Assignee','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Assignee"
, extractValue(value(t),'/*/ns0:Resolution','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Resolution"
, extractValue(value(t),'/*/ns0:Status','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Status"
from wwv_flow_collections c,
table(xmlsequence(extract(c.xmltype001,'//ns0:HelpDesk_Query_ServiceResponse','xmlns:ns0="urn:HPD_IncidentInterface_WS"'))) t
where c.collection_name = 'INCIDENT_TEST'
</pre>
Good Luck!
Jonathon

Similar Messages

  • "no serializer is registered..." error with a web service not working

    I'm using JDeveloper 10.1.3
    EJB 3.0
    I'm having issues with the web service not working after I create a client for it. The web service works fine up until I generate the proxy on the other side.
    ERROR An error occurred for port: {http://buslogic/}MyWebService1SoapHttpPort: no serializer is registered for (class buslogic.runtime.....
    I saved the file before I added the proxy and the wsdl looks the same between the working one and the non working one. I can not pin point the when the change to the web service is occuring. It seemed to work once all the way up until I had a ADF page trying to retrieve data, another time it failed when the proxy was created.
    I can get the version that I saved to work immediately after the version that does not fails.
    Any help would be greatly appreciated,
    Dan

    I'm using JDeveloper 10.1.3
    EJB 3.0
    I'm having issues with the web service not working after I create a client for it. The web service works fine up until I generate the proxy on the other side.
    ERROR An error occurred for port: {http://buslogic/}MyWebService1SoapHttpPort: no serializer is registered for (class buslogic.runtime.....
    I saved the file before I added the proxy and the wsdl looks the same between the working one and the non working one. I can not pin point the when the change to the web service is occuring. It seemed to work once all the way up until I had a ADF page trying to retrieve data, another time it failed when the proxy was created.
    I can get the version that I saved to work immediately after the version that does not fails.
    Any help would be greatly appreciated,
    Dan

  • Web Services Not Working

    Hello Everyone!
    I have an HP Laserjet M1217nfw printer. Got everything working just fine, but when I try to get web services enabled (through the printer's web interface) I get the following error message when clicking on the "enable" button:
    "Connection Error. Check Internet Connection".
    I found several posts up here, and the fix seemed to entail changing the DNS server settings (in the printer) to Google's DNS numbers, 8.8.8.8 and 8.8.4.4. That did not work.
    I also tried to update the printer's firmware, however I get a message during the update to disable the printer's RFU (remote firmware update). I have found no way to do this, and the update fails when I attempt it.
    Sooooo......
    I'm  looking for anyone who either knows a fix for the web services error message.....or who, at the very least can tell me how to disable RFU on the printer so I can try updating the firmeware.
    Any help on this would be greatly appreciated.

    Hi WildNorth
    Here is a url on how to print the configuration report.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02217343&cc=us&dlc=en&lc=en&jumpid=reg_r1002_us...
    Let me know what it is showing for the firmware date please.
    The newest version is Version20130912.
    Printer on wireless or hardwired network?
    What operating system are you running?
    I will send you a private message with more information to try.
    In the forum beside your handle name just click on the
    envelope to view it.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Web service not working when called remotely

    Hi there!
    I built a simple web service to generate a sequence number to be cosumed by PDF forms.
    It works perfecly when I run PDFs on my machine, using localhost, etc.
    Whem deployed on the client's servers it does not work. The only difference is the client is running LiveCycle on Linux over their inhouse corporate network.
    When the web service is added to forms in LC Designer, the ws structure is built correctly and if called from a web browser the XML response is ok too.
    I've checked LiveCycle log file - there's nothing there, the ws is not even being called.
    Where should I look for error messages or other resources to aid me in identifying the problem?
    Thank you very much for any hints!
    Marcos

    Hi there!
    I built a simple web service to generate a sequence number to be cosumed by PDF forms.
    It works perfecly when I run PDFs on my machine, using localhost, etc.
    Whem deployed on the client's servers it does not work. The only difference is the client is running LiveCycle on Linux over their inhouse corporate network.
    When the web service is added to forms in LC Designer, the ws structure is built correctly and if called from a web browser the XML response is ok too.
    I've checked LiveCycle log file - there's nothing there, the ws is not even being called.
    Where should I look for error messages or other resources to aid me in identifying the problem?
    Thank you very much for any hints!
    Marcos

  • 7520 All in one web services not working

    I got notified of a new update for the 7520. When I tried to install it, the screen said it was successful but then said "updating....do not turn power off" and it freezes and the update never gets successfully installed and I have no web services. I tried reiinstalling the whole software package, restarted the printer multiple times and the router too and can't seem to find an answer.  Anyone know what to do next?

    bjg1,
    Welcome to the HP Forum.
    Assuming you can get to the point where you can get the software installed, you might be able to get Web Services back using the following workaround.
    Suggested Workaround:
    On the printer, Disable the web services -- that is, remove web services from the printer.
    This may then allow you to then "Enable Web Services".
    There is a consequence to this action:  Your previously selected ePrint custom address will no longer be valid and cannot be reused.  When you go back and log into your HP Connected account you may need to not only "add device" to re-add the printer to the device list of ePrint printers, you will have to select a new custom email address for that printer.
    Where / how is this done?
    Side Bar: The Disable Web services is usually done on the printer, although if the service is actually working, one can switch off EWS from EWS.  
    Disable EWS on the printer, wait a few seconds, and then Enable the service again.
    Switching off EWS does not "break" your HP Connected account, although it does put a crimp in your printer's ePrint setup.  You can still log into the HP Connected account where the printer and the ePrint account is managed.    After EWS is disabled / enabled, you must log into your HP Connected account.
    If you do not find your printer listed under the Devices tab, you can usually "add device" and add your printer right back into the list at this point.
    If you do find your printer, but it won't cooperate, it won't update, you cannot "do" anything with it, go ahead and remove it. 
    If you have to "remove the printer", then Log out of  HP Connected. 
    If you have to "remove the printer", then Walk around your house / office / back yard -- come back.
    Log into HP Connected and use "Add device" to add your printer.
    Update the ePrint email address to something new - add a number, think of something new and clever; it does not matter as long as the name is different.
    Click the Kudos Thumbs-Up!
    It is a nice way to say “Thank You" for the help.
    Although I strive to reflect HP's best practices, I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • Import Web Service not working

    In the past I have successfully created a lvlib, to get Information from our ERP system (Dynamics NAV) via web service. I have used the LabVIEW import wizard for web services. Now we have exported another page of Dynamics NAV as a web service and I want to write a LabVIEW-Tool for this. But with a valid URL I get always an error
    Validation failed. Possible Reasons are:
    1. The URL does not exist or the WSDL is bad
    2. Authentification is not OK
    3. Proxy information is not correct.
    I can communicate with a c# application. So, the reason must be in LabVIEW.
    I have checked the import wizard again with the URL of my first first lvlib and the wizard gives the same error, but my lvlib is working well.
    Regards
    Dirk

    Hello Dirk, 
    Which LabVIEW verison are you using? Depending on it I can propose you several solutions:
    Have you take a look at this link? LabVIEW 2010: http://digital.ni.com/public.nsf/websearch/54DA5F6466B622A5862577BB0048E221?OpenDocument
    I have this vi to fix your issue, but that was tested for LabVIEW 2010, you can try it with the version you are working with and keep me updated. I will send you a new file if needed. 
    Replace the attached VI file to have the fix. <LabVIEW 20xx>\vi.lib\Platform\WebService\Main Panel\Pages\Input WSDL\Main.vi
    I hope this will solve your problem. Keep me posted!
    Attachments:
    Main.vi ‏38 KB

  • CF Web Services Not Working

    We did a clean install of ColdFusion 8 and a new install of
    Windows Server 2003 and IIS 6 and then moved the current site to
    the new server. Since the move we have been unable to access any of
    the previously working CF webservices through either Flex or CF.
    The wsdls do display when entered into the browser
    Flex is returning the following:
    [RPC Fault faultString="HTTP request error"
    faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent
    type="ioError" bubbles=false cancelable=false eventPhase=2
    text="Error #2032:
    If I try to add the web service in the CF Administrator I
    get: Error creating web service. Please ensure that you have
    entered a correct Web Service name or URL.
    When running with the cfinvoke tag the following error is
    received:
    13:17:05.005 - Application Exception - in
    D:\cf_web_root\dev\dgreen\wstest\wstest.cfm : line 13
    coldfusion.jsp.CompilationFailedException: Errors reported
    by Java compiler:
    Found 1 system error:
    *** Semantic Error: The input file
    "C:/ColdFusion8/stubs/WS-1559093840/skidshop/invoices/common/cfcs/LOV.java"
    was not found. That file actually does exist
    Any suggestions would be appreciated

    Hi,
    Please check if there is a default proxy in your web.config. If so, try removing it and check.
    <system.net>
    <defaultProxy>
      <proxy usesystemdefault="True" proxyaddress=http://127.0.0.1:8733 bypassonlocal="True" />
    </defaultProxy>
    If you are trying to connect SQL database, you will need to explicitly add a firewall rule with your local IP address
    #Deploy a Secure ASP.NET MVC app with Membership, OAuth, and SQL Database to a Windows Azure Web Site
    http://azure.microsoft.com/en-us/documentation/articles/web-sites-dotnet-deploy-aspnet-mvc-app-membership-oauth-sql-database/
    Regards,
    Mekh.

  • One of the Web Service not working

    Hi All,
    I have created a AIF for Posting Goods Receipt for a Purchase Order.
    The form is using 2 web services: 1) for Getting the Purchase Order details, and 2) for posting the Goods Receipt for that PO.
    The form was working absolutely fine for the Customer, i.e. customer was able to fetch the PO details as well as Post the Goods Receipt for that PO.
    Then, based on the UAT comments from the customer, we did some minor changes in the function module correponding to the web service which fetches the PO details. We also did some script changes in the form.
    After the deploying the changes, the Web service corresponding to Post Goods Receipt has stopped working for the Customer, though the other web service(PO Get Details) is still working fine for them. When the Customer clicks the Button on which the Post Goods Receipt web service is called, they get no response at all.
    What is more surprising is that both the web services are still working fine for us(developers).
    Please help.

    Hi Chintan,
    One of the fields on the form was mapped to the SAP field which was of length 16 characters.
    If the user enters more than 16 charcters on the form....iTHe Web Service does nothing
    I restricted the length to 16 on the form and it started working again

  • Web service not working

    Hi all,
             I created a webservice for a function module.
    Note : already there was a group of function modules in the webservice. I have included recently developed function module in the same webservice.
    In soamanager, this function module is existed. but when i test that function module in soamanager, it is throwing an error  saying -
    CX_SY_CONVERSION_NO_DATE_TIME:XSLT exception.An error occurred when deserializing in the simple transformation program /1BCDWB/WSS9F3FEB5B8A0EC491810.Value 01-04-2009 is not a valid date in accord with the XML format for ABAP
    please guide me to solve this issue.
    thanks and regards,
    Murali Krishna T

    Are you passing a date to the web service? Check out the type of the corresponding field, usually in the SOAP messages you have to stick to [ISO 8601|http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#isoformats] for date and time formats. This means that your date should be of form yyyy-mm-dd (see also the schema definition for the [date|http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#date] type).
    Cheers, harald

  • App Insights for web application not working when deployed to Dev server

    App Insights is not sending telemetry data for ASP.NET MVC web *requests* (page views from the JS instrumentation are fine) when the app is deployed to the Dev or Test IIS servers.  On local IIS express it works perfectly fine.    I have
    no idea how to troubleshoot this problem.
    Bert Jackson

    - the AI.config file is both in the root of the site, and the /bin folder (which was confusing the other day).  Both are correct.
    - it looks like a local browser can go to https://dc.services.visualstudio.com (it results in a 403 since its just a GET to the root).  During this test, I found that this server did NOT have the Root trust certificate (Baltimore cybertrust), which
    would cause problems when using IE locally to browse the app; the javascript AI logging was not working, because it couldnt fetch the ai.0.js file).  I got the proper root certificate installed on the server, but request logging still not working.  I
    dont believe the firewall is a problem.
    - I've verified that all binaries are indeed deployed in to the bin folder on the server
    - web.config does have the AI http module; I've verified via logging that the ApplicationInsightsWebTracking is loaded.  However, I have custom Context/Telemetry initializers, and their Initialize() methods are *NOT* being called when deployed on the
    server.  I've tried both ways of registering the initializers; via code in the Application_Start() event and also in the ApplicationInsights.config file.
    I don't know how to troubleshoot any further, to figure out if AppInsights is actually *trying* to send telemetry out and failing, or if its not actually even trying.
    Bert Jackson

  • Asmx web service not calling using schedular

    I have created a asmx web service and using visual studio i deployed the web service on azure cloud service.When i open the service by url like http://xyz.cloudapp.net/service1.asmx?op=CreateSite it opened.But when i provide the same url to Azure scheduler
    the scheduler get executed but the service is not working.
    I am new in azure so can you please tell me in brief how can i configure Azure scheduler to execute my hosted web service.
    Thanks

    hi,
    Because your request method is 'get', so your history shown that the page (http://xyz.cloudapp.net/service1.asmx?op=CreateSite  ) content as your open the link on browser. you could add
    the script on your webservice code, like this:
    [WebMethod]
    [ScriptMethod(UseHttpGet = true)]
    public string Test()
    You could call the Uri as
    http://xyz.cloudapp.net/service1.asmx/CreateSite. Please see how to use get method on web service (http://stackoverflow.com/questions/618900/enable-asp-net-asmx-web-service-for-http-post-get-requests
    Hope this helps.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Lion Server DNS service not working for locally created zones. Caching working fine.

    OS Lion Server DNS service not working for local zones. Was fine under Snow leopard server but Lion server upgrade has severely broken my DNS and web sites. Zones look fine under Server Admin but keep getting "query failed (SERVFAIL) for xxxx at /SourceCache/bind9/bind9-42/bind9/bin/named/query.c:3921" in the logs. BTW - Server Admin cant seem to see the log file either.
    Surely someone actually tested that DNS still worked on Lion?

    I upgraded from Snow Leopard Server to Lion Server on day 01.  I hit the same issue where, after the upgrade, my Lion Server stopped serving names for my private local domain.
    I finally took a few minutes to figure out what was wrong.  After turning on debug logging and looking through the logs, I found my particular issue, now resolved.
    The issue I had was, when the domain initially was setup when I installed Snow Leopard Server, for some reason it created a zone just for the server (in my case, something like zone "s-01.mydomain.priv"), and a separate zone for all the other machines (zone "mydomain.priv", containing all the private IPs for my local domain).  I never messed with it because it worked, but generally I would have put all of them in the same zone.
    My zone "mydomain.priv" had a nameserver and mail exchanger entry for my server, s-01.mydomain.priv.  I could see this in the Server Admin app on the DNS bubble, Zones tab, mydomain.priv selected, and the General Info panel.  This was fine in Snow Leopard.  This was failing the zone load in the updated bind for Lion Server, though.  The issue was that the "mydomain.priv" zone was referencing the s-01.mydomain.priv server, which was not defined in the "mydomain.priv" zone but rather in the "s-01.mydomain.priv" zone.
    My fix:
    1. In Server Admin, add the server to the zone "mydomain.priv".  I put an A record (Add Machine) in the "mydomain.priv" zone for my server named s-01.mydomain.priv.
    2. shut down DNS on the OS X Lion Server (hit the Stop DNS button on Server Admin).
    3. edit /etc/named.conf by hand, removing the specialized zones that contianed just the server.  In this case, it would be the section titled 'zone "s-01.mydomain.priv"' and the section titled 'zone "3.10.1.10.in-addr.arpa"'.  Your in-addr.arpa zone name will change based on whatever your server IP address was.  My internal one happened to have s-01.mydomain.priv mapped to 10.1.10.3.
    4. Once the specialized zones for just the server were removed, I started the DNS up again.  Instead of serving four zones as it had in OS X Snow Leopard Server, it now servers two zones.  And, now, it is resolving my local machines for the mydomain.priv zone.
    YMMV.  I did note that it wasn't totally necessary to do step 3, but I never really understood the need for the specialized domain, and keeping it around would have a copy of data that would just confuse things.
    Hope that helps.  That's been the only hiccup I've noticed updating to OS X Lion Server thus far.

  • Cascading Dynamic Parameters Do Not Work In Crystal Viewer 2008?

    I have generated a report with Crystal Reports 2008 that uses a dynamic cascading parameter. I work in waste management and the report I create in Crystal is used as a "template" with the tonnages collected from all of our customers. Our less technically minded employees can then open this report with Crystal Reports Viewer 2008, use the drop down menus to select only the customer they need a report for and then export this to PDF for delivery.
    The report as designed works perfectly in Crystal Reports, but the parameter does not work in Crystal Viewer.
    Some of our customers have more than one physical location that we service. The cascading dynamic parameter in my report allows you to select the customer name, and then it only shows the locations linked to that customer, so the end user can select only the relevant location(s) for the report. The cascading parameter is dynamic and allows multiple selections, and is linked to a Saved Data formula. The report is saved with the data.
    When the report is opened in Viewer, one of two things happens. If the report is saved in Crystal Reports and a specific customer/location is selected, then ONLY those selected customer/locations are available in the Viewer. If ALL the customers/locations are selected in Crystal Reports and saved, then in the Viewer they are all available, but selecting one customer does NOT narrow down the locations (i.e. it does not "cascade") and instead ALL of the locations are available even if they do not apply to the customer.
    If I use a single dynamic parameter and select ALL of the customers (for example), then when this is opened in Crystal Viewer all of the customers are available from the parameters drop down and the report works fine. As soon as this is tried with a cascading parameter however, Crystal Viewer falls down.
    Does anyone know of a workaround to this or if there is something I am doing wrong?

    I am using the free Crystal Report 2008 Viewer along with designing reports with Crytal Reports ver 12.3. With a test file from SAP called "Interactive Parameters", the parameter feature works to refresh the report. The parameters that are supplied in the sample report work with Viewer. They show up under the parameter list in the parameter side panel in Viewer and are available to make record selections. When I add a parameter to the sample report in Crystal 2008 and then view the report in Viewer, my parameters are unavalable for record selection while the original parameters remain available. Futher, my parameters are displayed under a section called "Current Data Set" in the Parameter side panel, while the selectable parameters are displayed under the "Parameter" section in the parameter side panel. There must be a setting that is treating the parameters I create differently form the parameters created in the original sample report. Any help would be appreciated.

  • When I connect my ipod touch tomy computer it says that the device will not work because the Apple mobile device hasnt been activated?

    Why does a meesage pop up when I connect my iPod touch saying that the device will not work because the Apple mobile device hasn't been activated?          

    Refer to this article to restart AMDS:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/TS1567

  • Infopath systemuser() method is not working in infopath view @extrant site .

    We have a sharepoint webapplication with infopath views .We have controlled the switch view with authenticating login use id .It is working perfectly in intranet.
    When we are publishing the site to internet using public ip @ that time initially infopath forms were not opening so i have used Alternate access mapping and published the infopath forms in ip instead of server name .
    Now infopath forms are getting opened but system user() rule is not working and infopath edit forms are not working .Even list view web part with assigned to filtration is also not working . 
    I am stuck on the issue since Monday . Please suggest how to make it possible . it is very urgent.
    We want our customer to access using ad authentication.

    Jeeva,
    Did you create this form in InfoPath itself or you are modifying a list into InfoPath?
    The first screenshot shows you have selected Total "is not equal to" Jan+Feb….
    You can simply add Total field with “TextBox” and double click on it and select default value button.
    Once it will open up a pop up select “fx” button in value and insert all fields like, Jan, Feb…and then put a “+” sign in between
    This will auto populate value once you enter it into any of the month filed.
    Also it you have copied fields for several month in InfoPath it won’t work. You have to insert each field separately
    Let us know your results
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

Maybe you are looking for